/* 
   =========================================
   GLOBAL RESPONSIVENESS FRAMEWORK
   Unified mobile & tablet optimizations
   ========================================= 
*/

/* 1. GLOBAL RESET & OVERFLOW PREVENT */
html, body {
    overflow-x: hidden !important;
    width: 100%;
}

* {
    box-sizing: border-box;
}

/* 2. FLUID TYPOGRAPHY (CLAMP) */
h1, .hero-title-premium {
    font-size: clamp(32px, 8vw, 64px) !important;
}

h2, .section-title-premium {
    font-size: clamp(28px, 6vw, 42px) !important;
}

p.hero-subtitle-premium {
    font-size: clamp(16px, 4vw, 20px) !important;
}

/* Legacy Mobile Menu styles removed. 
   Now fully handled by css/mobile-menu.css */

@media (max-width: 991px) {
    header .nav_links {
        display: none !important;
    }
}

/* Media queries for header removed - now handled by header-clean.css */
/*
@media (min-width: 992px) {
    header .header_icons .open_Menu, 
    header .header_icons .mobile_menu_trigger {
        display: none !important;
    }
}

    .desktop-nav {
        display: none !important;
    }

    header .top_header .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 15px 20px !important;
    }

    header .logo img {
        width: 100px !important;
    }

    .header_icons {
        display: flex !important;
        gap: 15px !important;
        align-items: center !important;
    }

    .open_Menu {
        display: flex !important;
        background: #0d2b1a !important;
        color: #fff !important;
        padding: 10px !important;
        border-radius: 8px !important;
        cursor: pointer !important;
    }
*/

/* 4. CONTAINER & SPACING STANDARDS */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 20px !important;
        width: 100% !important;
    }

    section, .about-hero-premium, .contact-hero-premium {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .featured-grid, .about-story-grid, .luxury-contact-grid, .values-grid-minimal, .team-grid-clean {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }
}

/* 5. PAGE-SPECIFIC HOTFIXES */

/* Global Overflow Fix */
html, body {
    overflow-x: hidden !important;
    position: relative;
    max-width: 100vw;
}

/* Hero Quality Refinement on Mobile */
@media screen and (max-width: 768px) {
    .about-hero-premium, .contact-hero-premium {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../Ecommerce Website/img/about_hero.png') !important;
        background-size: cover !important;
        background-position: center !important;
        padding: 120px 20px !important;
        min-height: 450px;
        text-align: center;
    }

    .contact-hero-premium {
        background-image: url('../Ecommerce Website/img/contact_hero_bg.png') !important;
    }
}

/* Form Fixes */
.luxury-form-container {
    padding: 30px 20px !important;
}
