/* --- Imports --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- Basis Instellingen --- */
:root {
    --primary-text: #1a1a1a;       /* Donkergrijs voor op wit glas */
    --secondary-text: #6b7280;     /* Grijs (gray-500) */
    --accent-gold: #a06e12;
    --font-heading: 'Bell MT', 'Garamond', serif;
    --font-tech: 'Poppins', sans-serif;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: clip; /* Voorkomt horizontaal scrollen als iets net te breed is */
    scrollbar-gutter: stable;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-tech);
    color: var(--primary-text);
    -webkit-font-smoothing: antialiased;

    /* Achtergrond: De lichte wijngaard weer */
    background-image: url('https://www.syndicat-cotesdurhone.com/upload/article/cropped/a4cb5f746b12086e548bec842998c59a9bdf04b7.JPG');
    background-size: 400% auto;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    /* Fallback voor als de foto laadt */
    background-attachment: fixed;
    background-position: top center;
}

/* --- Header --- */
header {
    height: 35vh; 
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    z-index: 2;
    animation: fadeUp 1s forwards;
    padding: 20px;
}

h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem; 
    margin: 0;
    color: #e6e6e6;
    font-weight: 500;
}

h2 {
    font-family: var(--font-heading);
    font-size: 3rem; 
    margin: 0;
    color: #111;
    font-weight: 200;
}

p.subtitle {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: #dadada;
    margin-top: 1px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    font-style: italic;
    transition: all 0.3s ease;
}

h1, #hero-subtitle {
    transition: color 0.5s ease, text-shadow 0.5s ease;
}

/* THEMA: Donkere achtergrond -> Witte tekst */
.theme-light-text h1, 
.theme-light-text #hero-subtitle {
    color: #d8d8d8 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5); /* Schaduw voor leesbaarheid */
}

/* THEMA: Lichte achtergrond -> Zwarte tekst */
.theme-dark-text h1, 
.theme-dark-text #hero-subtitle {
    color: #000000 !important;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* --- Navigatie Pill (Wit Glas) --- */
.region-nav {
    position: sticky;
    top: 120px;
    z-index: 100;
    display: flex;
    justify-content: center;
    margin-top: -130px; 
    margin-bottom: 60px;
}

.switch-container {
    position: relative; /* Belangrijk voor de marker positionering */
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1.5px solid rgba(255, 255, 255, 0.95);
    border-left: 2px solid rgba(255, 255, 255, 0.85);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.3);
    padding: 6px;
    border-radius: 100px;
    display: flex;
    gap: 0; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    /* Zorg dat de container zelf ook eventjes wacht met hover events */
    z-index: 100;
}

.nav-marker {
    position: absolute;
    top: 9px; /* Gelijk aan de padding van de container */
    left: -1px;
    height: calc(100% - 20px); /* Hoogte container min padding boven/onder */
    border-radius: 100px;
    z-index: 1; /* Achter de tekst */
    pointer-events: none; /* Klikken gaat er doorheen naar de knop */
    
    /* Hier nemen we exact jouw oude .active stijlen over */
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.05));
    background-color: #aa850c;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid #ffd756c4;
    border-left: 1.5px solid rgba(255, 255, 255, 0.411);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.205);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);

    transition: all 0.5s cubic-bezier(0.4, 0.6, 0.2, 1);
    opacity: 0; /* Verborgen tot JS klaar is */
}

.region-btn {
    position: relative;
    z-index: 2; /* Zorg dat tekst VOOR de marker staat */
    background: transparent; /* Geen eigen achtergrond meer */
    border: 1px solid transparent;
    padding: 10px 24px;
    margin: 0 4px; /* De marker moet rekening houden met deze margin */
    border-radius: 100px;
    font-family: var(--font-tech);
    font-size: 0.95rem;
    font-weight: 600;
    color: #3f3f3f;
    cursor: pointer;
    transition: all 0.3s ease; /* Alleen kleur animeren, de rest doet de marker */
    text-transform: uppercase;
}

.region-btn:hover {
    /* Lichte hover background mag blijven, of weghalen voor cleaner look */
    background: rgba(0, 0, 0, 0.0); 
}

