/* --- Scroll Animations --- */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4,1.4,.6,1), transform 0.7s cubic-bezier(.4,1.4,.6,1);
}
.scroll-animate.visible {
    opacity: 1;
    transform: none;
}
/* --- Analytics tab --- */
#tab-analytics table {
    background: #fff;
    color: #222;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-top: 20px;
    font-size: 1.1em;
}
#tab-analytics th, #tab-analytics td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
}
#tab-analytics th {
    background: var(--brand-orange);
    color: #fff;
    border-radius: 8px 8px 0 0;
}
#tab-analytics tr:last-child td {
    border-bottom: none;
}
/* --- HEADER & MENU --- */
.main-header {
    background: rgba(24, 17, 13, 0.92);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    transition: background 0.3s, box-shadow 0.3s;
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.header-logo {
    height: 60px;
    width: auto;
    margin-right: 30px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
    transition: transform 0.3s, filter 0.3s;
}
.header-logo:hover {
    transform: scale(1.07) rotate(-2deg);
    filter: drop-shadow(0 0 12px var(--brand-orange));
}
.main-nav {
    display: flex;
    align-items: center;
}
.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-list li {
    display: flex;
    align-items: center;
}
.nav-list a {
    font-family: var(--heading-font);
    font-size: 1.25rem;
    color: var(--brand-orange);
    text-decoration: none;
    letter-spacing: 1px;
    padding: 8px 18px;
    border-radius: 30px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    position: relative;
}
.nav-list a:hover, .nav-list a:focus,
.nav-list a.active {
    background: var(--brand-orange);
    color: var(--brand-brown);
    box-shadow: 0 2px 12px rgba(249,160,63,0.18);
    outline: none;
}
@media (max-width: 900px) {
    .header-flex {
        flex-direction: column;
        gap: 10px;
        min-height: 90px;
    }
    .main-nav {
        width: 100%;
        justify-content: center;
    }
    .nav-list {
        gap: 18px;
    }
    .header-logo {
        height: 48px;
        margin-right: 0;
        margin-bottom: 8px;
    }
}
@media (max-width: 600px) {
    .main-header {
        padding: 0.5rem 0;
    }
    .header-flex {
        min-height: 60px;
    }
    .nav-list {
        gap: 8px;
    }
    .nav-list a {
        font-size: 1rem;
        padding: 7px 10px;
    }
}
:root {
    --brand-orange: #F9A03F;
    --brand-brown: #38220F;
    --brand-cream: #F5E6CC;
    --dark-bg: #181511;
    --light-text: var(--brand-cream);
    --heading-font: 'Bebas Neue', sans-serif;
    --body-font: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.7;
    color: var(--light-text);
    background: url('background.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Voorkom horizontale scrollbars */
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(25, 19, 17, 0.75); /* Iets lichtere overlay om achtergrond meer door te laten */
    z-index: -1; 
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

header {
    background: transparent; /* Start transparant */
    padding: 1.5rem 0; /* Meer padding voor groter logo */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

header.scrolled {
    background: rgba(15, 12, 10, 0.9);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.7);
}

header .container {
    display: flex;
    justify-content: center; /* Logo altijd centreren */
    align-items: center;
}

#logo {
    height: clamp(60px, 10vw, 80px); /* Prominenter & responsive logo */
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

#logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--brand-orange));
}

/* Hero Sectie */
#hero {
    /* background-color: rgba(0, 0, 0, 0.3); /* Subtiele donkere overlay voor leesbaarheid hero tekst */
    /* De body heeft nu de achtergrondafbeelding */
    color: #fff;
    min-height: 85vh; /* Iets korter voor snellere pre-order zichtbaarheid */
    display: flex;
    flex-direction: column; /* Om pijl onder content te plaatsen */
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: clamp(100px, 15vh, 150px); /* Dynamische padding voor header */
    padding-bottom: 60px; /* Ruimte voor scroll pijl */
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 100%);
}

#hero .container {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    display: flex; /* Om hero logo en tekst beter te positioneren */
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    width: clamp(170px, 32vw, 270px); /* Iets groter */
    margin-bottom: 2.2rem;
    filter:
        drop-shadow(0 8px 32px rgba(0,0,0,0.55)) /* diepe schaduw */
      
        drop-shadow(0 0 0 #fff0); /* fallback */
   
    background: transparent;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.85) translateY(20px) rotateX(8deg) rotateZ(-2deg);
    animation: popInLogo 0.8s 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transition: filter 0.3s, transform 0.3s;
}
.hero-logo:hover, .hero-logo:focus {
    filter:
        drop-shadow(0 12px 40px rgba(0,0,0,0.65))
        drop-shadow(0 0 36px #ffb347cc)
        drop-shadow(0 0 0 #fff0);
    transform: scale(0.92) rotateX(0deg) rotateZ(0deg);
    outline: none;
}
@media (max-width: 600px) {
    .hero-logo {
        width: clamp(120px, 40vw, 180px);
    }
}
}

#hero h1 {
    font-family: var(--heading-font);
    font-size: clamp(3rem, 18vw, 5.5rem);
    margin-bottom: 0.5rem;
    color: var(--brand-orange); /* Herstelde kleur */
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6); /* Subtiele donkere schaduw voor definitie */
}

