/* ==========================================================================
   Hero Section — Yellow background, bottle + large text
   ========================================================================== */
.watje-hero {
    background: var(--w-yellow);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--w-space-4xl) 0 var(--w-space-3xl);
    overflow: hidden;
    position: relative;
}

.watje-hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--w-space-lg);
    width: 100%;
}

.watje-hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--w-space-2xl);
    align-items: center;
    min-height: 70vh;
}

/* Bottle */
.watje-hero__bottle {
    display: flex;
    justify-content: center;
    align-items: center;
}

.watje-hero__bottle-img {
    max-height: 500px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(31, 28, 0, 0.2));
    transform: rotate(-8deg);
    animation: heroFloat 6s ease-in-out infinite;
}

.watje-hero__bottle-placeholder {
    width: 200px;
    height: 400px;
    background: var(--w-yellow-dark);
    border-radius: var(--w-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--w-font-headline);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--w-yellow);
    transform: rotate(-5deg);
}

@keyframes heroFloat {
    0%, 100% { transform: rotate(-8deg) translateY(0); }
    50% { transform: rotate(-8deg) translateY(-15px); }
}

/* Text side */
.watje-hero__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--w-space-xl);
}

.watje-hero__heading {
    color: var(--w-black);
    /* Overlap effect — text bleeds beyond its container */
    margin-left: -20px;
}

.watje-hero__btn {
    font-size: 1rem;
}

/* Mobile */
@media (max-width: 767px) {
    .watje-hero {
        min-height: auto;
        padding: 120px 0 var(--w-space-3xl);
    }

    .watje-hero__content {
        grid-template-columns: 1fr;
        gap: var(--w-space-xl);
        min-height: auto;
        text-align: center;
    }

    .watje-hero__bottle {
        order: -1;
    }

    .watje-hero__bottle-img {
        max-height: 300px;
    }

    .watje-hero__bottle-placeholder {
        width: 140px;
        height: 280px;
    }

    .watje-hero__text {
        align-items: center;
    }

    .watje-hero__heading {
        margin-left: 0;
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
}
