/* Queen of Beauty - Responsive Stylesheet */

/* ==================== TABLET (max-width: 1024px) ==================== */
@media screen and (max-width: 1024px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .card-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

/* ==================== MOBILE (max-width: 768px) ==================== */
@media screen and (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: left var(--transition-normal);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1.1rem;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    /* Hero */
    .hero {
        height: auto;
        min-height: 80vh;
        padding: 3rem 1rem;
        margin-top: 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Sections */
    .section {
        padding: var(--spacing-lg) 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Cards */
    .card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Footer */
    .footer {
        padding: var(--spacing-lg) 1rem var(--spacing-md);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
}

/* ==================== SMALL MOBILE (max-width: 480px) ==================== */
@media screen and (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1.8rem;
        letter-spacing: 0px;
        line-height: 1.2;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* ==================== LANDSCAPE MOBILE ==================== */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .header,
    .footer,
    .mobile-menu-toggle,
    .hero-buttons,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .section {
        page-break-inside: avoid;
    }
}



/* ==================== LOGO RESPONSIVE ==================== */
@media screen and (max-width: 768px) {
    /* Logo sectie op mobiel */
    .section-light > .container > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .section-light > .container > div[style*="grid-template-columns"] > div {
        order: 1 !important;
    }
    
    .section-light > .container > div[style*="grid-template-columns"] > div > div[style*="height: 500px"] {
        height: 350px !important;
    }
}

@media screen and (max-width: 480px) {
    .section-light > .container > div[style*="grid-template-columns"] > div > div[style*="height: 500px"] {
        height: 300px !important;
    }
}



/* ==================== HERO VIDEO RESPONSIVE ==================== */
@media screen and (max-width: 768px) {
    .hero-video-desktop {
        display: none;
    }
    
    .hero-video-mobile {
        display: block;
        object-position: center center;
    }
}

