/* ==========================================
   GroenereWereld - Globale Stylesheet
   Mobile-First & Responsive Design
   ========================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 70px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Verbeterde touch targets voor mobiel */
a, button, input, select, textarea {
    touch-action: manipulation;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   Header Styling - Mobile First
   ========================================== */
header {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.95) 0%, rgba(74, 124, 40, 0.95) 100%);
    color: white;
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.5rem 0;
    background: rgba(45, 80, 22, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

header.scrolled .logo {
    font-size: 1.2rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    border-radius: 8px;
    transition: background 0.3s;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:focus {
    background: rgba(255,255,255,0.1);
    outline: none;
}

/* Navigation Links - Mobile First (hidden by default) */
.nav-links {
    position: fixed;
    top: 58px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 58px);
    height: calc(100dvh - 58px);
    background: rgba(45, 80, 22, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 1rem;
    transition: left 0.3s ease;
    list-style: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    gap: 0;
}

.nav-links.active {
    left: 0;
}

.nav-links li {
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    position: relative;
    font-size: 1.1rem;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-links li:last-child {
    border-bottom: none;
}

.nav-links li:hover,
.nav-links li:focus {
    background: rgba(255,255,255,0.1);
}

/* Contact button styling - Mobile */
.nav-links li.nav-contact {
    background: #ff6b35;
    margin-top: 1rem;
    border-bottom: none;
}

.nav-links li.nav-contact:hover {
    background: #e55a2b;
}

.nav-links li::after {
    display: none;
}

/* ==========================================
   Footer Styling - Mobile First
   ========================================== */
footer {
    background: #2d5016;
    color: white;
    padding: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #ff6b35;
}

.footer-section p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 0.5rem 0;
    cursor: pointer;
    transition: color 0.3s;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-section ul li:hover {
    color: #ff6b35;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-icon {
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    transform: scale(1.2);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0.3rem 0;
    opacity: 0.8;
}

/* ==========================================
   Hero Section - Mobile First
   ========================================== */
.hero {
    background: linear-gradient(135deg, #4a7c28 0%, #6ba83d 100%);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s;
    line-height: 1.3;
    padding: 0 0.5rem;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s;
    opacity: 0.95;
    max-width: 600px;
    padding: 0 0.5rem;
}

/* ==========================================
   Buttons - Mobile Optimized
   ========================================== */
.cta-button {
    background: #ff6b35;
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 48px;
    min-width: 150px;
    font-weight: 600;
    -webkit-tap-highlight-color: transparent;
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    outline: none;
}

.cta-button:active {
    transform: translateY(0);
}

/* ==========================================
   Container & Sections - Mobile First
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1rem;
}

.section-title {
    text-align: center;
    font-size: 1.75rem;
    color: #2d5016;
    margin-bottom: 2rem;
    line-height: 1.3;
    padding: 0 0.5rem;
}

/* ==========================================
   Service Cards - Mobile First
   ========================================== */
.services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #4a7c28;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.service-card h3 {
    color: #2d5016;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.price {
    font-size: 1.4rem;
    color: #ff6b35;
    font-weight: bold;
    margin: 1rem 0;
}

/* ==========================================
   Subscription Plans - Mobile First
   ========================================== */
.subscription-plans {
    background: #f5f5f5;
    padding: 2.5rem 1rem;
}

.plans {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plan {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.plan:hover {
    transform: scale(1.02);
}

.plan.featured {
    border: 3px solid #ff6b35;
    transform: scale(1.02);
    order: -1;
}

.plan h3 {
    color: #2d5016;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.plan-price {
    font-size: 2rem;
    color: #4a7c28;
    margin: 0.75rem 0;
}

.plan-price span {
    font-size: 0.9rem;
    color: #666;
}

.plan ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.plan ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.plan ul li:before {
    content: "✓ ";
    color: #4a7c28;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ==========================================
   Affiliate Section - Mobile First
   ========================================== */
.affiliate {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c61 100%);
    color: white;
    padding: 2.5rem 1rem;
    text-align: center;
}

.affiliate h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.affiliate-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
}

.stat {
    background: rgba(255,255,255,0.2);
    padding: 1.25rem 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.stat div:last-child {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ==========================================
   Products / Marketplace - Mobile First
   ========================================== */
.marketplace {
    padding: 2.5rem 1rem;
}

.products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product:hover {
    transform: translateY(-3px);
}

.product-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #4a7c28 0%, #6ba83d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.product-info {
    padding: 1.25rem;
}

.product-info h3 {
    color: #2d5016;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.product-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.product-price {
    color: #ff6b35;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0.75rem 0;
}

.commission {
    background: #4a7c28;
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
}

/* ==========================================
   Revenue Tracker - Mobile First
   ========================================== */
.revenue-tracker {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 1.5rem auto;
    max-width: 800px;
}

.revenue-tracker h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.revenue-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    gap: 1rem;
}

.revenue-item span:first-child {
    flex: 1;
}

.revenue-item span:last-child {
    white-space: nowrap;
    font-weight: 500;
}

.revenue-item:last-child {
    border-bottom: none;
    font-weight: bold;
    font-size: 1rem;
    background: #f5f5f5;
    border-radius: 8px;
    margin-top: 0.75rem;
}

/* ==========================================
   Cookie Banner - Mobile First
   ========================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 80, 22, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 1rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(0);
    transition: transform 0.4s ease;
    max-height: 90vh;
    max-height: 90dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.cookie-details-btn {
    background: none;
    border: none;
    color: #ff6b35;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    text-decoration: underline;
    min-height: 44px;
}

.cookie-details-btn:hover {
    color: #ff8c61;
}

.cookie-details {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 1rem;
    margin: 0.75rem 0;
}

.cookie-category {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.cookie-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-category p {
    font-size: 0.8rem;
    margin: 0.5rem 0 0 1.75rem;
    opacity: 0.8;
    line-height: 1.4;
}

.cookie-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    min-height: 44px;
}

.cookie-checkbox input {
    margin-right: 0.75rem;
    width: 20px;
    height: 20px;
    accent-color: #ff6b35;
    flex-shrink: 0;
}

.cookie-checkbox input:disabled {
    opacity: 0.6;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.cookie-btn {
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    min-height: 48px;
    width: 100%;
    text-align: center;
}

.cookie-btn-accept {
    background: #ff6b35;
    color: white;
    order: -1;
}

.cookie-btn-accept:hover {
    background: #ff8c61;
}

.cookie-btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

.cookie-btn-save {
    background: #4a7c28;
    color: white;
}

.cookie-btn-save:hover {
    background: #6ba83d;
}

.cookie-policy-link {
    font-size: 0.8rem;
    margin-top: 0.75rem;
    opacity: 0.8;
    text-align: center;
}

.cookie-policy-link a {
    color: #ff6b35;
}

.cookie-settings-btn {
    position: fixed;
    bottom: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2d5016;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-settings-btn:hover {
    transform: scale(1.1);
    background: #4a7c28;
}

/* ==========================================
   Page Content (voor subpagina's) - Mobile First
   ========================================== */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.page-content h1 {
    color: #2d5016;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.page-content h2 {
    color: #4a7c28;
    font-size: 1.4rem;
    margin: 1.5rem 0 0.75rem;
    line-height: 1.3;
}

.page-content h3 {
    color: #2d5016;
    font-size: 1.2rem;
    margin: 1.25rem 0 0.5rem;
}

.page-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.page-content ul, .page-content ol {
    margin: 1rem 0 1rem 1.5rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.page-content .last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.page-content a {
    color: #4a7c28;
    text-decoration: underline;
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ==========================================
   TABLET BREAKPOINT (768px+)
   ========================================== */
@media (min-width: 768px) {
    body {
        padding-top: 80px;
    }
    
    header {
        padding: 1rem 0;
    }
    
    nav {
        padding: 0 2rem;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    header.scrolled .logo {
        font-size: 1.4rem;
    }
    
    .nav-links {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .hero {
        padding: 4rem 2rem;
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero p {
        font-size: 1.15rem;
    }
    
    .container {
        padding: 3rem 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .plans {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .plan.featured {
        order: 0;
    }
    
    .affiliate-stats {
        grid-template-columns: repeat(4, 1fr);
        max-width: 900px;
    }
    
    .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
        padding: 2.5rem 2rem;
    }
    
    .footer-section ul li {
        justify-content: flex-start;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .cookie-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        width: auto;
        flex: 1;
        min-width: 150px;
    }
    
    .cookie-btn-accept {
        order: 0;
    }
    
    .page-content {
        padding: 3rem 2rem;
    }
    
    .page-content h1 {
        font-size: 2rem;
    }
    
    .page-content h2 {
        font-size: 1.6rem;
    }
}

/* ==========================================
   DESKTOP BREAKPOINT (1024px+)
   ========================================== */
@media (min-width: 1024px) {
    body {
        padding-top: 85px;
    }
    
    /* Desktop Navigation */
    .mobile-menu-btn {
        display: none;
    }
    
    .nav-links {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        flex-direction: row;
        padding: 0;
        gap: 0.5rem;
        display: flex;
        overflow: visible;
    }
    
    .nav-links li {
        padding: 0.5rem 0.75rem;
        font-size: 0.95rem;
        border-bottom: none;
        min-height: auto;
    }
    
    .nav-links li::after {
        display: block;
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: #ff6b35;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
    
    .nav-links li:hover::after {
        width: 80%;
    }
    
    /* Contact button - Desktop */
    .nav-links li.nav-contact {
        background: #ff6b35;
        border-radius: 25px;
        padding: 0.5rem 1.25rem;
        margin-left: 0.5rem;
        margin-top: 0;
    }
    
    .nav-links li.nav-contact:hover {
        background: #e55a2b;
        transform: translateY(-2px);
    }
    
    .nav-links li.nav-contact::after {
        display: none;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    header.scrolled .logo {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 5rem 2rem;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .hero p {
        font-size: 1.25rem;
    }
    
    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .container {
        padding: 4rem 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .services {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-card:hover {
        transform: translateY(-10px);
    }
    
    .service-icon {
        font-size: 3rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .plans {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .plan:hover {
        transform: scale(1.05);
    }
    
    .plan.featured {
        transform: scale(1.05);
    }
    
    .plan h3 {
        font-size: 1.8rem;
    }
    
    .plan-price {
        font-size: 2.5rem;
    }
    
    .affiliate h2 {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .products {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .product:hover {
        transform: translateY(-5px);
    }
    
    .product-image {
        height: 200px;
        font-size: 4rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        padding: 3rem 2rem;
    }
    
    .cookie-banner {
        padding: 1.5rem;
    }
    
    .cookie-text h3 {
        font-size: 1.3rem;
    }
    
    .cookie-text p {
        font-size: 0.95rem;
    }
    
    .page-content {
        padding: 4rem 2rem;
    }
    
    .page-content h1 {
        font-size: 2.5rem;
    }
    
    .page-content h2 {
        font-size: 1.8rem;
        margin: 2rem 0 1rem;
    }
    
    .page-content p {
        font-size: 1rem;
        line-height: 1.8;
    }
}

/* ==========================================
   LARGE DESKTOP (1200px+)
   ========================================== */
@media (min-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .nav-links li {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

/* ==========================================
   LANDSCAPE MOBILE FIXES
   ========================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 1rem;
    }
    
    .nav-links {
        padding: 0.5rem;
    }
    
    .nav-links li {
        padding: 0.5rem 1rem;
        min-height: 40px;
    }
    
    .cookie-banner {
        max-height: 80vh;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
    header,
    .cookie-banner,
    .cookie-settings-btn,
    .mobile-menu-btn,
    .cta-button {
        display: none !important;
    }
    
    body {
        padding-top: 0;
    }
    
    .hero {
        background: none;
        color: #333;
        padding: 1rem 0;
    }
    
    .page-content {
        padding: 1rem;
    }
}