/* Hero Section Responsive Styles */

.hero-section {
    padding: var(--spacing-xxl) 0;
    /* Clearer vertical separation */
    min-height: 700px;
    /* Increased for more breathing room on desktop */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Give text slightly more space */
    gap: var(--spacing-xxl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text .eyebrow {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
    display: block;
}

/* Hero Text Column */
.hero-text {
    max-width: 550px;
    /* Slightly narrower for better readability */
}

.hero-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    /* Further reduced for a cleaner desktop look */
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
    font-weight: 700;
    /* Reduced from 800 */
}

.hero-description {
    font-size: clamp(1rem, 1.2vw, 1.0625rem);
    /* Reduced max from 1.125rem */
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    color: var(--text-light);
}

.hero-actions {
    display: flex;
    gap: var(--spacing-sm);
    /* Tighter button gap */
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

/* Make buttons feel more precise on desktop */
.hero-actions .button {
    padding: 12px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
}

.hero-tagline {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Image Column */
.hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Tablet (Portrait and Landscape) */
@media (max-width: 1024px) {
    .hero-section {
        min-height: 500px;
    }

    .hero-content {
        gap: var(--spacing-xl);
    }

    .hero-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }
}

/* Mobile (Landscape) */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: var(--spacing-xl) 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: var(--spacing-md);
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: var(--spacing-lg);
    }

    .hero-actions {
        justify-content: center;
        align-items: center;
        /* Center buttons horizontally */
        flex-direction: column;
        /* Stack buttons vertically on mobile */
        gap: var(--spacing-sm);
    }

    .hero-actions .button {
        width: 100%;
        /* Full width buttons on mobile */
        max-width: 350px;
        /* But not too wide */
        text-align: center;
    }

    .hero-tagline {
        font-size: 0.875rem;
    }

    .hero-image {
        order: -1;
        /* Move image above text on mobile */
        max-width: 100%;
        margin: 0 auto var(--spacing-lg);
    }

    .hero-image img {
        max-height: 300px;
        object-fit: cover;
    }
}

/* Small Mobile (Portrait) */
@media (max-width: 480px) {
    .hero-section {
        padding: var(--spacing-lg) 0;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .hero-actions .button {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }

    .hero-image img {
        max-height: 250px;
    }
}

/* Very Small Screens */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 0.875rem;
    }

    .hero-actions .button {
        font-size: 0.875rem;
        padding: 10px 20px;
    }
}