/* Aurora Vita Inspired Styling - Elyse Iedema Fotografie */

/* ============================================
   CSS Variables - Aurora Vita Color Palette
   ============================================ */
:root {
    /* Primary Colors */
    --av-cream: #f5ede0;
    --av-cream-dark: #e8dcc8;
    --av-white: #fefefe;
    
    /* Accent Colors */
    --av-bronze: #b8967c;
    --av-brown: #9b7f6b;
    --av-terracotta: #c1876b;
    
    /* Dark Colors */
    --av-charcoal: #3d3935;
    --av-text: #2c2a28;
    --av-text-light: #6b6865;
    
    /* Gradients */
    --av-gradient-warm: linear-gradient(135deg, #f5ede0 0%, #e8dcc8 100%);
    --av-gradient-bronze: linear-gradient(135deg, #b8967c 0%, #9b7f6b 100%);
    --av-gradient-dark: linear-gradient(to bottom, #3d3935, #2c2a28);
    
    /* Shadows */
    --shadow-soft: 0 2px 8px rgba(61, 57, 53, 0.08);
    --shadow-medium: 0 4px 16px rgba(61, 57, 53, 0.12);
    --shadow-large: 0 8px 32px rgba(61, 57, 53, 0.16);
    --shadow-hover: 0 12px 40px rgba(61, 57, 53, 0.2);
    
    /* Transitions */
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 700ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
}

/* ============================================
   Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--av-text);
    background-color: var(--av-cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant', Georgia, serif;
    color: var(--av-charcoal);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 3vw, 2rem); }
h5 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
h6 { font-size: clamp(1rem, 2vw, 1.25rem); }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--av-bronze);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--av-brown);
}

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

/* ============================================
   Typography Utilities
   ============================================ */
.accent-text {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    color: var(--av-brown);
}

.text-light {
    color: var(--av-text-light);
}

/* ============================================
   Button Styles
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: 'Inter', sans-serif;
    min-height: 44px;
}

.btn-primary {
    background: var(--av-gradient-bronze);
    color: white;
    box-shadow: 0 4px 12px rgba(184, 150, 124, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 150, 124, 0.4);
    color: white;
}

.btn-secondary {
    background: var(--av-white);
    color: var(--av-charcoal);
    border: 2px solid var(--av-bronze);
}

.btn-secondary:hover {
    background: var(--av-cream);
    border-color: var(--av-brown);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--av-bronze);
    border: 2px solid var(--av-bronze);
}

.btn-outline:hover {
    background: var(--av-bronze);
    color: white;
}

/* ============================================
   Card Styles
   ============================================ */
.card {
    background: var(--av-white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-medium);
    transition: all 400ms ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

/* ============================================
   Header & Navigation
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 150, 124, 0.1);
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-base);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Cormorant', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--av-charcoal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo i {
    color: var(--av-bronze);
    font-size: 1.5rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--av-charcoal);
    font-weight: 500;
    position: relative;
    transition: color var(--transition-base);
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--av-bronze);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--av-bronze);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--av-charcoal);
    cursor: pointer;
    padding: 0.5rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--av-charcoal);
    margin-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroImageZoom 20s ease-in-out infinite alternate;
}

@keyframes heroImageZoom {
    0% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(245, 237, 224, 0.75) 0%, rgba(232, 220, 200, 0.88) 50%, rgba(61, 57, 53, 0.92) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 3rem 2rem;
}

.hero-accent-line {
    width: 80px;
    height: 3px;
    background: var(--av-gradient-bronze);
    margin: 0 auto 2.5rem;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(184, 150, 124, 0.4);
}

.hero-title {
    color: var(--av-charcoal);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    text-shadow: 2px 2px 8px rgba(254, 254, 254, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    color: var(--av-charcoal);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(254, 254, 254, 0.8);
}

.hero-cta-group {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-hero {
    padding: 16px 36px;
    font-size: 1.0625rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(61, 57, 53, 0.15);
    transition: all var(--transition-base);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(61, 57, 53, 0.25);
}

.btn-hero i {
    font-size: 0.875rem;
    transition: transform var(--transition-base);
}

.btn-hero:hover i {
    transform: translateX(4px);
}

.btn-secondary.btn-hero:hover i {
    transform: scale(1.1);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--av-bronze);
    font-size: 1.5rem;
    animation: heroScrollBounce 2s ease-in-out infinite;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity var(--transition-base);
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

@keyframes heroScrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ============================================
   Section Styles
   ============================================ */
.section {
    padding: 80px 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    color: var(--av-text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
}

/* ============================================
   Grid Layouts
   ============================================ */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================
   Portfolio Grid
   ============================================ */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--av-white);
    color: var(--av-charcoal);
    border: 2px solid var(--av-bronze);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--av-bronze);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    contain: layout style paint;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.portfolio-item:hover {
    transform: scale(1.02) translateZ(0);
    box-shadow: var(--shadow-hover);
}

.portfolio-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-slow);
    backface-visibility: hidden;
    transform: translateZ(0);
    background: linear-gradient(135deg, var(--av-cream) 0%, var(--av-cream-dark) 100%);
}

.portfolio-item img:not([src]) {
    visibility: hidden;
}

.portfolio-item:hover img {
    transform: scale(1.05) translateZ(0);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(61, 57, 53, 0.8) 0%, transparent 100%);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin: 0;
}

