/* ========================================
   La Mixtura Dansschool — Styles
   ======================================== */

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

:root {
    --red: #C41E2A;
    --red-dark: #9B1620;
    --red-light: #E8323E;
    --red-glow: rgba(196, 30, 42, 0.4);
    --black: #0A0A0A;
    --black-light: #111111;
    --black-card: #161616;
    --white: #FFFFFF;
    --grey: #888888;
    --grey-dark: #444444;
    --grey-light: #CCCCCC;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --nav-height: 70px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--red);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--red-light);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.accent {
    color: var(--red);
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.3s, box-shadow 0.3s;
}

.nav__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav--scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    border-bottom-color: rgba(196, 30, 42, 0.1);
}

.nav__logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav__logo-la {
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--grey);
}

.nav__logo-mixtura {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    color: var(--white);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav__links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--grey-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
    position: relative;
}

.nav__links li:not(:last-child) a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s ease;
}

.nav__links li:not(:last-child) a:hover::after {
    width: 100%;
}

.nav__links a:hover {
    color: var(--white);
}

.nav__cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
}

.nav__cta:hover {
    background: var(--red-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px var(--red-glow);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav__toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--nav-height) 0 60px;
    position: relative;
    background: var(--black);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(196, 30, 42, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(196, 30, 42, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.hero__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 60px rgba(196, 30, 42, 0.15), 0 0 120px rgba(196, 30, 42, 0.08);
    animation: heroImageIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero__image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.hero__logo {
    margin-bottom: 40px;
}

.hero__logo-la {
    display: block;
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 1rem;
    letter-spacing: 0.6em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 4px;
    animation: fadeSlideDown 0.8s ease both;
}

.hero__logo-mixtura {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: 0.06em;
    line-height: 0.9;
    color: var(--white);
    animation: fadeSlideUp 0.8s ease 0.1s both;
}

.hero__logo-mixtura .accent {
    text-shadow: 0 0 30px var(--red-glow), 0 0 60px rgba(196, 30, 42, 0.2);
}

.hero__logo-sub {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 12px;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.05rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--grey-light);
    animation: fadeIn 0.8s ease 0.3s both;
}

.hero__logo-divider {
    width: 2px;
    height: 18px;
    background: var(--red);
    box-shadow: 0 0 8px var(--red-glow);
}

.hero__logo-tagline {
    display: block;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--grey);
    margin-top: 10px;
    animation: fadeIn 0.8s ease 0.4s both;
}

.hero__quote {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-style: italic;
    color: var(--grey-light);
    line-height: 1.8;
    margin-bottom: 36px;
    border: none;
    animation: fadeIn 0.8s ease 0.5s both;
}

.hero__actions {
    margin-bottom: 20px;
    animation: fadeSlideUp 0.8s ease 0.6s both;
}

.hero__subtitle {
    font-size: 0.9rem;
    color: var(--grey);
    font-weight: 400;
    animation: fadeIn 0.8s ease 0.7s both;
}

.hero__social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    animation: fadeIn 0.8s ease 0.8s both;
}

.hero__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-light);
    transition: color 0.3s ease;
}

.hero__social a svg {
    width: 24px;
    height: 24px;
}

.hero__social a:hover {
    color: var(--red-light);
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 1;
}

.hero__scroll a {
    color: var(--grey);
    transition: color 0.2s;
}

.hero__scroll a:hover {
    color: var(--white);
}

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

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

@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes heroImageIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.btn--primary {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(196, 30, 42, 0.3);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(196, 30, 42, 0.5);
}

.btn__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* --- Sections --- */
.section {
    padding: 100px 0;
    position: relative;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: 16px;
}

.section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--red-light));
    margin: 16px auto 60px;
    border-radius: 2px;
}

/* --- Over Ons --- */
.over-ons {
    background: var(--black-light);
    position: relative;
}

/* Decorative diagonal top edge */
.over-ons::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom right, transparent 49.5%, var(--black-light) 50%);
}

.over-ons__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.over-ons__text p {
    margin-bottom: 16px;
    color: var(--grey-light);
    font-size: 0.95rem;
}

.over-ons__intro {
    font-size: 1.1rem !important;
    font-weight: 500;
    color: var(--white) !important;
    margin-bottom: 24px !important;
    position: relative;
    padding-left: 16px;
    border-left: 3px solid var(--red);
}

.over-ons__highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-card {
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--red), var(--red-light));
    transition: height 0.4s ease;
}

.highlight-card:hover {
    border-color: rgba(196, 30, 42, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(196, 30, 42, 0.05);
}

.highlight-card:hover::before {
    height: 100%;
}

.highlight-card__icon {
    display: block;
    margin-bottom: 8px;
    color: var(--red);
}

.highlight-card h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 6px;
}

.highlight-card p {
    font-size: 0.88rem;
    color: var(--grey);
    line-height: 1.6;
}

/* --- Prijs Banner --- */
.prijs-banner {
    padding: 80px 0 20px;
    background: var(--black);
    position: relative;
}

/* --- Lessen & Prijzen --- */
.lessen {
    background: var(--black);
    position: relative;
}

.prijs-highlight {
    text-align: center;
    background: linear-gradient(135deg, rgba(196, 30, 42, 0.15), rgba(196, 30, 42, 0.03));
    border: 1px solid rgba(196, 30, 42, 0.2);
    border-radius: 20px;
    padding: 56px 32px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.prijs-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(196, 30, 42, 0.08) 60deg,
        transparent 120deg
    );
    animation: rotatePrijs 12s linear infinite;
    pointer-events: none;
}

