/* Mobile First Responsive Design */

/* Extra Small Devices (Portrait Phones) */
@media (max-width: 575.98px) {
    :root {
        --font-size-5xl: 2.5rem;
        --font-size-4xl: 2rem;
        --font-size-3xl: 1.5rem;
        --spacing-4xl: 3rem;
        --spacing-5xl: 4rem;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--secondary-dark);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: var(--spacing-2xl);
        gap: var(--spacing-xl);
        transition: left var(--transition-normal);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .reservation-btn {
        margin-left: 0;
        margin-top: var(--spacing-lg);
    }
    
    /* Hero */
    .hero {
        min-height: 100vh;
        height: auto;
        max-height: none;
        padding: clamp(40px, 8vh, 60px) 20px clamp(30px, 6vh, 40px);
    }

    .hero-title {
        font-size: clamp(1.8rem, min(6vw, 6vh), 2.8rem) !important;
        line-height: 1.2;
        margin-bottom: clamp(0.8rem, 2vh, 1.2rem) !important;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, min(4vw, 3vh), 1.1rem) !important;
        margin-bottom: clamp(1rem, 3vh, 1.5rem) !important;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 25px;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .floating-element {
        display: none;
    }

    .scroll-indicator {
        right: 20px;
        bottom: 20px;
    }
    
    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
        margin: 0 auto;
    }
    
    .about-img {
        height: 300px;
    }
    
    .feature-item {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    
    .feature-icon {
        margin: 0 auto var(--spacing-md);
    }
    
    /* Menu Mobile */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .menu-item {
        margin: 0 var(--spacing-sm);
    }
    
    .menu-image {
        height: 200px;
    }
    
    /* Locations Mobile */
    .locations-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .location-card {
        margin: 0 var(--spacing-sm);
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
        margin: 0 auto;
    }
    
    /* Contact Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .contact-form {
        order: 1;
    }
    
    .contact-info {
        order: 2;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
}


/* Small Devices (Landscape Phones) */
@media (min-width: 576px) and (max-width: 767.98px) {
    /* Hero adjustments for small devices */
    .hero {
        height: 100vh;
        min-height: 500px;
        max-height: none;
        padding: 70px 30px 50px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    .btn {
        width: auto;
        min-width: 160px;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }
    
    /* Menu */
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
}

/* Medium Devices (Tablets) */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* Hero */
    .hero {
        height: 100vh;
        min-height: 600px;
        max-height: none;
        padding: 80px 40px 60px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 600px;
    }
    
    .hero-stats {
        gap: 60px;
    }
    
    /* About Section */
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-2xl);
    }
    
    .about-img {
        height: 400px;
    }
    
    .feature-item {
        text-align: left;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .feature-icon {
        margin: 0;
    }
    
    /* Menu Section */
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    .menu-image {
        height: 220px;
    }
    
    /* Locations Section */
    .locations-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
        max-width: 800px;
        margin: var(--spacing-2xl) auto 0;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-2xl);
    }
    
    /* Contact Section - Tablet Grid */
    .contact-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: var(--spacing-3xl);
        align-items: start;
        margin-top: var(--spacing-2xl);
    }
    
    /* Footer */
    .footer-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: var(--spacing-2xl);
        text-align: left;
    }
    
    .footer-left {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-right {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

/* Large Devices (Desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    /* Hero Desktop */
    .hero {
        height: 100vh;
        min-height: 600px;
        max-height: none;
        padding: 90px var(--spacing-2xl) 70px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content-wrapper {
        max-width: 1000px;
        width: 100%;
        padding: 0 var(--spacing-xl);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 4.2rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        color: #ffffff;
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(0, 0, 0, 0.6),
            0 0 40px rgba(0, 0, 0, 0.4);
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        max-width: 750px;
        margin: 0 auto 2.5rem;
    }
    
    .hero-buttons {
        gap: 1.5rem;
        margin-bottom: 3rem;
        justify-content: center;
    }
    
    .btn {
        font-size: 1rem;
        padding: 14px 28px;
        min-width: 180px;
    }
    
    .hero-stats {
        gap: 3rem;
        justify-content: center;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    /* About Section Desktop */
    .about-content {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--spacing-4xl);
        align-items: center;
        text-align: left;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .about-text {
        max-width: none;
        padding-left: var(--spacing-2xl);
    }
    
    .about-description {
        font-size: 1.2rem;
        margin-bottom: var(--spacing-2xl);
        max-width: 100%;
    }
    
    .about-img {
        height: 480px;
    }
    
    .feature-item {
        gap: var(--spacing-lg);
        padding: var(--spacing-md);
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
    }
    
    .feature-content h3 {
        font-size: 1.3rem;
    }
    
    .feature-content p {
        font-size: 1rem;
    }
    
    /* Menu Section Desktop */
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-2xl);
    }
    
    .menu-image {
        height: 280px;
    }
    
    .menu-content {
        padding: var(--spacing-xl);
    }
    
    .menu-title {
        font-size: 1.3rem;
    }
    
    .menu-description {
        font-size: 1rem;
    }
    
    .menu-price {
        font-size: 1.25rem;
    }
    
    /* Locations Section Desktop */
    .locations-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-3xl);
        max-width: 1000px;
        margin: var(--spacing-3xl) auto 0;
    }
    
    /* Contact Section Desktop - Enhanced Grid Layout */
    .contact-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: var(--spacing-4xl);
        align-items: start;
        max-width: 1200px;
        margin: var(--spacing-3xl) auto 0;
    }
    
    .contact-info {
        padding-right: var(--spacing-lg);
    }
    
    .reservation-form-container {
        padding-left: var(--spacing-lg);
    }
    
    .contact-description {
        font-size: 1.2rem;
    }
    
    .contact-icon {
        width: 55px;
        height: 55px;
    }
    
    /* Footer Desktop - All Sections in One Row */
    .footer-content {
        display: grid !important;
        grid-template-columns: 2fr 1fr 1fr 1fr !important;
        gap: var(--spacing-3xl);
        text-align: left;
        max-width: 1200px;
        margin: 0 auto var(--spacing-2xl);
        align-items: start;
    }
    
    .footer-brand {
        margin-bottom: var(--spacing-xl);
    }
    
    .footer-section {
        align-self: start;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Extra Large Devices */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    /* Hero full desktop experience */
    .hero {
        height: 100vh;
        min-height: 650px;
        max-height: none;
        padding: 100px var(--spacing-4xl) 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content-wrapper {
        max-width: 1200px;
        width: 100%;
        padding: 0 var(--spacing-2xl);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 12px 24px;
        margin-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 5rem;
        line-height: 1.1;
        margin-bottom: 2rem;
        letter-spacing: -0.02em;
        color: #ffffff;
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(0, 0, 0, 0.6),
            0 0 40px rgba(0, 0, 0, 0.4);
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        max-width: 900px;
        line-height: 1.6;
        margin: 0 auto 3rem;
    }
    
    .hero-buttons {
        gap: 2rem;
        margin-bottom: 4rem;
        justify-content: center;
    }
    
    .btn {
        font-size: 1.1rem;
        padding: 16px 32px;
        min-width: 200px;
    }
    
    .hero-stats {
        gap: 4rem;
        margin-top: 3rem;
        justify-content: center;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stat-number {
        font-size: 3rem;
        font-weight: 700;
    }
    
    .stat-label {
        font-size: 1rem;
        margin-top: 0.5rem;
    }
    
    .floating-element {
        display: block;
    }
    
    .particles {
        display: block;
    }
}

/* Ultra Wide Screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1500px;
    }
    
    .hero-title {
        font-size: 5.5rem;
        letter-spacing: -0.03em;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        max-width: 900px;
    }
    
    .hero-stats {
        gap: 6rem;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
    
    /* Locations enhanced for ultra-wide */
    .locations-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-4xl);
        max-width: 1200px;
        margin: var(--spacing-4xl) auto 0;
    }
    
    /* Contact Section Enhanced for Large Screens */
    .contact-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: var(--spacing-5xl);
        align-items: start;
        max-width: 1400px;
        margin: var(--spacing-4xl) auto 0;
    }
    
    .contact-info {
        padding-right: var(--spacing-2xl);
    }
    
    .reservation-form-container {
        padding-left: var(--spacing-2xl);
        max-width: 600px;
    }
    
    /* About Section Desktop Enhancement */
    .about {
        padding: var(--spacing-5xl) 0 var(--spacing-5xl);
    }
    
    .about-content {
        grid-template-columns: 1fr 1.4fr;
        gap: var(--spacing-6xl);
        align-items: center;
        max-width: 1500px;
        margin: 0 auto;
    }
    
    .about-text {
        padding-left: var(--spacing-3xl);
        max-width: none;
    }
    
    .about-description {
        font-size: 1.4rem;
        line-height: 1.8;
        margin-bottom: var(--spacing-4xl);
        max-width: 100%;
    }
    
    .about-features {
        gap: var(--spacing-2xl);
    }
    
    .feature-item {
        gap: var(--spacing-xl);
        padding: var(--spacing-lg);
        border-radius: var(--border-radius-lg);
        transition: all 0.3s ease;
    }
    
    .feature-item:hover {
        background: rgba(212, 175, 55, 0.05);
        transform: translateX(10px);
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .feature-content h3 {
        font-size: 1.4rem;
        margin-bottom: var(--spacing-md);
    }
    
    .feature-content p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .about-img {
        height: 600px;
        border-radius: var(--border-radius-xl);
    }
    
    /* Menu Section Desktop Enhancement */
    .menu-preview {
        padding: var(--spacing-5xl) 0;
    }
    
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-3xl);
        margin-top: var(--spacing-4xl);
    }
    
    .menu-item {
        transition: all 0.4s ease;
        border-radius: var(--border-radius-xl);
    }
    
    .menu-item:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .menu-image {
        height: 300px;
        border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    }
    
    .menu-content {
        padding: var(--spacing-2xl);
    }
    
    .menu-title {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-md);
    }
    
    .menu-description {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: var(--spacing-xl);
    }
    
    .menu-price {
        font-size: 1.4rem;
        font-weight: 700;
    }
    
    /* Locations Section Desktop Enhancement */
    .locations {
        padding: var(--spacing-5xl) 0;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-4xl);
        margin-top: var(--spacing-4xl);
    }
    
    .location-card {
        border-radius: var(--border-radius-xl);
        overflow: hidden;
        transition: all 0.4s ease;
    }
    
    .location-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }
    
    /* Contact Section Desktop Enhancement */
    .contact {
        padding: var(--spacing-5xl) 0;
    }
    
    .contact-content {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--spacing-5xl);
        align-items: start;
    }
    
    .contact-description {
        font-size: 1.3rem;
        line-height: 1.8;
        margin-bottom: var(--spacing-3xl);
    }
    
    .contact-method {
        gap: var(--spacing-xl);
        padding: var(--spacing-lg);
        border-radius: var(--border-radius-lg);
        transition: all 0.3s ease;
    }
    
    .contact-method:hover {
        background: rgba(212, 175, 55, 0.05);
        transform: translateX(10px);
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .contact-details h3 {
        font-size: 1.3rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .contact-details p {
        font-size: 1.1rem;
    }
    
    .reservation-form-container {
        padding: var(--spacing-3xl);
        border-radius: var(--border-radius-xl);
    }
    
    .form-title {
        font-size: 1.8rem;
        margin-bottom: var(--spacing-3xl);
    }
    
    /* Footer Desktop Enhancement - All Sections in One Row */
    .footer {
        padding: var(--spacing-5xl) 0 var(--spacing-2xl);
    }
    
    .footer-content {
        display: grid !important;
        grid-template-columns: 2.5fr 1fr 1fr 1fr !important;
        gap: var(--spacing-4xl);
        text-align: left;
        max-width: 1400px;
        margin: 0 auto var(--spacing-2xl);
        align-items: start;
    }
    
    .footer-title {
        font-size: 2.5rem;
        margin-bottom: var(--spacing-xl);
    }
    
    .footer-subtitle {
        font-size: 1.3rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .footer-description {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: var(--spacing-xl);
    }
    
    /* Section Headers Desktop Enhancement */
    .section-header {
        margin-bottom: var(--spacing-4xl);
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
        margin-bottom: var(--spacing-lg);
    }
    
    .section-title {
        font-size: 3.5rem;
        line-height: 1.2;
        letter-spacing: -0.02em;
    }
}

/* Bridge fix for 1230px+ screens - ensure 2 columns for about section */
@media (min-width: 1200px) and (max-width: 1399px) {
    /* About Section - Better width utilization */
    .about-content {
        display: grid !important;
        grid-template-columns: 1fr 1.3fr !important;
        gap: var(--spacing-5xl) !important;
        max-width: 1300px !important;
        margin: 0 auto !important;
        align-items: center !important;
    }
    
    .about-text {
        padding-left: var(--spacing-2xl);
        max-width: none;
    }
    
    .about-description {
        font-size: 1.3rem;
        line-height: 1.7;
        max-width: 100%;
    }
    
    /* Footer fix */
    .footer-content {
        display: grid !important;
        grid-template-columns: 2.2fr 1fr 1fr 1fr !important;
        gap: var(--spacing-3xl) !important;
        text-align: left !important;
        max-width: 1300px !important;
        margin: 0 auto var(--spacing-2xl) !important;
        align-items: start !important;
    }
}

/* Global rule: Any screen 1230px+ should have 2-column about section */
@media (min-width: 1230px) {
    .about-content {
        display: grid !important;
        grid-template-columns: 1fr 1.2fr !important;
        align-items: center !important;
    }
}

/* Very short screens - ultra aggressive scaling */
@media (max-height: 400px) {
    .hero {
        height: calc(100vh - var(--navbar-height));
        min-height: calc(100vh - var(--navbar-height));
        max-height: calc(100vh - var(--navbar-height));
        padding: clamp(4px, 1vh, 12px) var(--spacing-md) clamp(4px, 1vh, 12px);
    }
    
    .hero-title {
        font-size: clamp(0.8rem, 3vh, 1.8rem) !important;
        margin-bottom: clamp(0.1rem, 0.5vh, 0.4rem) !important;
        line-height: 0.85 !important;
    }
    
    .hero-subtitle {
        font-size: clamp(0.6rem, 1.2vh, 0.8rem) !important;
        margin-bottom: clamp(0.2rem, 0.6vh, 0.6rem) !important;
        line-height: 1.1 !important;
    }
    
    .hero-badge {
        padding: clamp(0.05rem, 0.3vh, 0.2rem) clamp(0.3rem, 0.5vh, 0.4rem) !important;
        margin-bottom: clamp(0.1rem, 0.4vh, 0.4rem) !important;
        font-size: clamp(0.4rem, 0.6vh, 0.6rem) !important;
    }
    
    .badge-text {
        font-size: clamp(0.4rem, 0.6vh, 0.6rem) !important;
    }
    
    .badge-star {
        font-size: clamp(0.5rem, 0.8vh, 0.7rem) !important;
    }
    
    .hero-content {
        gap: clamp(0.1rem, 0.3vh, 0.4rem) !important;
        padding: clamp(0.1rem, 0.3vh, 0.3rem) 0 !important;
    }
    
    .cta-buttons {
        gap: clamp(0.3rem, 0.5vh, 0.5rem) !important;
        margin-bottom: clamp(0.3rem, 0.6vh, 0.6rem) !important;
        flex-direction: row !important;
    }
    
    .btn-modern {
        padding: clamp(0.2rem, 0.5vh, 0.3rem) clamp(0.4rem, 0.8vh, 0.6rem) !important;
        font-size: clamp(0.5rem, 0.7vh, 0.6rem) !important;
        min-width: clamp(60px, 12vh, 100px) !important;
    }
    
    .hero-stats {
        margin-top: clamp(0.3rem, 0.6vh, 0.6rem) !important;
        gap: clamp(0.3rem, 0.8vh, 0.6rem) !important;
    }
    
    .stat-number {
        font-size: clamp(0.6rem, 1.2vh, 0.9rem) !important;
    }
    
    .stat-label {
        font-size: clamp(0.3rem, 0.4vh, 0.5rem) !important;
    }
}

/* Height-based responsive adjustments - Extended range for better coverage */
@media (max-height: 650px) {
    .hero {
        height: calc(100vh - var(--navbar-height));
        min-height: calc(100vh - var(--navbar-height));
        max-height: calc(100vh - var(--navbar-height));
        padding: clamp(8px, 2vh, 20px) var(--spacing-lg) clamp(8px, 2vh, 20px);
    }
    
    .hero-title {
        font-size: clamp(1rem, 4vh, 2.5rem) !important;
        margin-bottom: clamp(0.2rem, 1vh, 0.8rem) !important;
        line-height: 0.9 !important;
    }
    
    .hero-subtitle {
        font-size: clamp(0.7rem, 1.5vh, 1rem) !important;
        margin-bottom: clamp(0.3rem, 1vh, 1rem) !important;
        line-height: 1.2 !important;
    }
    
    .hero-badge {
        padding: clamp(0.1rem, 0.5vh, 0.3rem) clamp(0.4rem, 0.8vh, 0.6rem) !important;
        margin-bottom: clamp(0.2rem, 0.8vh, 0.8rem) !important;
    }
    
    .badge-text {
        font-size: clamp(0.5rem, 0.8vh, 0.7rem) !important;
    }
    
    .badge-star {
        font-size: clamp(0.6rem, 1vh, 0.9rem) !important;
    }
    
    .hero-content {
        gap: clamp(0.2rem, 0.6vh, 0.8rem) !important;
        padding: clamp(0.2rem, 0.5vh, 0.5rem) 0 !important;
    }
    
    .cta-buttons {
        gap: clamp(0.4rem, 0.8vh, 0.8rem) !important;
        margin-bottom: clamp(0.5rem, 1vh, 1rem) !important;
    }
    
    .btn-modern {
        padding: clamp(0.3rem, 0.8vh, 0.5rem) clamp(0.6rem, 1.2vh, 1rem) !important;
        font-size: clamp(0.6rem, 0.9vh, 0.75rem) !important;
        min-width: clamp(80px, 15vh, 150px) !important;
    }
    
    .hero-stats {
        margin-top: clamp(0.5rem, 1vh, 1rem) !important;
        gap: clamp(0.5rem, 1.2vh, 1rem) !important;
    }
    
    .stat-number {
        font-size: clamp(0.8rem, 1.8vh, 1.2rem) !important;
    }
    
    .stat-label {
        font-size: clamp(0.4rem, 0.6vh, 0.6rem) !important;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Medium height screens */
@media (min-height: 651px) and (max-height: 800px) {
    .hero {
        height: calc(100vh - var(--navbar-height));
        min-height: calc(100vh - var(--navbar-height));
        max-height: calc(100vh - var(--navbar-height));
    }
    
    .hero-title {
        font-size: clamp(1.2rem, 4.5vh, 3rem) !important;
        line-height: 0.95 !important;
    }
    
    .hero-subtitle {
        font-size: clamp(0.8rem, 1.8vh, 1.2rem) !important;
        line-height: 1.2 !important;
    }
}

/* Tall screens */
@media (min-height: 801px) and (max-height: 1200px) {
    .hero {
        height: 100vh;
        min-height: 700px;
        max-height: 1000px;
    }
}

/* Very tall screens */
@media (min-height: 1201px) {
    .hero {
        height: 80vh;
        min-height: 800px;
        max-height: 1200px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .hero {
        height: auto;
        min-height: 100vh;
        max-height: none;
        padding: 50px 15px 30px;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn {
        font-size: 0.85rem;
        padding: 10px 18px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .particles {
        display: none;
    }
    
    /* About Section */
    .about-img {
        height: 250px;
    }
    
    .feature-item {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    
    .feature-icon {
        margin: 0 auto var(--spacing-sm);
    }
    
    /* Menu Section */
    .menu-image {
        height: 180px;
    }
    
    .menu-content {
        padding: var(--spacing-lg);
    }
    
    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .reservation-form-container {
        padding: var(--spacing-lg);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 500px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 40px 20px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .hero-stats {
        margin-top: 15px;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .floating-element {
        display: none;
    }
    
    .scroll-indicator-modern {
        bottom: 10px;
        scale: 0.8;
    }
}

/* Improved tablet landscape */
@media (orientation: landscape) and (min-width: 768px) and (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-3xl);
    }
    
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
}
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
        margin-bottom: var(--spacing-lg);
        text-shadow: 
            2px 2px 6px rgba(0, 0, 0, 0.9),
            0 0 15px rgba(0, 0, 0, 0.8);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-xl);
        padding: 0 var(--spacing-sm);
        text-shadow: 
            1px 1px 6px rgba(0, 0, 0, 0.9),
            0 0 12px rgba(0, 0, 0, 0.8);
    }
    
    /* About */
    .about {
        padding: var(--spacing-3xl) 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .about-image {
        order: -1;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
        align-items: center;
    }
    
    .feature-icon {
        margin: 0;
    }
    
    .image-container {
        height: 300px;
    }
    
    .about-img {
        height: 100%;
    }
    
    /* Menu */
    .menu-preview {
        padding: var(--spacing-3xl) 0;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    /* Locations */
    .locations {
        padding: var(--spacing-3xl) 0;
    }
    
    .locations-grid {
        gap: var(--spacing-lg);
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .location-actions .btn {
        width: 100%;
    }
    
    /* Contact */
    .contact {
        padding: var(--spacing-3xl) 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .reservation-form-container {
        padding: var(--spacing-lg);
    }
    
    /* Footer */
    .footer {
        padding: var(--spacing-3xl) 0 var(--spacing-xl);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .social-links {
        justify-content: center;
    }


/* Ultra Small Devices (Very Small Phones) */
@media (max-width: 360px) {
    :root {
        --font-size-5xl: 2rem;
        --font-size-4xl: 1.75rem;
        --font-size-3xl: 1.25rem;
        --spacing-2xl: 2rem;
        --spacing-3xl: 2.5rem;
        --spacing-4xl: 3rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
        padding: 0 var(--spacing-sm);
    }
    
    .btn-large {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: var(--font-size-sm);
        min-height: 44px;
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .menu-title {
        font-size: var(--font-size-lg);
    }
    
    .location-name {
        font-size: var(--font-size-xl);
    }
}

/* Small Devices (Landscape Phones) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--secondary-dark);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: var(--spacing-2xl);
        gap: var(--spacing-xl);
        transition: left var(--transition-normal);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-cta {
        gap: var(--spacing-md);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Medium Devices (Tablets) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--secondary-dark);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: var(--spacing-2xl);
        gap: var(--spacing-xl);
        transition: left var(--transition-normal);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .about-content {
        gap: var(--spacing-2xl);
    }
    
    .feature-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
    
    .feature-icon {
        margin: 0;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
    
    .footer-contact p,
    .footer-hours p {
        justify-content: flex-start;
    }
    
    .hero-scroll {
        bottom: var(--spacing-2xl);
    }
    
    .hero-content {
        padding: var(--spacing-3xl) var(--spacing-lg) 0;
        margin-top: var(--spacing-xl);
        max-width: 100%;
    }
    
    .hero-glass-card {
        grid-template-columns: 160px 1fr;
        gap: var(--spacing-xl);
        padding: var(--spacing-2xl);
    }
    
    .chef-image {
        width: 140px;
        height: 140px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4.5rem);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-xl);
    }
}

/* Large Devices (Desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .feature-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
    
    .feature-icon {
        margin: 0;
    }
    
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        text-align: left;
    }
    
    .footer-contact p,
    .footer-hours p {
        justify-content: flex-start;
    }
}

/* Extra Large Devices */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .feature-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
    
    .feature-icon {
        margin: 0;
    }
    
    .footer-content {
        text-align: left;
    }
    
    .footer-contact p,
    .footer-hours p {
        justify-content: flex-start;
    }
}

/* Ultra Wide Screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1600px;
    }
    
    .hero {
        padding: 120px var(--spacing-5xl) 100px;
        height: 100vh;
        min-height: 700px;
        max-height: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content-wrapper {
        max-width: 1400px;
        width: 100%;
        padding: 0 var(--spacing-3xl);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 5.5rem;
        letter-spacing: -0.025em;
        margin-bottom: 2.5rem;
        color: #ffffff;
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(0, 0, 0, 0.6),
            0 0 40px rgba(0, 0, 0, 0.4);
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        max-width: 1000px;
        line-height: 1.7;
        margin: 0 auto 3.5rem;
    }
    
    .hero-buttons {
        gap: 2.5rem;
        margin-bottom: 5rem;
        justify-content: center;
    }
    
    .btn {
        font-size: 1.2rem;
        padding: 18px 36px;
        min-width: 220px;
    }
    
    .hero-stats {
        gap: 5rem;
        margin-top: 4rem;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 600px) {
    .hero {
        height: 100vh;
        min-height: 400px;
        max-height: none;
        padding: 40px var(--spacing-lg) 30px;
    }
    
    .hero-content-wrapper {
        padding: 0 var(--spacing-md);
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3.5rem) !important;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-buttons {
        gap: var(--spacing-md);
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: var(--spacing-lg);
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-height: 40px;
        width: auto;
        max-width: none;
    }
    
    .hero-stats {
        gap: 2rem;
        margin-top: var(--spacing-md);
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}
    
    .hero-content {
        padding: var(--spacing-xl) var(--spacing-lg) 0;
        margin-top: var(--spacing-md);
    }

    
/* Very Wide Screens */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: var(--font-size-2xl);
    }
}

/* Short Screens */
@media (max-height: 500px) {
    .hero {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-md);
    }
    
    .hero-cta {
        gap: var(--spacing-sm);
    }
    
    .btn-large {
        padding: var(--spacing-sm) var(--spacing-md);
        min-height: 40px;
    }
    
    .hero-content {
        padding: var(--spacing-lg) var(--spacing-lg) 0;
        margin-top: var(--spacing-sm);
    }
    
    .hero-glass-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
        padding: var(--spacing-lg);
    }
    
    .chef-image {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .hero-video,
    .loading-screen,
    .modal,
    .social-links,
    .btn {
        display: none !important;
    }
    
    .hero {
        height: auto;
        padding: var(--spacing-lg) 0;
        background: var(--accent-white) !important;
        color: var(--text-primary) !important;
    }
    
    .hero-title,
    .hero-subtitle {
        color: var(--text-primary) !important;
    }
    
    .section {
        page-break-inside: avoid;
        padding: var(--spacing-lg) 0;
    }
    
    .locations,
    .footer {
        background: var(--accent-white) !important;
        color: var(--text-primary) !important;
    }
    
    .location-card {
        background: var(--accent-white) !important;
        border: 1px solid var(--border-light) !important;
        box-shadow: none !important;
    }
    
    .location-name,
    .footer-title,
    .footer-subtitle {
        color: var(--text-primary) !important;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-background::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    }
}

/* Accessibility - High Contrast */
@media (prefers-contrast: high) {
    :root {
        --primary-gold: #ffff00;
        --primary-gold-light: #ffff99;
        --primary-gold-dark: #cccc00;
        --text-primary: #000000;
        --text-secondary: #000000;
        --text-light: #333333;
        --border-light: #000000;
        --accent-white: #ffffff;
        --accent-cream: #ffffff;
        --secondary-dark: #000000;
        --secondary-light: #333333;
    }
    
    .btn {
        border-width: 3px;
    }
    
    .nav-link::after {
        height: 3px;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-width: 3px;
        box-shadow: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }
    
    .hero {
        background: linear-gradient(
            135deg,
            var(--secondary-dark) 0%,
            var(--secondary-light) 100%
        );
    }
    
    .scroll-arrow {
        animation: none;
    }
    
    .hamburger .bar {
        transition: none;
    }
    
    .nav-menu {
        transition: none;
    }
    
    .modal {
        transition: none;
    }
    
    .modal-content {
        transition: none;
        transform: scale(1);
    }
    
    .btn::before {
        display: none;
    }
    
    .hover-lift:hover,
    .hover-scale:hover,
    .hover-rotate:hover {
        transform: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .hero-overlay {
        background: linear-gradient(
            45deg,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.8) 100%
        );
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .nav-link {
        padding: var(--spacing-md);
        margin: var(--spacing-sm) 0;
    }
    
    .location-actions .btn {
        min-height: 48px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .social-link {
        width: 48px;
        height: 48px;
    }
    
    /* Remove hover effects on touch devices */
    .hover-lift:hover,
    .hover-scale:hover,
    .hover-rotate:hover,
    .hover-glow:hover {
        transform: none;
        box-shadow: var(--shadow-md);
    }
    
    .menu-item:hover,
    .location-card:hover {
        transform: none;
        box-shadow: var(--shadow-md);
    }
    
    .about-img {
        transform: none !important;
    }
    
    .image-overlay {
        opacity: 1;
    }
    
    .play-button {
        transform: scale(1);
    }
}

/* Keyboard Navigation */
@media (hover: hover) and (pointer: fine) {
    .nav-link:focus,
    .btn:focus,
    .social-link:focus {
        outline: 2px solid var(--primary-gold);
        outline-offset: 2px;
    }
    
    .dropdown:focus-within .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Custom Scrollbar for Different Screen Sizes */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 4px;
    }
    
    ::-webkit-scrollbar-thumb {
        border-radius: 2px;
    }
}

/* Specific Breakpoints for Menu Grid */
@media (min-width: 576px) and (max-width: 767px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
}

@media (min-width: 992px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xl);
    }
}

/* Container Queries (Future Enhancement) */
@supports (container-type: inline-size) {
    .menu-container {
        container-type: inline-size;
    }
    
    @container (max-width: 600px) {
        .menu-grid {
            grid-template-columns: 1fr;
        }
    }
    
    @container (min-width: 601px) and (max-width: 900px) {
        .menu-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @container (min-width: 901px) {
        .menu-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
}

/* ================================
   HEIGHT-BASED RESPONSIVE DESIGN
   ================================ */

/* Very Short Screens (Netbooks, Small Laptops) */
@media (max-height: 500px) {
    .hero {
        height: 100vh !important;
        min-height: 300px !important;
        padding: clamp(10px, 3vh, 30px) var(--spacing-md) clamp(5px, 2vh, 20px) !important;
    }
    
    .hero-content-wrapper {
        padding: 0 1rem !important;
    }
    
    .hero-badge {
        padding: 0.2rem 0.8rem !important;
        margin-bottom: clamp(0.3rem, 1vh, 0.8rem) !important;
        font-size: 0.6rem !important;
    }
    
    .badge-star {
        font-size: 0.7rem !important;
    }
    
    .badge-text {
        font-size: 0.5rem !important;
    }
    
    .hero-title {
        font-size: clamp(1.2rem, 8vh, 2.5rem) !important;
        margin-bottom: clamp(0.3rem, 1vh, 0.8rem) !important;
        line-height: 1 !important;
    }
    
    .hero-subtitle {
        font-size: clamp(0.7rem, 2vh, 1rem) !important;
        margin-bottom: clamp(0.5rem, 1.5vh, 1rem) !important;
        line-height: 1.3 !important;
    }
    
    .cta-buttons {
        gap: 0.5rem !important;
        margin-bottom: clamp(0.5rem, 1.5vh, 1rem) !important;
    }
    
    .btn-modern {
        padding: clamp(0.3rem, 0.8vh, 0.6rem) clamp(0.8rem, 1.5vh, 1.2rem) !important;
        font-size: clamp(0.6rem, 1vh, 0.8rem) !important;
        min-width: clamp(80px, 15vh, 120px) !important;
    }
    
    .hero-stats {
        gap: clamp(0.8rem, 2vh, 1.5rem) !important;
        margin-top: clamp(0.3rem, 1vh, 0.8rem) !important;
    }
    
    .stat-number {
        font-size: clamp(1rem, 2.5vh, 1.5rem) !important;
        margin-bottom: 0.2rem !important;
    }
    
    .stat-label {
        font-size: clamp(0.5rem, 0.8vh, 0.7rem) !important;
    }
}

/* Extremely Short Screens (Ultra-wide monitors, some phones in landscape) */
@media (max-height: 400px) {
    .hero {
        height: 100vh !important;
        min-height: 250px !important;
        padding: clamp(5px, 2vh, 15px) var(--spacing-sm) clamp(3px, 1vh, 10px) !important;
    }
    
    .hero-content-wrapper {
        padding: 0 0.5rem !important;
    }
    
    .hero-badge {
        display: none !important; /* Hide badge on extremely short screens */
    }
    
    .hero-title {
        font-size: clamp(1rem, 6vh, 2rem) !important;
        margin-bottom: clamp(0.2rem, 0.5vh, 0.5rem) !important;
        line-height: 0.9 !important;
    }
    
    .hero-subtitle {
        font-size: clamp(0.6rem, 1.5vh, 0.8rem) !important;
        margin-bottom: clamp(0.3rem, 1vh, 0.7rem) !important;
        line-height: 1.2 !important;
    }
    
    .cta-buttons {
        gap: 0.3rem !important;
        margin-bottom: clamp(0.3rem, 1vh, 0.7rem) !important;
    }
    
    .btn-modern {
        padding: clamp(0.2rem, 0.6vh, 0.4rem) clamp(0.6rem, 1.2vh, 0.8rem) !important;
        font-size: clamp(0.5rem, 0.8vh, 0.7rem) !important;
        min-width: clamp(60px, 12vh, 90px) !important;
    }
    
    .hero-stats {
        gap: clamp(0.5rem, 1.5vh, 1rem) !important;
        margin-top: clamp(0.2rem, 0.8vh, 0.5rem) !important;
    }
    
    .stat-number {
        font-size: clamp(0.8rem, 2vh, 1.2rem) !important;
        margin-bottom: 0.1rem !important;
    }
    
    .stat-label {
        font-size: clamp(0.4rem, 0.6vh, 0.6rem) !important;
    }
}

/* Short Screens (Old Monitors, Some Tablets) */
@media (min-height: 501px) and (max-height: 650px) {
    .hero {
        height: 100vh;
        min-height: 450px;
        padding: 60px var(--spacing-lg) 40px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 7vw, 4rem) !important;
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        margin-bottom: 2rem;
    }
}

/* Medium Height Screens (Standard Laptops) */
@media (min-height: 651px) and (max-height: 800px) {
    .hero {
        height: 100vh;
        min-height: 550px;
        padding: 80px var(--spacing-lg) 60px;
    }
}

/* Tall Screens (Large Monitors, 4K Displays) */
@media (min-height: 1200px) {
    .hero {
        height: 90vh;
        min-height: 800px;
        max-height: 1200px;
        padding: 120px var(--spacing-xl) 100px;
    }
}

/* Height-based adjustments for navbar relationship */
@media (max-height: 520px) {
    .hero {
        height: calc(100vh - var(--navbar-height));
        min-height: 52vh;
        padding: clamp(8px, 2vh, 24px) var(--spacing-md) clamp(8px, 2vh, 24px);
    }
    
    .hero-title { 
        font-size: clamp(1.25rem, 5.5vh, 4.25rem) !important;
        line-height: 1 !important;
    }
    
    .hero-subtitle {
        font-size: clamp(0.8rem, 1.8vh, 1rem) !important;
        margin-bottom: clamp(0.5rem, 1.2vh, 1rem) !important;
    }
    
    .cta-buttons {
        margin-bottom: clamp(0.5rem, 1.5vh, 1rem) !important;
    }
}

/* Ultra-Tall Screens (Very Large 4K+ Displays) */
@media (min-height: 1500px) {
    .hero {
        height: 80vh;
        min-height: 900px;
        max-height: 1400px;
        padding: 150px var(--spacing-2xl) 120px;
    }
}