#hero .tagline {
    font-size: clamp(1.3rem, 5vw, 2rem);
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--brand-cream);
    text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}

#hero p:not(.tagline) {
    font-size: clamp(1rem, 3vw, 1.25rem);
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
}

/* Scroll Down Arrow */
.scroll-down-arrow {
    position: absolute;
    bottom: 0px; /* Pijl lager geplaatst, dichter bij de onderkant van hero */
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--brand-orange);
    border-radius: 50px;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    animation: fadeIn 1s 1.5s forwards, bounceArrow 2s 2.5s infinite;
}

.scroll-down-arrow span {
    display: block;
    width: 25px;
    height: 25px;
    border-bottom: 3px solid var(--brand-orange);
    border-right: 3px solid var(--brand-orange);
    transform: rotate(45deg);
    cursor: pointer;
}

/* Pre-order Product Sectie */
#preorder-product {
    padding: 60px 20px;
    background-color: rgba(30, 22, 19, 0.85); /* Meer transparant donkerbruin */
    text-align: center;
    position: relative; 
    z-index: 1;
}

#preorder-product h2 {
    font-family: var(--heading-font);
    font-size: clamp(2.8rem, 8vw, 4.5rem);
    color: var(--brand-orange);
    margin-bottom: 60px;
    position: relative;
}

#preorder-product h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--brand-orange), transparent);
    margin: 20px auto 0;
    border-radius: 2px;
    opacity: 0.8;
}

.product-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    /* Animatie wordt getriggerd door JS Intersection Observer indien gewenst, of direct */
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1.2s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.product-image {
    max-width: 100%;
    width: clamp(300px, 45vw, 450px);
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.6), 
                0 0 0 8px var(--brand-brown), 
                0 0 0 12px var(--brand-orange);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
    cursor: pointer;
}

.product-image:hover {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 25px 55px rgba(249, 160, 63, 0.4), 
                0 0 0 10px var(--brand-orange), 
                0 0 0 15px var(--brand-brown);
}

.product-info {
    max-width: 600px;
}

.product-info h3 {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 6vw, 2.8rem);
    color: var(--brand-cream);
    margin-bottom: 20px;
    letter-spacing: 1.5px;
}

.product-info p {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    margin-bottom: 15px;
}

/* Knop Styling */
.btn {
    display: inline-block;
    background: linear-gradient(145deg, var(--brand-orange), #e08e30);
    color: var(--dark-bg);
    padding: 18px 45px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: var(--heading-font);
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    letter-spacing: 2px;
    margin-top: 30px;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4), 0 0 15px var(--brand-orange) inset;
    text-transform: uppercase;
}