/* ============================================
   Form Styles
   ============================================ */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--av-charcoal);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: var(--av-white);
    border: 2px solid var(--av-cream-dark);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--av-text);
    transition: all var(--transition-base);
}

.form-control:focus {
    outline: none;
    border-color: var(--av-bronze);
    box-shadow: 0 0 0 3px rgba(184, 150, 124, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    cursor: pointer;
}

/* ============================================
   Pricing Cards
   ============================================ */
.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.toggle-btn {
    padding: 12px 32px;
    background: var(--av-white);
    border: 2px solid var(--av-bronze);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    font-weight: 500;
    color: var(--av-charcoal);
    white-space: nowrap;
}

.toggle-btn.active {
    background: var(--av-bronze);
    color: white;
}

.price-card {
    background: var(--av-white);
    border-radius: var(--radius-2xl);
    padding: 40px;
    border: 2px solid transparent;
    transition: all 400ms ease;
    position: relative;
}

.price-card:hover {
    border-color: var(--av-bronze);
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.price-card.featured {
    background: var(--av-gradient-warm);
    border: 2px solid var(--av-bronze);
}

.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--av-bronze);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.price-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--av-bronze);
    margin-bottom: 0.5rem;
}

.price-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.price-card li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-card li i {
    color: var(--av-bronze);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonial-card {
    background: var(--av-white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-medium);
    position: relative;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--av-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--av-charcoal);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--av-gradient-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 80px 2rem 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

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

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-base);
}

.footer-link:hover {
    color: var(--av-bronze);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all var(--transition-base);
}

