/* ============================================================
   HEIDEFEESTEN – main stylesheet
   Inspired by heidefeesten.be
   ============================================================ */

/* ── Variables ──────────────────────────────────────────── */
:root {
    --hf-orange:   #e8640a;
    --hf-orange-d: #c0510a;
    --hf-dark:     #0f0f0f;
    --hf-dark-2:   #1a1a1a;
    --hf-dark-3:   #252525;
    --hf-text:     #e8e0d5;
    --hf-muted:    #a09880;
    --hf-light:    #f5f0e8;
    --nav-h:       72px;
    --radius:      6px;
    --transition:  .28s ease;
}

/* ── Reset / Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Raleway', sans-serif;
    background: var(--hf-dark);
    color: var(--hf-text);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

.container { width: min(1200px, 92vw); margin-inline: auto; }
.section    { padding: 100px 0; }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: transparent;
    transition: background var(--transition), backdrop-filter var(--transition);
}
.navbar.scrolled {
    background: rgba(15, 15, 15, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232, 100, 10, .2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo img { height: 48px; transition: opacity var(--transition); }
.nav-logo img:hover { opacity: .8; }

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--hf-text);
    transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--hf-orange); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 170px;
    background: var(--hf-dark-2);
    border: 1px solid rgba(232, 100, 10, .3);
    border-radius: var(--radius);
    padding: 8px 0;
    box-shadow: 0 12px 40px rgba(0,0,0,.5);
    z-index: 100;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
    padding: 10px 18px;
    font-size: .85rem;
    display: block;
    border-radius: 0;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 26px; height: 2px;
    background: var(--hf-text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        url('{{ asset('img/afbeelding/69041927_2799597903403118_6822658929558814720_n.jpg') }}');
    background-size: cover;
    background-position: center;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15,15,15,.3) 0%,
        rgba(15,15,15,.6) 60%,
        rgba(15,15,15,.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeUp .9s ease both;
    max-width: 780px;
    padding: 0 24px;
}

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

.hero-logo-img {
    height: 100px;
    margin: 0 auto 24px;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,.6));
}

.hero-datum {
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--hf-orange);
    margin-bottom: 12px;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    letter-spacing: .04em;
    line-height: 1;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0,0,0,.5);
    margin-bottom: 18px;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--hf-text);
    margin-bottom: 36px;
    opacity: .9;
}

.btn-hero {
    display: inline-block;
    padding: 14px 40px;
    background: var(--hf-orange);
    color: #fff;
    font-weight: 800;
    font-size: .95rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background var(--transition), transform var(--transition);
    box-shadow: 0 6px 24px rgba(232,100,10,.35);
}
.btn-hero:hover { background: var(--hf-orange-d); transform: translateY(-2px); }

.scroll-down-arrow {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,.6);
    font-size: 1.4rem;
    animation: bounce 2s ease-in-out infinite;
    transition: color var(--transition);
}
.scroll-down-arrow:hover { color: var(--hf-orange); }

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

/* ── Section titles ─────────────────────────────────────── */
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    letter-spacing: .06em;
    color: var(--hf-orange);
    margin-bottom: 12px;
}
.section-title.light { color: #fff; }
.section-sub  { color: var(--hf-muted); font-style: italic; margin-bottom: 4px; font-size: .95rem; }
.section-sub-2 { color: var(--hf-muted); font-style: italic; margin-bottom: 36px; font-size: .9rem; }

/* ── Line-up ────────────────────────────────────────────── */
.lineup-section { background: var(--hf-dark); }

.day-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.day-tab {
    padding: 12px 28px;
    background: var(--hf-dark-3);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 3px;
    color: var(--hf-text);
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.day-tab:hover  { border-color: var(--hf-orange); color: var(--hf-orange); }
.day-tab.active { background: var(--hf-orange); border-color: var(--hf-orange); color: #fff; }

.day-panel { display: none; }
.day-panel.active { display: block; animation: fadeIn .35s ease; }

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

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.artist-card {
    background: var(--hf-dark-2);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(232,100,10,.2);
}

.artist-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.artist-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.artist-card:hover .artist-img-wrap img { transform: scale(1.06); }

.artist-info {
    padding: 16px 18px 20px;
}

.artist-time {
    display: inline-block;
    background: var(--hf-orange);
    color: #fff;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.artist-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.3;
}

.btn-meer {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    border: 1px solid rgba(232,100,10,.5);
    color: var(--hf-orange);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background var(--transition), color var(--transition);
}
.btn-meer:hover { background: var(--hf-orange); color: #fff; }

/* ── BBQ ────────────────────────────────────────────────── */
.bbq-section {
    position: relative;
    background: var(--hf-dark-2);
    background-image: url('https://heidefeesten.be/wp-content/uploads/2021/07/14124539_1344914678871455_574224665904002572_o.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bbq-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,15,15,.84);
}

.bbq-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.bbq-intro {
    max-width: 640px;
    margin: 0 auto 48px;
    color: var(--hf-text);
    font-size: 1.05rem;
    line-height: 1.8;
}

.bbq-cards {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.bbq-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(232,100,10,.3);
    border-radius: var(--radius);
    padding: 40px 36px;
    text-align: center;
    min-width: 240px;
    transition: border-color var(--transition), transform var(--transition);
}
.bbq-card:hover { border-color: var(--hf-orange); transform: translateY(-4px); }

.bbq-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--hf-orange);
    line-height: 1;
    margin-bottom: 4px;
}

.bbq-label {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--hf-muted);
    margin-bottom: 20px;
}

.bbq-card hr { border-color: rgba(255,255,255,.1); margin-bottom: 18px; }

.bbq-card p { font-size: .9rem; color: var(--hf-text); margin-bottom: 24px; }

.btn-bbq {
    display: inline-block;
    padding: 12px 32px;
    background: var(--hf-orange);
    color: #fff;
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background var(--transition);
}
.btn-bbq:hover { background: var(--hf-orange-d); }

/* ── Gallery ────────────────────────────────────────────── */
.gallery-section { background: var(--hf-dark); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 6px;
}

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

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(232,100,10,.0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    opacity: 0;
    transition: opacity var(--transition), background var(--transition);
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay {
    opacity: 1;
    background: rgba(232,100,10,.45);
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq-section { background: var(--hf-dark-2); }

.faq-category { margin-bottom: 48px; }

.faq-cat-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: .1em;
    color: var(--hf-orange);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(232,100,10,.2);
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    color: var(--hf-text);
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--hf-orange); }

.faq-icon {
    font-size: .75rem;
    flex-shrink: 0;
    transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    display: none;
    padding: 0 0 20px;
    color: var(--hf-muted);
    font-size: .95rem;
    line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; animation: fadeIn .25s ease; }

/* ── Sponsors ───────────────────────────────────────────── */
.sponsors-section { background: var(--hf-dark); text-align: center; }
.sponsors-sub  { color: var(--hf-muted); margin-bottom: 8px; }
.sponsors-label { color: var(--hf-muted); font-size: .9rem; }

/* ── Contact ────────────────────────────────────────────── */
.contact-section {
    background: var(--hf-dark-2);
    border-top: 1px solid rgba(232,100,10,.15);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info p { margin-bottom: 8px; color: var(--hf-muted); font-size: .95rem; }
.contact-info a { color: var(--hf-orange); }
.contact-info a:hover { text-decoration: underline; }
.contact-address { margin-top: 24px; }

.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--hf-muted);
    margin-bottom: 7px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 12px 16px;
    color: var(--hf-text);
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    transition: border-color var(--transition);
    outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--hf-orange); }
