/* =============================================
   VRIENDENWEEKEND 2026 – BIER-FEEST THEMA 🍺
   ============================================= */

:root {
    --bier-goud: #f5c518;
    --bier-amber: #e07b00;
    --bier-donker: #3a1f00;
    --bier-schuim: #fff8dc;
    --bier-groen: #2d6a4f;
    --bier-rood: #c0392b;
    --bier-licht: #fff3cd;
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html { font-size: 16px; }
}

body {
    margin-bottom: 60px;
    background: linear-gradient(135deg, #1a0a00 0%, #3a1f00 40%, #7b4a00 100%);
    min-height: 100vh;
    font-family: 'Nunito', sans-serif;
    color: #fff8dc;
}

/* === BUBBELS ACHTERGROND === */
.bubbles-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bubbles-bg span {
    position: absolute;
    bottom: -150px;
    width: 40px;
    height: 40px;
    background: rgba(245, 197, 24, 0.15);
    border-radius: 50%;
    animation: rise 8s infinite ease-in;
}

.bubbles-bg span:nth-child(1)  { left: 5%;  width: 20px; height: 20px; animation-duration: 7s; animation-delay: 0s; }
.bubbles-bg span:nth-child(2)  { left: 15%; width: 50px; height: 50px; animation-duration: 10s; animation-delay: 1s; }
.bubbles-bg span:nth-child(3)  { left: 25%; width: 25px; height: 25px; animation-duration: 8s;  animation-delay: 2s; }
.bubbles-bg span:nth-child(4)  { left: 35%; width: 60px; height: 60px; animation-duration: 12s; animation-delay: 0.5s; }
.bubbles-bg span:nth-child(5)  { left: 50%; width: 15px; height: 15px; animation-duration: 6s;  animation-delay: 3s; }
.bubbles-bg span:nth-child(6)  { left: 60%; width: 35px; height: 35px; animation-duration: 9s;  animation-delay: 1.5s; }
.bubbles-bg span:nth-child(7)  { left: 70%; width: 20px; height: 20px; animation-duration: 7s;  animation-delay: 4s; }
.bubbles-bg span:nth-child(8)  { left: 80%; width: 45px; height: 45px; animation-duration: 11s; animation-delay: 2s; }
.bubbles-bg span:nth-child(9)  { left: 88%; width: 25px; height: 25px; animation-duration: 9s;  animation-delay: 0.8s; }
.bubbles-bg span:nth-child(10) { left: 95%; width: 30px; height: 30px; animation-duration: 8s;  animation-delay: 3.5s; }

@keyframes rise {
    0%   { bottom: -150px; opacity: 0; transform: translateX(0) scale(1); }
    50%  { opacity: 0.5; }
    100% { bottom: 110%; opacity: 0; transform: translateX(30px) scale(1.2); }
}

/* === NAVBAR === */
.beer-navbar {
    background: linear-gradient(90deg, #3a1f00, #7b4a00, #3a1f00) !important;
    border-bottom: 3px solid var(--bier-goud);
    position: relative;
    z-index: 10;
}

.beer-brand {
    font-family: 'Fredoka One', cursive;
    font-size: 1.6rem !important;
    color: var(--bier-goud) !important;
    text-shadow: 0 0 10px rgba(245,197,24,0.5);
    letter-spacing: 1px;
}

.nav-beer {
    color: var(--bier-schuim) !important;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.2s, text-shadow 0.2s;
}

.nav-beer:hover {
    color: var(--bier-goud) !important;
    text-shadow: 0 0 8px var(--bier-goud);
}

/* === CONTAINER === */
.container {
    position: relative;
    z-index: 1;
}

/* === HERO / HOME === */
.hero-section {
    padding-top: 2rem;
}

.beer-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.beer-emoji-big {
    font-size: 3rem;
    animation: wobble 2s infinite;
}

@keyframes wobble {
    0%, 100% { transform: rotate(-5deg); }
    50%       { transform: rotate(5deg); }
}

.beer-title {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    color: var(--bier-goud);
    text-shadow: 2px 2px 0 var(--bier-donker), 0 0 20px rgba(245,197,24,0.6);
    letter-spacing: 2px;
    margin: 0;
}

.beer-subtitle {
    color: var(--bier-schuim);
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
}

/* === COUNTDOWN === */
.countdown-card {
    background: rgba(0,0,0,0.5);
    border: 3px solid var(--bier-goud);
    border-radius: 20px;
    padding: 2rem;
    max-width: 650px;
    box-shadow: 0 0 30px rgba(245,197,24,0.3);
}

.countdown-label {
    color: var(--bier-schuim);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.countdown-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bier-amber);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    min-width: 80px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.countdown-num {
    font-family: 'Fredoka One', cursive;
    font-size: 2.8rem;
    color: #fff;
    line-height: 1;
}

.countdown-unit {
    font-size: 0.75rem;
    color: var(--bier-schuim);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-sep {
    font-size: 2.5rem;
    color: var(--bier-goud);
    font-weight: 900;
    padding-bottom: 1rem;
}

.countdown-sub {
    color: var(--bier-goud);
    font-size: 1rem;
    font-weight: 700;
}

.beer-arrived {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: var(--bier-goud);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* === FUN CARDS === */
.fun-card {
    background: rgba(0,0,0,0.45);
    border: 2px solid var(--bier-amber);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.fun-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(245,197,24,0.3);
}

.fun-card-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.fun-card-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    color: var(--bier-goud);
    margin-bottom: 0.5rem;
}

.fun-card-body {
    color: var(--bier-schuim);
    font-size: 0.95rem;
}

/* === BUTTON === */
.btn-beer {
    background: linear-gradient(135deg, var(--bier-goud), var(--bier-amber));
    color: var(--bier-donker);
    font-weight: 800;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-beer:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(245,197,24,0.5);
    color: var(--bier-donker);
}

/* === REGELS === */
.rules-section {
    padding: 2rem 0;
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: var(--bier-goud);
    margin-bottom: 1.5rem;
}

.rules-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.rules-list li {
    background: rgba(0,0,0,0.35);
    border-left: 4px solid var(--bier-goud);
    border-radius: 8px;
    padding: 0.8rem 1.2rem;
    margin-bottom: 0.6rem;
    font-size: 1rem;
    color: var(--bier-schuim);
    transition: background 0.2s;
}

.rules-list li:hover {
    background: rgba(245,197,24,0.1);
}

/* === PLANNING TABS === */
.beer-tabs {
    border-bottom: 2px solid var(--bier-amber);
}

.beer-tab-btn {
    color: var(--bier-schuim) !important;
    background: rgba(0,0,0,0.3) !important;
    border-color: var(--bier-amber) !important;
    border-radius: 12px 12px 0 0 !important;
    font-weight: 700;
    margin-right: 4px;
    transition: background 0.2s, color 0.2s;
}

.beer-tab-btn.active {
    background: linear-gradient(135deg, var(--bier-goud), var(--bier-amber)) !important;
    color: var(--bier-donker) !important;
    border-color: var(--bier-goud) !important;
}

.dag-kleur-1 { background: linear-gradient(135deg, #7b4a00, #e07b00); }
.dag-kleur-2 { background: linear-gradient(135deg, #1b4332, #2d6a4f); }
.dag-kleur-3 { background: linear-gradient(135deg, #6b1a1a, #c0392b); }

.dag-titel {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.dag-datum {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    font-weight: 600;
}

/* === TIMELINE === */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--bier-goud), var(--bier-amber));
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    position: relative;
}

.timeline-tijd {
    min-width: 55px;
    font-weight: 800;
    color: var(--bier-goud);
    font-size: 0.95rem;
    padding-top: 0.1rem;
}

.timeline-icoon {
    font-size: 1.5rem;
    z-index: 1;
    background: var(--bier-donker);
    border: 2px solid var(--bier-goud);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-tekst {
    background: rgba(0,0,0,0.35);
    border-radius: 10px;
    padding: 0.6rem 1rem;
    color: var(--bier-schuim);
    font-size: 1rem;
    flex: 1;
}

/* === STAND / PODIUM === */
.podium-col {
    display: flex;
    align-items: flex-end;
}

.podium-1 { transform: translateY(0); }
.podium-2 { transform: translateY(15px); }
.podium-3 { transform: translateY(30px); }

.podium-card {
    background: rgba(0,0,0,0.5);
    border: 3px solid var(--bier-goud);
    border-radius: 16px;
    padding: 1.5rem;
    width: 100%;
    margin: 0 auto;
    transition: transform 0.2s;
}

.podium-1 .podium-card { border-color: gold; box-shadow: 0 0 20px rgba(255,215,0,0.4); }
.podium-2 .podium-card { border-color: silver; }
.podium-3 .podium-card { border-color: #cd7f32; }

.podium-card:hover { transform: translateY(-5px); }

.podium-medal { font-size: 2.5rem; }
.podium-emoji { font-size: 2.5rem; }
.podium-naam  { font-family: 'Fredoka One', cursive; font-size: 1.3rem; color: var(--bier-goud); }
.podium-punten { font-size: 1.5rem; font-weight: 900; color: #fff; }
.podium-bieren { font-size: 0.9rem; color: var(--bier-schuim); }

/* === STAND TABEL === */
.stand-table-wrap {
    background: rgba(0,0,0,0.45);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--bier-amber);
}

.stand-table {
    color: var(--bier-schuim);
    margin-bottom: 0;
}

.stand-table thead th {
    background: linear-gradient(90deg, var(--bier-amber), var(--bier-goud));
    color: var(--bier-donker);
    font-weight: 900;
    font-size: 1rem;
}

.stand-table tbody tr:hover {
    background: rgba(245,197,24,0.1) !important;
    color: #fff;
}

.bg-beer {
    background: var(--bier-amber) !important;
    color: var(--bier-donker) !important;
    font-weight: 800;
}

/* === ALERT === */
.beer-alert {
    background: rgba(224, 123, 0, 0.2);
    border: 2px solid var(--bier-amber);
    color: var(--bier-schuim);
    border-radius: 12px;
}

/* === FOOTER === */
.beer-footer {
    background: linear-gradient(90deg, #3a1f00, #7b4a00, #3a1f00);
    border-top: 3px solid var(--bier-goud);
    color: var(--bier-schuim);
    font-weight: 600;
    position: relative;
    z-index: 10;
}

/* === FOCUS/FORM FIX === */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus,
.form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--bier-goud);
}

@media (max-width: 576px) {
    .beer-title { font-size: 1.8rem; }
    .countdown-box { min-width: 60px; padding: 0.5rem 0.8rem; }
    .countdown-num { font-size: 2rem; }
    .timeline::before { left: 55px; }
}