.social-icon:hover {
    background: var(--av-bronze);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    position: relative;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.admin-login-link:hover {
    opacity: 0.4 !important;
}

/* ============================================
   Modal Styles
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 42, 40, 0.95);
    z-index: 9999;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--av-white);
    border-radius: var(--radius-xl);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--av-bronze);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    z-index: 10;
}

.modal-close:hover {
    background: var(--av-brown);
    transform: rotate(90deg);
}

/* ============================================
   Utilities
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden { display: none; }

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(184, 150, 124, 0.3);
    border-radius: 50%;
    border-top-color: var(--av-bronze);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--av-white);
        box-shadow: var(--shadow-large);
        transform: translateY(-100%);
        opacity: 0;
        transition: all var(--transition-base);
        pointer-events: none;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 2rem;
        gap: 0;
    }
    
    .main-nav li {
        width: 100%;
        border-bottom: 1px solid var(--av-cream-dark);
    }
    
    .nav-link {
        display: block;
        padding: 1rem 0;
    }
    
    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section {
        padding: 60px 1.5rem;
    }
    
    .hero {
        margin-top: 70px;
        min-height: 100svh;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
    }
    
    .hero-accent-line {
        width: 60px;
        margin-bottom: 2rem;
    }
    
    .hero-subtitle {
        margin-bottom: 2.5rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 300px;
        padding: 14px 28px;
    }
    
    .hero-scroll-indicator {
        bottom: 1.5rem;
        font-size: 1.25rem;
    }
    
    /* Pricing section responsive fixes */
    .pricing-toggle {
        gap: 0.75rem;
    }
    
    .toggle-btn {
        padding: 10px 20px;
        font-size: 0.9375rem;
        flex: 1 1 auto;
        min-width: 120px;
    }
    
    .price-card {
        padding: 32px 24px;
    }
    
    .price-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
    
    /* Creatief pricing grid on mobile */
    .creatief-pricing-grid {
        max-width: 100% !important;
    }
    
    /* Travel info responsive */
    .pricing-travel-info {
        padding: 1.25rem 1rem !important;
    }
    
    .pricing-travel-info p {
        font-size: 0.9375rem !important;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 1rem;
    }
    
    .portfolio-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.875rem;
    }
    
    .card {
        padding: 24px;
    }
    
    .price-card {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-accent-line {
        width: 50px;
        height: 2px;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta-group {
        margin-bottom: 2.5rem;
    }
    
    .btn-hero {
        padding: 12px 24px;
        font-size: 0.9375rem;
        min-width: auto;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }
    
    /* Pricing section for extra small screens */
    .pricing-toggle {
        gap: 0.5rem;
    }
    
    .toggle-btn {
        padding: 10px 16px;
        font-size: 0.875rem;
        min-width: 100px;
    }
    
    .price-card h3 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .price-card li {
        padding: 0.5rem 0;
        font-size: 0.9375rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Travel info for extra small screens */
    .pricing-travel-info {
        padding: 1rem 0.75rem !important;
    }
    
    .pricing-travel-info p {
        font-size: 0.875rem !important;
        line-height: 1.6 !important;
    }
    
    .pricing-travel-info i {
        display: block !important;
        margin: 0 auto 0.5rem !important;
    }
}

/* ============================================
   Additional Responsive Fixes
   ============================================ */
@media (max-width: 768px) {
    /* Stack grid layouts on mobile */
    .hero-content > div[style*="display: grid"] {
        display: block !important;
    }
    
    /* Fix Over Mij section grid on mobile */
    .container-narrow > div > div[style*="display: grid"] {
        display: block !important;
        gap: 2rem !important;
    }
    
    .container-narrow > div > div[style*="display: grid"] > div {
        margin-bottom: 2rem;
    }
    
    .container-narrow > div > div[style*="display: grid"] img {
        height: auto !important;
        max-height: 400px;
    }
    
    /* Make Over Mij text responsive */
    .container-narrow h3[style*="font-size: 2.5rem"] {
        font-size: 1.75rem !important;
    }
    
    .container-narrow p[style*="font-size: 1.0625rem"] {
        font-size: 1rem !important;
    }
    
    /* Adjust spacing for mobile */
    .section {
        padding: 40px 1rem;
    }
    
    /* Make tables responsive */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Adjust testimonial cards */
    .testimonial-card {
        padding: 30px 20px;
    }
    
    /* Better touch targets */
    button,
    a.btn,
    .filter-btn,
    .toggle-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Improve form inputs on mobile */
    .form-control {
        font-size: 16px; /* Prevents iOS zoom */
    }
    
    /* Better modal on mobile */
    .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 2.5vh auto;
    }
    
    /* Swiper adjustments */
    .swiper {
        height: 300px !important;
    }
    
    /* Footer adjustments */
    .footer-grid {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* ============================================
   Additional Responsive Fixes for Afspraken & Contact Pages
   ============================================ */
@media (max-width: 1024px) {
    /* Afspraken & Contact: Stack main content grids on tablets */
    section > .container > div[style*="grid-template-columns: 1.5fr 1fr"],
    section > .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Sticky positioning adjustment for mobile */
    .card[style*="position: sticky"] {
        position: relative !important;
        top: auto !important;
    }
}

@media (max-width: 768px) {
    /* All inline 2-column grids become single column */
    div[style*="display: grid"][style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Pricing toggle buttons: maintain 2 columns for better UX */
    div[style*="grid-template-columns: 1fr 1fr"] .toggle-btn {
        font-size: 0.875rem !important;
        padding: 10px 16px !important;
    }
    
    /* Contact cards spacing */
    .container > .grid.grid-4 {
        gap: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    /* Date/time and pricing toggles stack fully on small mobile */
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Ensure toggle buttons are full width on small screens */
    .toggle-btn {
        width: 100%;
        text-align: center;
    }
    
    /* Better spacing for form groups */
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    /* Adjust hero min-height on contact and afspraken pages */
    .hero[style*="min-height: 50vh"] {
        min-height: 40vh !important;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .site-header,
    .site-footer,
    .menu-toggle,
    .btn,
    .filter-btn,
    .modal {
        display: none !important;
    }
    
    * {
        background: white !important;
        color: black !important;
    }
    
    a {
        text-decoration: underline;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
    }
}

