/* ============================================
   Bollebos - Boomcadeau Landing Page CSS
   ============================================ */

/* Import Google Fonts - Voeg dit toe in WordPress Dashboard > Appearance > Customize > Additional CSS
   OF via functions.php als font enqueue */

:root {
    --forest-900: #0a1f0a;
    --forest-800: #1a3a1a;
    --forest-700: #2d5016;
    --forest-500: #4a7c2c;
    --leaf-400: #6b9b3a;
    --leaf-300: #8bc34a;
    --leaf-200: #a8d08d;
    --cream: #fdfbf7;
    --sand: #f4efe5;
    --warm: #e8d5b7;
}

/* Morphing blob animations */
@keyframes morph {
    0%, 100% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(30px, -30px) rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 30% 70% 53% 47% / 47% 53% 47% 53%;
        transform: translate(-30px, 30px) rotate(180deg) scale(0.95);
    }
    75% {
        border-radius: 70% 30% 40% 60% / 40% 60% 40% 60%;
        transform: translate(-30px, -20px) rotate(270deg) scale(1.05);
    }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.blob {
    position: absolute;
    opacity: 0.08;
    animation: morph 20s ease-in-out infinite;
    will-change: transform, border-radius;
}

/* ============================================
   HERO SECTION
   ============================================ */

.bb-hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--forest-900) 0%, var(--forest-700) 100%);
    overflow: hidden;
}

.bb-hero-left {
    position: relative;
    padding: 140px 80px 100px;
    z-index: 3;
}

.blob-1 {
    width: 700px;
    height: 700px;
    background: rgba(139, 195, 74, 0.1);
    top: -200px;
    right: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: rgba(74, 124, 44, 0.12);
    bottom: -150px;
    left: 10%;
    animation-delay: -7s;
}

.bb-hero-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(3.5rem, 9vw, 7.5rem);
    font-weight: 900;
    line-height: 0.92;
    color: white;
    margin-bottom: 40px;
    letter-spacing: -0.04em;
}

.bb-hero-title .accent {
    display: block;
    background: linear-gradient(135deg, var(--leaf-300) 0%, var(--leaf-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    font-weight: 600;
    margin-top: 15px;
}

.bb-hero-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 50px;
    max-width: 580px;
}

.bb-hero-cta-wrap {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.bb-cta-primary {
    background: white;
    color: var(--forest-900);
    padding: 22px 50px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

.bb-cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--leaf-300), var(--leaf-400));
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.bb-cta-primary:hover::before {
    transform: translateX(0);
}

.bb-cta-primary:hover {
    transform: translateY(-5px) scale(1.02);
    color: white;
}

.bb-cta-secondary {
    background: transparent;
    color: white;
    padding: 22px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.bb-cta-secondary:hover {
    border-color: var(--leaf-300);
    background: rgba(139, 195, 74, 0.1);
}

/* Trust metrics */
.bb-trust-metrics {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.bb-metric {
    position: relative;
}

.bb-metric-number {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--leaf-300);
    display: block;
    line-height: 1;
}

.bb-metric-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 8px;
    font-weight: 600;
}

/* Hero right - Floating card */
.bb-hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 80px;
    background: linear-gradient(135deg, var(--forest-500), var(--leaf-400));
}

.bb-floating-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(30px);
    border-radius: 40px;
    padding: 60px;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    transform: rotate(-3deg);
    box-shadow: 0 30px 90px rgba(0,0,0,0.3);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bb-floating-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.bb-floating-card-icon {
    font-size: 8rem;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
}

.bb-floating-card-icon img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.bb-floating-card-text {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    color: white;
    font-weight: 700;
    line-height: 1.3;
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */

.bb-testimonial-section {
    position: relative;
    padding: 150px 80px;
    background: var(--sand);
}

.bb-quote-mark {
    font-family: 'Fraunces', serif;
    font-size: 12rem;
    color: var(--leaf-300);
    opacity: 0.2;
    line-height: 0.8;
    position: absolute;
    top: -40px;
    left: -30px;
}

.bb-testimonial-text {
    position: relative;
    padding-left: 60px;
}

.bb-testimonial-text blockquote {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    line-height: 1.5;
    color: var(--forest-900);
    font-style: italic;
    margin-bottom: 35px;
}

.bb-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bb-author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--leaf-300), var(--forest-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(74, 124, 44, 0.3);
}

