*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #050508;
    color: #f5e5c9;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero {
    position: relative;
    padding: 2.5rem 1.5rem 2.25rem;
    background: radial-gradient(circle at top left, #302447 0, #050508 52%, #000 100%);
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    inset: -40%;
    background-image:
        radial-gradient(circle at 15% -5%, rgba(255, 220, 120, 0.2) 0, transparent 50%),
        radial-gradient(circle at 80% 10%, rgba(0, 200, 140, 0.25) 0, transparent 60%),
        radial-gradient(circle at 0% 100%, rgba(255, 64, 129, 0.18) 0, transparent 60%);
    opacity: 0.9;
    pointer-events: none;
}

/* Confetti for party look */
.confetti {
    position: absolute;
    width: 220px;
    height: 220px;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.9) 0, transparent 45%),
        radial-gradient(circle, rgba(255,235,59,0.9) 0, transparent 40%),
        radial-gradient(circle, rgba(3, 218, 198,0.9) 0, transparent 40%),
        radial-gradient(circle, rgba(244, 143, 177,0.9) 0, transparent 40%);
    background-size: 6px 6px;
    mix-blend-mode: screen;
    opacity: 0.18;
    pointer-events: none;
}

.confetti-1 { top: -40px; left: -40px; animation: float 14s linear infinite; }
.confetti-2 { top: -60px; right: -30px; animation: float 18s linear infinite reverse; }
.confetti-3 { bottom: -60px; left: 20%; animation: float 20s linear infinite; }

@keyframes float {
    0%   { transform: translate3d(0,0,0) rotate(0deg); }
    50%  { transform: translate3d(10px,25px,0) rotate(80deg); }
    100% { transform: translate3d(-10px,0,0) rotate(160deg); }
}

/* Ballonnen in de hero */
.balloons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.balloon {
    position: absolute;
    width: 32px;
    height: 48px;
    border-radius: 50% 50% 45% 45%;
    background: radial-gradient(circle at 30% 20%, #ffffff 0%, #ffb347 35%, #ff8a00 100%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    animation: float-up 16s linear infinite;
    opacity: 0.8;
}

.balloon::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 50%;
    width: 1px;
    height: 30px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.6);
}

/* Varianten ballonnen */
.b1 { left: 12%; bottom: -80px; animation-delay: 0s; }
.b2 { left: 50%; bottom: -100px; background: radial-gradient(circle at 30% 20%, #ffffff 0%, #25d366 35%, #128c7e 100%); animation-delay: 5s; }
.b3 { left: 78%; bottom: -90px; background: radial-gradient(circle at 30% 20%, #ffffff 0%, #ff6fb1 35%, #e91e63 100%); animation-delay: 10s; }

@keyframes float-up {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    15%  { opacity: 1; }
    50%  { transform: translateY(-40vh) translateX(-8px); }
    100% { transform: translateY(-80vh) translateX(6px); opacity: 0; }
}

.hero-inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    z-index: 1;
}

.hero-left {
    text-align: center;
}

.logo {
    max-width: 260px;
    width: 75%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85);
    margin: 0 auto 1.5rem;
    display: block;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
    font-weight: 800;
}

.subtitle {
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f4d27b;
    margin-bottom: 0.75rem;
}

.delivery {
    font-size: 1.05rem;
    margin-bottom: 1.7rem;
}

.delivery span {
    font-weight: 700;
    color: #ffdd7c;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 1.8rem;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.9rem;
    padding: 1rem 1.3rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 0.98rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.75);
}

.circle-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.circle-whatsapp {
    background: radial-gradient(circle at 30% 0, #e0ffe9 0, #25d366 60%, #128c7e 100%);
}

.circle-call {
    background: radial-gradient(circle at 30% 0, #fff3d1 0, #ffb347 60%, #f57c00 100%);
}

.circle-icon .emoji {
    font-size: 1.4rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-text small {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: 0.04em;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #00b894);
    color: #02110a;
}

.btn-call {
    background: linear-gradient(135deg, #ffcc66, #ff9f43);
    color: #301804;
}

.btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.8);
}

.social-card {
    margin: 0 auto;
    max-width: 380px;
    padding: 0.95rem 1.1rem;
    border-radius: 18px;
    background: rgba(7, 7, 10, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
}

.social-row {
    display: flex;
    align-items: center;
    justify-content: space-between; /* icoon links, tekst rechts */
    gap: 0.65rem;
    margin-bottom: 0.55rem;
}

.social-row:last-child {
    margin-bottom: 0;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.social-icon.whatsapp {
    background: rgba(37, 211, 102, 0.16);
}

.social-icon.snap {
    background: rgba(255, 235, 59, 0.26);
}

/* telefoonregel op één lijn, rechts */
.social-text {
    white-space: nowrap;
    text-align: right;
}

.social-text span {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    opacity: 0.7;
}

.social-text strong {
    font-size: 0.98rem;
}

.social-text span,
.social-text strong {
    display: inline-block;
    margin-left: 6px;
}

/* Right side with rotating bottle */

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.bottle-orbit {
    position: relative;
    width: 210px;
    height: 210px;
    border-radius: 30px;
    background: radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.12) 0, transparent 55%);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: orbit 10s linear infinite;
}

.bottle-img {
    max-height: 180px;
    width: auto;
    display: block;
    animation: wobble 1.6s ease-in-out infinite;
}

.hero-note {
    font-size: 0.85rem;
    text-align: center;
    max-width: 260px;
    opacity: 0.88;
}

.hero-note strong {
    color: #ffdd7c;
}

/* Animations for bottle */

@keyframes orbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes wobble {
    0%, 100% { transform: translateY(0) rotate(-4deg); }
    50%      { transform: translateY(-6px) rotate(4deg); }
}

/* Info section */

.info {
    flex: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 2.3rem 1.5rem 2.4rem;
}

.info-block {
    background: rgba(8, 8, 12, 0.96);
    padding: 1.6rem 1.4rem;
    border-radius: 18px;
    margin-bottom: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.8);
}

.info-block h2 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #ffdd7c;
}

.info-block p,
.info-block ol {
    font-size: 0.96rem;
    line-height: 1.7;
}

.info-block ol {
    padding-left: 1.2rem;
}

.info-block li {
    margin-bottom: 0.4rem;
}

.info-note {
    margin-top: 0.6rem;
    font-size: 0.84rem;
    opacity: 0.85;
}

.info-block.highlight {
    border-color: rgba(255, 204, 102, 0.55);
    background: radial-gradient(circle at top left, rgba(255, 204, 102, 0.12), rgba(8, 8, 12, 0.99));
}

/* Footer */

.footer {
    padding: 1.1rem 1.2rem 2.2rem;
    font-size: 0.8rem;
    text-align: center;
    color: #a1967a;
    background: radial-gradient(circle at top, #07080b, #020203);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Larger screens */

@media (min-width: 860px) {
    .hero {
        padding: 3rem 2.3rem 2.6rem;
    }

    .hero-inner {
        flex-direction: row;
        align-items: center;
        gap: 3.2rem;
    }

    .hero-left {
        flex: 1.2;
        text-align: left;
    }

    .hero-right {
        flex: 0.9;
    }

    .cta-group {
        flex-direction: row;
    }

    .btn {
        justify-content: flex-start;
        min-width: 260px;
    }

    .social-card {
        margin: 0;
    }

    .hero-note {
        text-align: left;
    }
}