.btn:hover, .btn:focus {
    background: linear-gradient(145deg, #ffab50, var(--brand-orange));
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 12px 35px rgba(249, 160, 63, 0.5), 0 0 20px var(--brand-orange) inset;
    color: #000;
    border: 2px solid var(--brand-cream);
    outline: none;
}

.product-info .btn:hover {
    background-color: var(--brand-orange-dark);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Styling voor het nieuwe pre-order formulier */
.preorder-product-form {
    display: flex;
    flex-direction: column; /* Standaard onder elkaar */
    align-items: center;
    gap: 15px;
    margin-top: 30px; /* Ruimte boven het formulier */
    max-width: 500px; /* Maximale breedte van het formulier */
    margin-left: auto;
    margin-right: auto;
}

.preorder-product-form input[type="email"] {
    width: 100%;
    padding: 15px 20px;
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--brand-orange-transparent);
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.preorder-product-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.preorder-product-form input[type="email"]:focus {
    outline: none;
    border-color: var(--brand-orange);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(238, 109, 37, 0.5), inset 0 2px 4px rgba(0,0,0,0.2);
}

.preorder-product-form .btn {
    width: 100%; /* Knop neemt volledige breedte van de flex-item container */
    padding: 15px 20px;
    font-size: 1.1rem;
}

/* Product features lijst styling */
.product-features {
    list-style-type: none; /* Verwijder bullet points */
    padding-left: 0; /* Verwijder standaard inspringing */
    /* text-align: left; Verwijderd om centreren van UL mogelijk te maken */
    display: inline-block; /* Maakt centreren via text-align van parent mogelijk */
    margin-top: 15px; /* Ruimte boven de lijst */
    margin-bottom: 20px; /* Ruimte onder de lijst */
}

.product-features li {
    margin-bottom: 8px; /* Ruimte tussen de list items */
    font-size: 0.95rem;
    color: var(--text-light-secondary); /* Iets lichtere kleur voor features */
    text-align: center; /* Centreer tekst binnen LI */
}

.product-tagline {
    font-style: italic;
    color: var(--brand-cream);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Nieuwsbrief Sectie */
#nieuwsbrief {
    padding: 60px 20px;
    background-color: rgba(35, 25, 22, 0.88); /* Iets andere tint, semi-transparant */
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}

#nieuwsbrief h2 {
    font-family: var(--heading-font);
    font-size: clamp(2.2rem, 8vw, 3.5rem); /* Adjusted size for newsletter title */
    color: var(--brand-orange);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 30px;
    text-align: left;
}

@media (min-width: 768px) {
    .contact-wrapper {
        flex-direction: row;
        gap: 60px;
    }
    .contact-form-container {
        flex: 2; /* Formulier neemt meer ruimte */
    }
    .contact-info-direct {
        flex: 1;
        padding-top: 1.5rem; /* Lijn info iets uit met formulier labels */
    }
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--brand-orange-muted);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--brand-brown-dark);
    border-radius: var(--border-radius-medium);
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Voorkomt dat padding de breedte beïnvloedt */
}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand-orange);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.25);
}

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

.contact-info-direct h3 {
    font-family: var(--heading-font);
    color: var(--brand-orange);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.contact-info-direct p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.contact-info-direct a {
    color: var(--brand-orange-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-direct a:hover {
    color: var(--brand-orange);
    text-decoration: underline;
}

.social-links-contact {
    margin-top: 15px;
}

.social-links-contact a,
.social-links-footer a {
    display: inline-block;
    margin-right: 15px;
    color: var(--brand-orange-muted); /* Startkleur van de iconen */
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links-contact a:last-child,
.social-links-footer a:last-child {
    margin-right: 0;
}

.social-links-contact a svg,
.social-links-footer a svg {
    width: 24px; /* Standaard grootte voor contact sectie */
    height: 24px;
    fill: currentColor; /* Neemt kleur over van de 'a' tag */
}

.social-links-footer a svg {
    width: 28px; /* Iets groter in de footer */
    height: 28px;
}

.social-links-contact a:hover,
.social-links-footer a:hover {
    color: var(--brand-orange); /* Kleur bij hover */
    transform: scale(1.1); /* Iets groter bij hover */
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--brand-orange-muted);
    border-radius: var(--border-radius-medium);
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--brand-orange);
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
}

@media (min-width: 500px) {
    .newsletter-form {
        flex-direction: row;
    }
    .newsletter-form input[type="email"] {
        flex-grow: 1;
    }
    .newsletter-form .btn {
        min-width: 150px; /* Zorgt dat knop niet te smal wordt */
    }
}

/* Contact Sectie */
/* Styling for #contact h2 is now placed above, this is just the start of the general #contact styles */
#contact {
    padding: 60px 20px;
    background-color: rgba(50, 30, 15, 0.85); /* Meer transparant donker oranje/bruin */
    color: #fff;
    text-align: center;
    position: relative; 
    z-index: 1;
}

#contact h2 {
    font-family: var(--heading-font);
    font-size: clamp(2.8rem, 8vw, 4.5rem);
    color: var(--brand-orange);
    margin-bottom: 50px;
}

#contact p {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    max-width: 650px;
    margin: 0 auto 2rem auto;
}

#contact a {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
}

#contact a:hover {
    color: #fff;
    text-shadow: 0 0 8px var(--brand-orange);
}

/* Footer */
footer {
    background-color: rgba(20, 15, 12, 0.9); /* Meer transparant, zeer donkerbruin */
    color: #aaa;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    position: relative; 
    z-index: 1;
}

.social-links-footer {
    margin-bottom: 15px;
}

/* Animatie Keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes popInLogo {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Design Aanpassingen */
@media (max-width: 767px) {
    #hero h1 {
        letter-spacing: 1.5px;
        font-size: clamp(2.4rem, 13vw, 4.1rem); /* Groter op mobiel relatief gezien */
    }
    #hero .tagline {
        font-size: clamp(1.1rem, 6vw, 1.5rem);
    }
    .product-display {
        gap: 30px;
    }
    .product-info {
        text-align: center;
    }
    .btn {
        padding: 15px 35px;
    }
}