.contact-form textarea { resize: vertical; }

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 36px;
    background: var(--hf-orange);
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}
.btn-submit:hover { background: var(--hf-orange-d); transform: translateY(-2px); }

.alert-success {
    background: rgba(34,197,94,.12);
    border: 1px solid rgba(34,197,94,.3);
    color: #4ade80;
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: .9rem;
}

.alert-error {
    background: rgba(239,68,68,.12);
    border: 1px solid rgba(239,68,68,.3);
    color: #f87171;
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: .9rem;
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
    background: #080808;
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 40px 24px;
    text-align: center;
}
.footer-inner p { color: var(--hf-muted); font-size: .85rem; margin-bottom: 4px; }
.footer-copy { color: rgba(255,255,255,.25) !important; margin-top: 16px !important; font-size: .75rem !important; }

/* ── Cashless / Sub-pages ───────────────────────────────── */
.subpage-hero {
    padding: calc(var(--nav-h) + 80px) 0 80px;
    text-align: center;
    background: var(--hf-dark);
}
.subpage-content {
    background: var(--hf-dark);
    padding: 60px 0 100px;
}
.subpage-content .container { max-width: 800px; }
.subpage-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    color: var(--hf-orange);
    margin: 36px 0 10px;
    letter-spacing: .06em;
}
.subpage-content p { color: var(--hf-muted); margin-bottom: 16px; line-height: 1.8; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }

    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        background: rgba(15,15,15,.96);
        border-bottom: 1px solid rgba(232,100,10,.2);
        padding: 20px 0;
        gap: 0;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { padding: 12px 28px; }
    .dropdown-menu { position: static; border: none; background: rgba(255,255,255,.04); }
}

@media (max-width: 600px) {
    .artists-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid  { grid-template-columns: 1fr 1fr; }
    .bbq-cards     { flex-direction: column; align-items: center; }
    .hero-title    { font-size: 4rem; }
}