.bb-author-info h4 {
    font-weight: 800;
    color: var(--forest-900);
    font-size: 1.2rem;
    margin: 0 0 5px 0;
}

.bb-author-info p {
    color: #666;
    margin: 0;
}

.bb-stat-box {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transform: rotate(1deg);
    transition: all 0.4s ease;
    margin-bottom: 25px;
}

.bb-stat-box:nth-child(2) {
    transform: rotate(-2deg);
}

.bb-stat-box:hover {
    transform: rotate(0deg) translateY(-8px);
    box-shadow: 0 15px 50px rgba(74, 124, 44, 0.15);
}

.bb-stat-box-number {
    font-family: 'Fraunces', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--forest-700);
    line-height: 1;
}

.bb-stat-box-label {
    font-size: 1.05rem;
    color: #666;
    margin-top: 12px;
    font-weight: 600;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.bb-benefits-section {
    padding: 180px 80px;
    background: var(--cream);
    position: relative;
}

.bb-section-intro {
    max-width: 800px;
    margin-bottom: 100px;
}

.bb-section-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--forest-500);
    font-weight: 800;
    margin-bottom: 20px;
}

.bb-section-heading {
    font-family: 'Fraunces', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--forest-900);
    line-height: 1.05;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.bb-section-subtext {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.7;
}

/* Benefits cards */
.bb-benefit {
    background: white;
    padding: 50px;
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    position: relative;
    margin-bottom: 35px;
}

.bb-benefit::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--leaf-300), var(--forest-500));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.bb-benefit:hover {
    transform: translateY(-15px) rotate(-2deg);
    border-color: var(--leaf-300);
    box-shadow: 0 35px 90px rgba(74, 124, 44, 0.2);
}

.bb-benefit:hover::after {
    opacity: 0.05;
}

.bb-benefit-primary {
    background: linear-gradient(135deg, var(--forest-800), var(--forest-900));
    color: white;
}

.bb-benefit-primary * {
    color: white !important;
}

.bb-benefit-icon {
    font-size: 4.5rem;
    margin-bottom: 30px;
    display: inline-block;
    filter: drop-shadow(0 8px 20px rgba(74, 124, 44, 0.2));
}

.bb-benefit h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.25;
}

.bb-benefit p {
    line-height: 1.75;
    font-size: 1.08rem;
    color: #666;
}

.bb-benefit-primary p {
    color: rgba(255,255,255,0.85) !important;
}

/* ============================================
   TIMELINE SECTION
   ============================================ */

.bb-timeline-section {
    padding: 180px 80px;
    background: linear-gradient(135deg, var(--sand) 0%, var(--warm) 100%);
    position: relative;
    overflow: hidden;
}

.bb-timeline-step {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.bb-step-number {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--leaf-300), var(--forest-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 15px 50px rgba(74, 124, 44, 0.4);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.bb-step-content {
    background: white;
    padding: 60px;
    border-radius: 35px;
    box-shadow: 0 15px 60px rgba(0,0,0,0.08);
    transform: translateX(-30px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex: 1;
}

.bb-timeline-step:hover .bb-step-content {
    transform: translateX(0) translateY(-10px);
    box-shadow: 0 25px 80px rgba(74, 124, 44, 0.15);
}

.bb-step-content h3 {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    color: var(--forest-900);
    margin-bottom: 18px;
    font-weight: 700;
}

.bb-step-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

/* ============================================
   VISION SECTION
   ============================================ */

.bb-vision-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--forest-900) 0%, var(--forest-700) 50%, var(--forest-500) 100%);
    padding: 150px 80px;
    overflow: hidden;
}

.blob-3 {
    width: 800px;
    height: 800px;
    background: rgba(139, 195, 74, 0.08);
    top: -300px;
    right: -200px;
    animation-delay: -12s;
}