@keyframes rotatePrijs {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.prijs-highlight__amount {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 6.5rem);
    line-height: 1;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.prijs-highlight__currency {
    font-size: 0.5em;
    vertical-align: super;
    color: var(--red);
    text-shadow: 0 0 20px var(--red-glow);
}

.prijs-highlight__period {
    font-family: var(--font-body);
    font-size: 0.2em;
    font-weight: 300;
    color: var(--grey);
    vertical-align: middle;
}

.prijs-highlight__text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.prijs-highlight__sub {
    font-size: 0.9rem;
    color: var(--grey);
    position: relative;
    z-index: 1;
}

/* --- Rooster --- */
.rooster {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.rooster__dag {
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.rooster__dag:hover {
    border-color: rgba(196, 30, 42, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.rooster__dag-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    color: var(--red);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(196, 30, 42, 0.15);
}

.rooster__items {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px 12px;
}

.rooster__item {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1 / -1;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.rooster__item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.06);
    transform: translateX(4px);
}

.rooster__tijd {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--grey-light);
    font-variant-numeric: tabular-nums;
}

.rooster__les {
    font-weight: 600;
    font-size: 0.95rem;
}

.rooster__niveau {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    text-align: center;
}

.rooster__niveau--beginner {
    background: rgba(76, 175, 80, 0.12);
    color: #66BB6A;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.rooster__niveau--intermediate {
    background: rgba(255, 183, 77, 0.12);
    color: #FFB74D;
    border: 1px solid rgba(255, 183, 77, 0.2);
}

.rooster__niveau--gevorderd {
    background: rgba(196, 30, 42, 0.12);
    color: var(--red-light);
    border: 1px solid rgba(196, 30, 42, 0.2);
}

/* --- Koppelkorting --- */
.koppelkorting {
    background: linear-gradient(135deg, var(--black-card), rgba(196, 30, 42, 0.06));
    border: 1px solid rgba(196, 30, 42, 0.12);
    border-radius: 16px;
    padding: 32px 36px;
    text-align: center;
    transition: border-color 0.3s;
}

.koppelkorting:hover {
    border-color: rgba(196, 30, 42, 0.25);
}

.koppelkorting h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    margin-bottom: 10px;
}

.koppelkorting p {
    color: var(--grey-light);
    font-size: 0.95rem;
}

/* --- FAQ --- */
.faq {
    background: var(--black-light);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom left, transparent 49.5%, var(--black-light) 50%);
}

.faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.faq__item {
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq__item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), transparent);
    transition: width 0.4s ease;
}

.faq__item:hover {
    border-color: rgba(196, 30, 42, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq__item:hover::after {
    width: 100%;
}

.faq__question {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.faq__answer {
    font-size: 0.9rem;
    color: var(--grey-light);
    line-height: 1.7;
}

.faq__cta {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--red);
    transition: color 0.2s, letter-spacing 0.3s;
}

.faq__cta:hover {
    color: var(--red-light);
    letter-spacing: 0.02em;
}

/* --- Contact --- */
.contact {
    background: var(--black);
}

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

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__card {
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 28px;
    transition: border-color 0.3s;
}

.contact__card:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.contact__card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
}

.contact__card p {
    color: var(--grey-light);
    font-size: 0.92rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.btn--whatsapp {
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
}

.contact__phone {
    text-align: center;
    color: var(--grey) !important;
    font-size: 0.88rem !important;
}

.contact__social h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
}

.contact__social-links {
    display: flex;
    gap: 16px;
}

.contact__social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--grey-light);
    transition: all 0.3s ease;
}

.contact__social-links a:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--red-glow);
}

.contact__map {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.3s;
}

.contact__map:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

/* --- Footer --- */
.footer {
    text-align: center;
    padding: 48px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.footer__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 8px;
}

.footer__logo-la {
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    color: var(--grey);
}

.footer__logo-mixtura {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 0.05em;
}

.footer__tagline {
    font-size: 0.8rem;
    color: var(--grey);
    margin-bottom: 16px;
}

.footer__social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--grey);
    transition: all 0.3s ease;
}

.footer__social a:hover {
    color: var(--white);
    border-color: var(--red);
    background: rgba(196, 30, 42, 0.12);
}

.footer__copy {
    font-size: 0.75rem;
    color: var(--grey-dark);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    color: var(--white);
    animation: none;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.15s; }
.fade-in:nth-child(6) { transition-delay: 0.25s; }

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .nav__links.open {
        transform: translateX(0);
    }

    .nav__links a {
        font-size: 1.1rem;
    }

    .nav__cta {
        padding: 12px 28px;
    }

    .hero {
        padding: var(--nav-height) 0 40px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 20px;
    }

    .hero__image {
        order: -1;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero__logo-sub {
        justify-content: center;
    }

    .hero__social {
        justify-content: center;
    }

    .prijs-banner {
        padding: 48px 0 0;
    }

    .hero__logo-la {
        font-size: 0.8rem;
    }

    .hero__quote {
        font-size: 1rem;
    }

    .section {
        padding: 64px 0;
    }

    .section__title {
        margin-bottom: 12px;
    }

    .section__title::after {
        margin: 12px auto 40px;
    }

    .over-ons::before,
    .faq::before {
        height: 30px;
        top: -30px;
    }

    .over-ons__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rooster {
        grid-template-columns: 1fr;
    }

    .rooster__item {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .rooster__niveau {
        grid-column: span 2;
        text-align: center;
    }

    .faq__grid {
        grid-template-columns: 1fr;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .prijs-highlight {
        padding: 36px 20px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.92rem;
    }
}

@media (max-width: 480px) {
    .hero__logo-mixtura {
        font-size: 3.5rem;
    }

    .hero__logo-sub {
        font-size: 0.88rem;
        gap: 10px;
    }

    .prijs-highlight__amount {
        font-size: 4rem;
    }

    .rooster__dag {
        padding: 20px;
    }

    .rooster__item {
        padding: 10px 12px;
    }
}