.region-btn.active {
    color: #131313; /* Alleen de tekstkleur verandert */
    background: transparent !important;
    border-color: transparent;
    box-shadow: none;
}

/* --- Grid --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.wine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* --- DE CARD (React Structuur + White Glass Style) --- */
.wine-card {
    /* React: rounded-[3xl] border border-white/10 bg-black/20 p-4 shadow-xl */
    /* Onze versie: Wit glas */
    background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0.6));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    /* Witte randen (lichtinval) */
    border-top: 1.5px solid rgba(255, 255, 255, 0.90);
    border-left: 2px solid rgba(255, 255, 255, 0.70);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.3);
    
    border-radius: 43px; /* Matches rounded-[3xl] */
    padding: 16px;       /* Matches p-4 */
    
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Initiele schaduw */
    box-shadow: 
        inset 0 0 10px rgba(255,255,255,0.5),
        0 4px 6px -1px rgba(0, 0, 0, 0.05), 
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
        
    position: relative;
    overflow: hidden;
}

/* Hover State */
.wine-card:hover {
    transform: translateY(-8px); /* hover:-translate-y-2 */
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.7));
    border-color: #fff;
    /* Gouden schaduw */
    box-shadow: 
        inset 0 0 20px rgba(255,255,255,0.9),
        0 20px 40px -5px rgba(0, 0, 0, 0.1), 
        0 0 15px rgba(197, 160, 89, 0.2); 
}

/* 1. Image Container */
.card-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; 
    /* React: rounded-[40px] shadow-lg */
    border-radius: 32px; 
    overflow: hidden;
    border: 1px #b97d0fa8 solid;
    border-color: #3b3b3b;
    margin-bottom: 16px;
    background: #e5e7eb; /* Placeholder grijs */
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease; /* duration-700 */
}

.wine-card:hover .card-img {
    transform: scale(1.05); /* group-hover:scale-101 */
}