.blob-4 {
    width: 600px;
    height: 600px;
    background: rgba(74, 124, 44, 0.1);
    bottom: -200px;
    left: -100px;
    animation-delay: -5s;
}

.bb-vision-content {
    position: relative;
    z-index: 2;
}

.bb-vision-section .bb-section-eyebrow {
    color: var(--leaf-300);
}

.bb-vision-section .bb-section-heading {
    color: white;
    margin-bottom: 60px;
}

.bb-vision-story {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 70px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.15);
}

.bb-vision-story p {
    font-size: 1.4rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.bb-vision-story p:last-child {
    font-weight: 700;
    color: var(--leaf-300);
    font-size: 1.5rem;
    margin-bottom: 0;
}

/* ============================================
   CTA EXPLOSION SECTION
   ============================================ */

.bb-cta-explosion {
    background: var(--leaf-300);
    padding: 150px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bb-cta-explosion::before {
    content: '';
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, var(--leaf-400) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

.bb-cta-explosion-content {
    position: relative;
    z-index: 2;
}

.bb-cta-explosion h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: var(--forest-900);
    margin-bottom: 35px;
    font-weight: 900;
    line-height: 1;
}

.bb-cta-explosion p {
    font-size: 1.4rem;
    color: var(--forest-800);
    margin-bottom: 60px;
    line-height: 1.7;
}

.bb-cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.bb-cta-explosion .bb-cta-primary {
    background: var(--forest-900);
    color: white;
}

.bb-cta-explosion .bb-cta-secondary {
    border-color: var(--forest-900);
    color: var(--forest-900);
}

.bb-cta-explosion .bb-cta-secondary:hover {
    background: var(--forest-900);
    color: white;
}

/* ============================================
   GIFT/LOCATION SECTION
   ============================================ */

.bb-gift-section {
    padding: 180px 80px;
    background: var(--cream);
}

.bb-gift-visual {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--forest-500), var(--leaf-300));
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12rem;
    box-shadow: 0 40px 120px rgba(74, 124, 44, 0.3);
    transform: rotate(-4deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bb-gift-visual:hover {
    transform: rotate(0deg) scale(1.05);
}

.bb-gift-list {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.bb-gift-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.bb-gift-item-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--leaf-300), var(--forest-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(74, 124, 44, 0.25);
}

.bb-gift-item-text h4 {
    font-weight: 800;
    color: var(--forest-900);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.bb-gift-item-text p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.bb-faq-section {
    padding: 180px 80px;
    background: var(--sand);
}

.bb-faq-card {
    background: white;
    padding: 45px;
    border-radius: 30px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    margin-bottom: 25px;
}

.bb-faq-card:hover {
    border-color: var(--leaf-300);
    box-shadow: 0 15px 50px rgba(74, 124, 44, 0.12);
    transform: translateY(-5px);
}

.bb-faq-card h3 {
    font-weight: 700;
    color: var(--forest-900);
    margin-bottom: 15px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bb-faq-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.08rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .bb-hero-left,
    .bb-hero-right,
    .bb-testimonial-section,
    .bb-benefits-section,
    .bb-timeline-section,
    .bb-vision-section,
    .bb-cta-explosion,
    .bb-gift-section,
    .bb-faq-section {
        padding: 100px 40px 80px;
    }

    .bb-timeline-step {
        flex-direction: column;
        gap: 30px;
    }

    .bb-step-number {
        margin: 0 auto;
    }

    .bb-hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .bb-section-heading {
        font-size: clamp(2rem, 5vw, 3rem);
    }
}

@media (max-width: 768px) {
    .bb-hero-cta-wrap,
    .bb-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .bb-trust-metrics {
        gap: 30px;
    }

    .bb-floating-card {
        padding: 40px;
    }

    .bb-floating-card-icon {
        font-size: 5rem;
    }

    .bb-benefit {
        padding: 35px;
    }

    .bb-step-content {
        padding: 40px;
    }

    .bb-vision-story {
        padding: 40px;
    }
}
