/* ============================================
   HERO SECTION
   ============================================ */
.bp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bp-gradient-sky);
    padding: 100px 20px 100px;
    padding-top: calc(80px + 60px); /* Header height + extra space */
    overflow: hidden;
}

/* Admin bar varken */
body.admin-bar .bp-hero {
    padding-top: calc(80px + 32px + 60px);
}

@media screen and (max-width: 782px) {
    body.admin-bar .bp-hero {
        padding-top: calc(70px + 46px + 40px);
    }
}

.bp-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.bp-cloud {
    position: absolute;
    font-size: 80px;
    opacity: 0.6;
    animation: bp-cloud-move 30s linear infinite;
}

.bp-cloud-1 { top: 10%; animation-duration: 35s; }
.bp-cloud-2 { top: 25%; animation-delay: 10s; animation-duration: 40s; }
.bp-cloud-3 { top: 45%; animation-delay: 20s; animation-duration: 45s; }

.bp-balloon {
    position: absolute;
    font-size: 60px;
    animation: bp-float 4s ease-in-out infinite;
}

.bp-balloon-1 { top: 15%; right: 8%; }
.bp-balloon-2 { top: 25%; right: 15%; animation-delay: 0.5s; }
.bp-balloon-3 { top: 35%; right: 5%; animation-delay: 1s; }
.bp-balloon-4 { top: 20%; left: 8%; animation-delay: 1.5s; }
.bp-balloon-5 { top: 40%; left: 12%; animation-delay: 2s; }

.bp-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.bp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bp-white);
    padding: 14px 28px;
    border-radius: var(--bp-radius-full);
    font-family: var(--bp-font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--bp-primary);
    box-shadow: var(--bp-shadow-md);
    margin-bottom: 30px;
    animation: bp-bounce 2s ease-in-out infinite;
}

.bp-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--bp-dark);
}

.bp-hero-title .bp-highlight {
    background: var(--bp-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bp-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--bp-text);
    max-width: 650px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.bp-hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.bp-stat {
    text-align: center;
}

.bp-stat-number {
    display: block;
    font-family: var(--bp-font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--bp-primary);
    line-height: 1;
}

.bp-stat-label {
    display: block;
    font-size: 14px;
    color: var(--bp-text);
    margin-top: 5px;
}

.bp-stat-divider {
    font-size: 24px;
    color: var(--bp-accent);
    align-self: center;
}

.bp-hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.bp-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
}

.bp-hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ============================================
   QUICK NAVIGATION
   ============================================ */
.bp-quick-nav {
    padding: 80px 0;
    margin-top: -60px;
    position: relative;
    z-index: 20;
    background: var(--bp-white);
}

.bp-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.bp-quick-card {
    background: var(--bp-white);
    padding: 35px 25px;
    border-radius: var(--bp-radius-lg);
    text-align: center;
    box-shadow: var(--bp-shadow-md);
    transition: var(--bp-transition);
    text-decoration: none;
    border: 2px solid transparent;
}

.bp-quick-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--bp-shadow-lg);
    border-color: var(--bp-primary);
}

.bp-quick-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 18px;
}

.bp-quick-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--bp-dark);
}

.bp-quick-card p {
    font-size: 0.95rem;
    color: var(--bp-text);
    margin: 0;
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.bp-events {
    padding: 100px 0;
    background: var(--bp-light);
}

.bp-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.bp-services {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-purple) 100%);
    position: relative;
    overflow: hidden;
}

.bp-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 5;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.bp-gallery {
    padding: 100px 0;
    background: var(--bp-light);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.bp-testimonials {
    padding: 100px 0;
    background: var(--bp-white);
}

.bp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.bp-cta {
    padding: 100px 0;
    background: var(--bp-gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bp-cta-content {
    position: relative;
    z-index: 5;
}

.bp-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--bp-white);
    margin-bottom: 15px;
}

.bp-cta-content > p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.bp-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.bp-cta-contact {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.bp-cta-contact a {
    color: var(--bp-white);
    font-size: 1.15rem;
    opacity: 0.9;
    transition: var(--bp-transition);
}

.bp-cta-contact a:hover {
    opacity: 1;
    color: var(--bp-white);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.bp-newsletter {
    padding: 80px 0;
    background: var(--bp-light);
}

/* ============================================
   RESPONSIVE - FRONT PAGE
   ============================================ */
@media (max-width: 992px) {
    .bp-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bp-hero {
        min-height: auto;
        padding: 100px 20px 80px;
    }
    
    .bp-hero-stats {
        gap: 30px;
    }
    
    .bp-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .bp-hero-buttons .bp-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .bp-quick-grid {
        gap: 15px;
    }
    
    .bp-quick-card {
        padding: 25px 15px;
    }
    
    .bp-quick-icon {
        font-size: 2.5rem;
    }
    
    .bp-quick-card h3 {
        font-size: 1rem;
    }
    
    .bp-quick-card p {
        display: none;
    }
    
    .bp-events-grid {
        grid-template-columns: 1fr;
    }
    
    .bp-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .bp-cta-contact {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .bp-hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .bp-stat-divider {
        display: none;
    }
}
