/* Hero Section Styles */
.hero {
    position: relative;
    min-height: clamp(500px, 80vh, 700px);
    display: flex;
    align-items: center;
    justify-content: center;
   
    overflow: hidden;
    background: var(--color-bg-primary);
   
}

.hero .container {
    position: relative;
    z-index: 1;
    background-image: url('../images/hero-background.png');
    background-repeat: no-repeat;
    padding: var(--space-4xl) 0;
    background-size: cover;
    border-radius: 34px;
}

.hero__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero__title {
    font-size: var(--font-size-hero);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    margin-bottom: var(--space-lg);
    animation: fadeIn 0.8s ease-out;
    text-align: center;
}

.hero__subtitle {
    font-size: var(--font-size-body-lg);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-normal);
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    animation: fadeIn 1s ease-out 0.2s backwards;
    text-align: center;
}

.hero .btn--primary {
    animation: fadeIn 1.2s ease-out 0.4s backwards;
    padding: 1rem 2.5rem;
    font-size: var(--font-size-body-lg);
}

.contact-links {
    display: flex;
    gap: 16px;
}

.contact-links .footer__email img {
    background-color: var(--color-text-primary);
    border-radius: 50%;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .hero {
        min-height: clamp(450px, 70vh, 600px);
        padding: var(--space-3xl) 0;
    }
    
    .hero::before {
        width: 90%;
        height: 80%;
        filter: blur(60px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: clamp(400px, 60vh, 500px);
        padding: var(--space-2xl) 0;
    }
    
    .hero::before {
        width: 100%;
        height: 70%;
        filter: blur(50px);
        opacity: 0.5;
    }
    
    .hero__title {
        margin-bottom: var(--space-md);
    }
    
    .hero__subtitle {
        margin-bottom: var(--space-lg);
    }
    
    .hero .btn--primary {
        padding: 0.875rem 2rem;
        font-size: var(--font-size-body);
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }
    
    .hero__title br {
        display: none;
    }
}
