

:root {
    --brand-yellow: hsla(45, 93%, 63%, 1);
    --brand-dark-green:hsla(174, 35%, 22%, 1) ;
    --brand-dark-green-header:hsla(45, 93%, 63%, 0.90);
        
    --font-header: 'Oswald', sans-serif;
    --font-body: 'Helvetica Neue', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {

    color: var(--brand-dark-green);
    font-family: var(--font-body);
    line-height: 1.6;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}

section[id] {
    scroll-margin-top: 80px;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) {
    /* Mobile View (Default): 2 wide */
.container { padding: 0 20px; }
}
.relative { position: relative; }
.text-center { text-align: center; }

h1, h2, h3, .accent-text, .accent-link, .accent-link-white, .footer-email {
    font-family: var(--font-header) !important;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* --- NAVIGATION --- */
.navbar {

    background-color: var(--brand-dark-green-header);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.nav-logo { height: 50px; width: auto; margin-top:5px; }

.nav-links a {
    text-decoration: none;
    color: var(--brand-dark-green);
    font-family: var(--font-header);
    text-transform: uppercase;
    margin-left: 30px;
    font-size: 1.25em;
}

/* --- MOBILE MENU (NO OVERLAY) --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2001; /* Above the sliding menu */
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--brand-light-grey);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
.menu-toggle span { background-color: var(--brand-dark-green); }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden off-screen */
        width: 100%;  /* Full width since there is no overlay */
        height: 100vh;
        background-color: var(--brand-dark-green);
        
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease;
        z-index: 2000;
    }
.active span { background-color: var(--brand-light-grey); }
    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--brand-light-grey);
        margin: 20px 0;
        font-size: 2em;
        margin-left: 0;
    }

    /* Animation for Hamburger to X */
    .menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    /* Hide the overlay element if it remains in HTML */
    .nav-overlay { display: none !important; }
}

/* --- HERO SECTION --- */
.hero {
    height: 50vh;
    background-color: var(--brand-dark-green);
    background-image: url(img/hero.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--brand-light-grey);
}

.hero-logo { 
    width: 300px; /* Scaled 25% bigger from 160px */
    margin-bottom: 20px; 
}
.hero h1 { font-size: clamp(1.8rem, 5vw, 3.5rem); }