/* Hover Overlay (Wit in plaats van zwart) */
.card-overlay {
    position: absolute;
    inset: 0;
    /* Lichte overlay */
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(2px);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wine-card:hover .card-overlay {
    opacity: 1;
}

/* De knop in het midden */
.view-btn {
    width: 56px; /* h-14 w-14 */
    height: 56px;
    border-radius: 50%;
    /* Witte knop */
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid white;
    color: var(--primary-text);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.wine-card:hover .view-btn {
    transform: scale(1);
}

.view-btn:hover {
    transform: scale(1.1) !important;
    background: #fff;
    color: var(--accent-gold);
}

/* 2. Info Section */
.wine-info {
    display: flex;
    flex-direction: column;
    gap: 4px; /* space-y-1 */
}

.wine-title {
    font-family: var(--font-heading);
    font-size: 2.2rem; /* text-lg / xl */
    color: #1a1a1a;
    margin: 0;
    line-height: 0.9;
    font-weight: 600;
    /* AANGEPAST: Wrapping instellingen */
    line-height: 1.3;             /* Iets meer ruimte tussen de regels */
    min-height: 1.3em;            /* Zorgt dat de kaart niet verspringt bij korte titels (optioneel) */
    
    /* Moderne manier om af te kappen na max 2 regels */
    display: -webkit-box;
    -webkit-line-clamp: 2;        /* Maximaal 2 regels */
    -webkit-box-orient: vertical;
    overflow: hidden;             /* Verberg alles wat buiten regel 2 valt */
    white-space: normal;
}

.wine-sub {
    font-family: var(--font-tech);
    font-size: 1.5rem; /* text-sm */
    color: var(--secondary-text);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 3. Footer / Details */
.wine-footer {
    margin-top: auto;
    padding-top: 12px; /* pt-3 */
    padding-right: 10px;
    /* border-t border-white/10 -> nu grijs lijntje */
    border-top: 1px solid rgba(0, 0, 0, 0.08); 
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    font-family: var(--font-tech);
    font-size: 0.75rem; /* text-xs */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    font-weight: 600;
}



/* Prijskaartje OP de foto */
.price-tag-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 20px;
    font-family: var(--font-tech);
    font-weight: 400;
    font-size: 1.4rem;
    color: #1a1a1a;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 5; /* Zorg dat hij boven de foto ligt */
    border: 1px solid rgba(255,255,255,0.6);
}

.meta-group {
    display: flex;
    background-color: #a8a8a896;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
    border-radius: 10px;
    width: fit-content;
    margin-top: auto;
    margin-left: 0px;
    margin-right: 20px;
     /* space-x-3 */
}

/* --- Main Navigation (Bordeaux Glass) --- */
.main-navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 4000px;
    height: 80px;
    z-index: 1000; /* Zorg dat hij boven alles zweeft */

    /* Het Bordeaux-rode Liquid Glass effect */
    background: linear-gradient(135deg, rgba(216, 216, 216, 0.473), rgba(151, 151, 151, 0.623));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: #6b5b0034;

    /* Randen en Schaduw */
    border-top: 1.5px solid rgba(255, 255, 255, 0.37);
    border-left: 2px solid rgba(255, 255, 255, 0.486);
    border-bottom: 1px solid rgba(253, 253, 253, 0.26);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        inset 0 0 10px rgba(255, 255, 255, 0.295);

    border-radius: 30px; /* Pill shape */

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    transition: all 0.3s ease-in-out;
}

/* Links en Rechts containers voor balans */
.nav-left, .nav-right {
    display: flex;
    gap: 20px;
    flex: 1; /* Neemt gelijke ruimte in */
}

.nav-right {
    justify-content: flex-end; /* Rechts uitlijnen */
}

/* De Logo Container */
.nav-center {
    position: relative;
    
    display: flex;
    align-items: center;
    justify-content: center;
    top: 5px; /* Logo mag iets 'doorbreken' of zakken indien gewenst */
    margin: 0 20px;
}

.nav-logo {
    display: block;
    height: 35px; /* Iets groter dan de balk voor een leuk effect */
    width: auto;
    overlay: auto;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 11px;
    padding-bottom: 11px;
    background-color: #e0e0e031;
    border: 0.5px #dadada48 solid;
    border-radius: 20px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

/* De Menu Links */
.nav-item {
    text-decoration: none;
    min-width: 180px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 15px;
    border: 0.5px solid transparent;
    text-shadow: 0 0 0.0px currentColor, 0 0 0.0px currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-tech);
    font-weight: 400;
    font-size: 1.6rem;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.3s ease, text-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    will-change: color, text-shadow;
}

/* Hover Effect */
.nav-item:hover {
    color: #000000;
    border: 0.5px #00000033 solid;
    border-radius: 15px;
    background-color: #3b3b3b25;
}

/* Actieve Pagina (Indicator) */
.nav-item.active {
    color: #580202;
    font-weight: 400;
    text-shadow: 0 0 0.8px currentColor, 0 0 0.8px currentColor;

}

.nav-item.active::after {
    display: none;
}

.nav-dot {
    position: absolute;
    bottom: 19px; /* Zelfde hoogte als je oude dot */
    left: 0;
    width: 20px;   /* Ietsje subtieler, of 10px als je wilt */
    height: 5px;
    background-color: var(--accent-gold);
    border-radius: 20px;
    pointer-events: none; /* Muis moet er niet op klikken */
    z-index: 1002; /* Bovenop alles */
    
    opacity: 0; /* Begin onzichtbaar tot berekend */
    
    /* De 'vlieg' animatie - Elastic effect */
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    
    /* Gloed effect voor extra luxe */
    box-shadow: 0 0 8px var(--accent-gold);
}

.scroll-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    
    /* Je kleuren en maskers... */
    background: linear-gradient(to bottom, rgba(243, 244, 246, 0.616) 0%, rgba(243, 244, 246, 0) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
    
    z-index: 95;
    pointer-events: none;
    
    /* CRUCIAAL: Start verborgen */
    opacity: 0;
    visibility: hidden; 
    
    /* Zorg dat visibility ook animeert zodat het niet 'knippert' */
    transition: opacity 0.3s ease, visibility 0.3s;
}

/* --- PAGINA WISSEL LOGICA --- */
.page-section {
    display: block;
    animation: fadeInPage 0.5s ease;
}

.hidden {
    display: none !important;
}

@keyframes fadeInPage {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- HOMEPAGE STIJL --- */
.home-hero {
    height: 100vh; /* Volledig scherm */
    width: 100%;
    /* Een mooie sfeervolle achtergrond voor de homepage */
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.ctfassets.net/wzh5niu0b0zg/4Arav2jrYr7kYwolx8xFso/df76ed5784fc453c63140138aa5d2d0a/burgundy-chateau-de-meursault-9.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.home-content h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    color: #d4d4d4;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.home-content p {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 40px;
    font-family: var(--font-tech);
}

.logo-container {
    width: 100%;
    width: 100vw;
    box-sizing: border-box;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-top: -30px;
    margin-bottom: 40px;
    padding: 60px;
    /* Voor Chrome, Safari & Nieuwe Edge */
    -webkit-mask-image: linear-gradient(to bottom, 
        transparent 0%, 
        black 20%, 
        black 80%, 
        transparent 100%
    );
    
    /* Standaard syntax */
    mask-image: linear-gradient(to bottom, 
        transparent 0%, 
        black 20%, 
        black 80%, 
        transparent 100%
    );
    background-color: #d1d1d100;
}

/* De knop op de homepage */
.cta-button {
    padding: 15px 40px;
    font-size: 1.2rem;
    background-color: var(--accent-gold);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-5px);
    background-color: #b8860b;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.logo {
    height: 400px; /* Iets groter dan de balk voor een leuk effect */
    width: auto;
    overlay: auto;
    mix-blend-mode: color-burn;
    transition: transform 0.3s ease;
}

/* Simpele animaties voor binnenkomst */
.fade-in { opacity: 0; animation: fadeUp 1s forwards; }
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

/* Responsief: Op mobiel verbergen of aanpassen */
@media (max-width: 900px) {
    .main-navbar {
        flex-direction: column;
        height: auto;
        padding: 20px;
        border-radius: 30px;
        top: 10px;
    }
    .nav-logo { height: 60px; margin: 10px 0; }
    .nav-left, .nav-right { flex-direction: column; align-items: center; gap: 15px; }
    .nav-center { order: -1; } /* Logo bovenaan op mobiel */
}

/* Animaties */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-card {
    animation: fadeUp 0.6s ease forwards;
    opacity: 0;
}

/* --- MODAL / POPUP STYLES --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Donkere dimming */
    backdrop-filter: blur(8px);      /* Blur de achtergrond */
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000; /* Bovenop alles (navbar is 1000) */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    /* Hetzelfde Glas effect als de cards */
    background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.75));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    width: 100%;
    max-width: 900px;
    max-height: 90vh; /* Niet hoger dan het scherm */
    border-radius: 40px;
    position: relative;
    overflow-y: auto; /* Scrollen als inhoud te lang is */
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.open .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(0,0,0,0.05);
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #555;
    z-index: 10;
    transition: all 0.2s ease;
}

.close-modal:hover {
    background: rgba(0,0,0,0.1);
    color: #000;
}

/* Modal Inhoud */
.modal-inner {
    padding: 40px;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 20px;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin: 0;
    color: #1a1a1a;
    line-height: 1.1;
}

.modal-subtitle {
    font-family: var(--font-tech);
    font-size: 1.2rem;
    color: var(--secondary-text);
    margin-top: 5px;
    font-weight: 500;
}

/* Galerij Grid */
.modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.5);
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.gallery-img:first-child {
    grid-column: 1 / -1; /* Eerste foto groot */
    height: 350px;
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: rgba(255,255,255,0.4);
    padding: 25px;
    border-radius: 25px;
    margin-bottom: 30px;
}

.detail-item strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 4px;
}

.detail-item span {
    font-size: 1.1rem;
    color: #222;
    font-weight: 600;
}

.modal-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
}

/* Footer Contact */
.modal-footer-contact {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.contact-text {
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-contact {
    padding: 12px 25px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-email {
    background-color: #1a1a1a;
    color: white;
}

.btn-insta {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Mobiele aanpassing */
@media (max-width: 700px) {
    .gallery-img:first-child { height: 250px; }
    .details-grid { grid-template-columns: 1fr; }
}