/* --- Hero Button Styling --- */
.btn-hero,.btn-hero-sm {
    display: inline-block;
    background-color: var(--brand-dark-green);
    color: var(--brand-light-grey);
    border: 2px solid var(--brand-light-grey);
    padding: 15px 30px;
    margin-top: 30px;
    font-family: var(--font-header);
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-hero-sm {padding: 10px 20px; font-size:12px;}

.btn-hero:hover,.btn-hero-sm:hover {
    background-color: var(--brand-light-grey);
    color: var(--brand-dark-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* --- CONTENT SECTIONS --- */
.section { padding: 50px 0; }
.section-dark { background-color: var(--brand-yellow); color: var(--brand-dark-green); }
.border-top { border-top: 1px solid rgba(37, 77, 73, 0.1); }

h2 { font-size: 2.2rem; margin-bottom: 30px; line-height: 1.1; }
h3 { font-size: 1.3rem; margin-bottom: 15px;  }

.grid-two { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.grid-three { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }

@media (max-width: 768px) {
    .grid-two { grid-template-columns: 1fr; gap: 40px; }
}

/* --- LISTS --- */
ul { list-style: none; }
.line-list li { padding: 12px 0; border-bottom: 1px solid rgba(37, 77, 73, 0.1); }
.check-list li { margin-bottom: 10px; padding-left: 25px; position: relative; }
.check-list li::before { content: ""; position: absolute; left: 0; font-weight: 700; }

/* --- PARTNER LOGOS --- */
.partner-grid { display: flex; flex-direction: column; gap: 40px; padding-top: 40px; max-width: 360px; justify-content: center; margin: 0 auto; }

.p-large { 
    /*height: 100px;  Scaled 25% bigger from 60px */
    filter: grayscale(1) brightness(0.4); 
    opacity: 0.9; 
}

.p-group { display: flex;  flex-wrap: wrap; justify-content: center; }
.p-group .p-item{
flex: 0 0 33.33%; /* Exactly 3 per row */
  display: flex;
  align-items: center;    /* Vertical centering */
  justify-content: center; /* Horizontal centering */
  height: 170px;           /* Set a consistent "box" height */
  padding: 10px;           /* Prevents logos from looking too crowded */
  box-sizing: border-box;
}
.p-group .p-item img { 
max-width: 100%;   /* Keeps wide logos from breaking the grid */
  max-height: 80%;   /* Prevents tall/square logos from feeling "huge" */
  width: auto;
  height: auto;
  object-fit: contain;
    filter: grayscale(1); 
    opacity: 0.7; 
}

.p-item.small-logo img { max-height: 60px; }

@media (max-width: 768px) {
    /* Mobile View (Default): 2 wide */
.p-group .p-item{
    flex: 0 0 calc(50% - 10px); /* 50% minus half the gap */
    box-sizing: border-box;
    }

    .p-group .p-item:last-child{flex: 0 0 calc(80%);}
}


/* --- COMPONENTS --- */
.stick {
  position: relative;
  display: inline-flex;    /* Fits the box tightly to the text width */
  flex-direction: column;  /* Stack children vertically */
  align-items: flex-end;   /* Aligns children (the sticker) to the right */
  margin-bottom: 0rem;   /* Push the next flexbox down to prevent overlap */
  line-height: 1.1;
}
.sticker {
    /*position: absolute; 
    top: -15px;
    right: 40px;width:200px;*/
    
    float:right;
    background-color: var(--brand-yellow);
    color: var(--brand-dark-grey);
    padding: 6px 12px;
    font-size: 13px;
    transform: rotate(4deg);
    font-family: var(--font-header);
    text-transform:  uppercase;
    font-size: 0.8em;
    font-weight: 700;
    margin-bottom:15px;
    white-space: nowrap;  
  /* Smaller than the title */
 
  margin-top: 4px;  /* Keeps the text on one line */
}

.accent-link, .accent-link-white {
    font-size: 16px;
    text-decoration: none;
    border-bottom: 2px solid currentColor;
    padding-bottom: 5px;
    display: inline-block;
}

.accent-link-small {
    text-decoration: none;
    border-bottom: 2px solid currentColor;
    padding-bottom: 3px;
    display: inline-block;
    font-size: 12px;
}

.accent-link-white { color: var(--brand-light-grey) !important; }

/* --- PHOTO GRID --- */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.photo-item {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 3 / 2;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    transition: background-color 0.4s ease;
}

.photo-item:hover img { transform: scale(1.1); }
.photo-item:hover .photo-overlay { background-color: rgba(0, 0, 0, 0); }
.check-list i {
    width: 1.25em !important; /* Forceert een vaste breedte voor alle icoontjes */
    text-align: center;       /* Centreert het icoontje binnen die breedte */
    flex-shrink: 0;           /* Voorkomt dat het icoontje wordt platgedrukt */
}
.check-list li {
    display: flex !important;
    align-items: flex-start;
    padding-left: 0 !important; /* Verwijdert de oude 25px ruimte */
    gap: 12px;
}

.check-list li::before {
    content: none !important; /* Verwijdert het oude streepje/vinkje */
}

.check-list i {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--brand-dark-green) /* Pas aan naar je gewenste kleur */
}




@media (max-width: 768px) {
    .photo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- FOOTER --- */
.footer {
    background-color: var(--brand-yellow);
    color: var(--brand-dark-green);
    padding: 100px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 175%;
    left: 50%; /* Adjust to move it left or right */
    width: 1200px; /* Make it big */
    height: 1200px;
    background-image: url('img/bockerijders-logo-white.svg'); /* Path to your logo */
    background-repeat: no-repeat;
    background-size: contain;
    
    /* The "Vague" & "Tilted" Look */
    opacity: 0.2; 
    transform: translate(-50%, -50%) rotate(-10deg);
    
    pointer-events: none; /* User can click "through" it to hit links */
    z-index: 0;
}

/* Ensure your content stays on top of the logo */
.footer .container {
    position: relative;
    z-index: 1;
}

.footer-email { font-size: 2rem; color: var(--brand-dark-green); text-decoration: none; display: block; margin: 30px 0; }
.footer-bottom { margin-top: 40px; font-size: 12px; opacity: 0.6; }

/* --- UTILITIES --- */
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }


/* De container van de vraag */
.faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(37, 77, 73, 0.1);
    padding: 10px 0;
}

/* De vraag zelf */
.faq-item summary {
    font-weight: bold;
    color: #244C48; /* Jouw donkergroen */
    cursor: pointer;
    list-style: none; /* Verwijdert standaard pijltje in sommige browsers */
    position: relative;
    padding-left: 25px;
}

/* Custom pijltje toevoegen */
.faq-item summary::before {
    content: '▶';
    position: absolute;
    left: 0;
    font-size: 0.8em;
    transition: transform 0.3s ease;
    color: #e67e22; /* Oranje bockbier kleur */
}

/* Pijltje draaien als hij open is */
.faq-item[open] summary::before {
    transform: rotate(90deg);
}

/* Het antwoord (wordt alleen getoond als open) */
.faq-content {
    padding: 15px 25px;
    color: #333;
    line-height: 1.6;
}

a.faq-link,a.faq-link:hover { color: var(--brand-dark-green); font-weight: bold;  }


summary::-webkit-details-marker {
    display: none !important;
}
summary {
    list-style: none !important;
}

/* Optioneel: de vraag een lichte kleurverandering geven bij hover voor extra link-gevoel */
summary:hover {
    color: #e67e22 !important; /* Oranje bockbier kleur */
}

/* Added on 2026-06-19 for modal overlay and iframe styling */

/* Position the frame container directly on the right edge */
.right-drawer-panel {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  width: 460px; /* Perfect width for the Atleta ticket shop checkout */
  height: 100vh !important;
  z-index: 999999 !important;
  
  /* Slide out of view to the right by default */
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  
  /* Left edge shadow to pop out over Bockerijders content */
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  background: #ffffff;
}

/* Slide into view when active */
.right-drawer-panel.is-active {
  transform: translateX(0);
}

/* Make the iframe fill the entire right column */
.right-drawer-panel iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Mobile override: slide to fill full viewport width on small screens */
@media (max-width: 768px) {
  .right-drawer-panel {
    width: 100vw;
  }
}