/* ============================================
   SECTION HEADERS
   ============================================ */
.bp-section {
    padding: var(--bp-space-xl) 0;
}

.bp-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.bp-section-header.bp-light h2,
.bp-section-header.bp-light p {
    color: var(--bp-white);
}

.bp-section-badge {
    display: inline-block;
    background: var(--bp-accent);
    padding: 10px 22px;
    border-radius: var(--bp-radius-full);
    font-family: var(--bp-font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--bp-dark);
    margin-bottom: 18px;
}

.bp-section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.bp-section-header p {
    font-size: 1.15rem;
    color: var(--bp-text);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   CARDS
   ============================================ */
.bp-card {
    background: var(--bp-white);
    border-radius: var(--bp-radius-lg);
    box-shadow: var(--bp-shadow-md);
    transition: var(--bp-transition);
    overflow: hidden;
}

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

/* ============================================
   EVENT CARDS
   ============================================ */
.bp-event-card {
    position: relative;
    background: var(--bp-white);
    border-radius: var(--bp-radius-lg);
    overflow: hidden;
    box-shadow: var(--bp-shadow-md);
    transition: var(--bp-transition);
}

.bp-event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--bp-shadow-lg);
}

.bp-event-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--bp-primary);
    color: var(--bp-white);
    padding: 12px 18px;
    border-radius: var(--bp-radius-md);
    text-align: center;
    z-index: 5;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
}

.bp-event-day {
    display: block;
    font-family: var(--bp-font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.bp-event-month {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bp-event-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.bp-event-content {
    padding: 25px;
}

.bp-event-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.bp-event-content h3 a {
    color: var(--bp-dark);
}

.bp-event-content h3 a:hover {
    color: var(--bp-primary);
}

.bp-event-meta {
    font-size: 0.95rem;
    color: var(--bp-text);
    margin-bottom: 12px;
}

.bp-event-desc {
    font-size: 0.95rem;
    color: var(--bp-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.bp-event-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--bp-light);
}

.bp-event-price {
    font-family: var(--bp-font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--bp-primary);
}

.bp-event-price.bp-free {
    color: var(--bp-green);
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.bp-service-card {
    position: relative;
    background: var(--bp-white);
    padding: 40px 30px;
    border-radius: var(--bp-radius-lg);
    text-align: center;
    box-shadow: var(--bp-shadow-md);
    transition: var(--bp-transition);
}

.bp-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--bp-shadow-lg);
}

.bp-service-card.bp-featured {
    border: 3px solid var(--bp-accent);
}

.bp-featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bp-accent);
    padding: 8px 20px;
    border-radius: var(--bp-radius-full);
    font-family: var(--bp-font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bp-dark);
    white-space: nowrap;
}

.bp-service-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
}

.bp-service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.bp-service-card > p {
    color: var(--bp-text);
    margin-bottom: 25px;
    line-height: 1.6;
}

.bp-service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.bp-service-features li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    color: var(--bp-text);
    font-size: 0.95rem;
}

.bp-service-features li:last-child {
    border-bottom: none;
}

/* ============================================
   GALLERY
   ============================================ */
.bp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
}

.bp-gallery-item {
    position: relative;
    border-radius: var(--bp-radius-lg);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--bp-transition);
}

.bp-gallery-item:hover {
    transform: scale(1.03);
}

.bp-gallery-item.bp-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bp-gallery-icon {
    font-size: 4rem;
    opacity: 0.9;
}

.bp-gallery-item.bp-large .bp-gallery-icon {
    font-size: 6rem;
}

.bp-gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--bp-white);
    transform: translateY(100%);
    transition: var(--bp-transition);
}

.bp-gallery-item:hover .bp-gallery-info {
    transform: translateY(0);
}

.bp-gallery-info strong {
    display: block;
    font-family: var(--bp-font-heading);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.bp-gallery-info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.bp-testimonial-card {
    background: var(--bp-white);
    padding: 40px;
    border-radius: var(--bp-radius-lg);
    box-shadow: var(--bp-shadow-md);
    text-align: center;
    transition: var(--bp-transition);
}

.bp-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--bp-shadow-lg);
}

.bp-testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #FFD700;
}

.bp-testimonial-text {
    font-size: 1.1rem;
    color: var(--bp-text);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
}

.bp-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.bp-author-avatar {
    font-size: 3rem;
}

.bp-author-info {
    text-align: left;
}

.bp-author-info strong {
    display: block;
    font-family: var(--bp-font-heading);
    color: var(--bp-dark);
}

.bp-author-info span {
    font-size: 0.9rem;
    color: var(--bp-text);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.bp-newsletter-box {
    background: var(--bp-white);
    padding: 50px;
    border-radius: var(--bp-radius-lg);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--bp-shadow-lg);
}

.bp-newsletter-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.bp-newsletter-box h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.bp-newsletter-box > p {
    color: var(--bp-text);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.bp-newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.bp-newsletter-form input[type="email"] {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid var(--bp-light);
    border-radius: var(--bp-radius-full);
    font-size: 16px;
    font-family: var(--bp-font-body);
    transition: var(--bp-transition);
}

.bp-newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--bp-primary);
}

/* ============================================
   RESPONSIVE COMPONENTS
   ============================================ */
@media (max-width: 1200px) {
    .bp-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .bp-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bp-gallery-item.bp-large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .bp-section {
        padding: var(--bp-space-lg) 0;
    }
    
    .bp-newsletter-form {
        flex-direction: column;
    }
    
    .bp-newsletter-box {
        padding: 35px 25px;
    }
    
    .bp-gallery-info {
        transform: translateY(0);
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .bp-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.bp-breadcrumbs {
    background: #f8f9fa;
    padding: 12px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid #eee;
}
.bp-breadcrumbs a {
    color: #FF6B6B;
    text-decoration: none;
}
.bp-breadcrumbs a:hover { text-decoration: underline; }
.bp-bc-sep { color: #ccc; margin: 0 4px; }
.bp-bc-current { color: #666; font-weight: 600; }

/* ============================================
   SECTION MORE (View All button)
   ============================================ */
.bp-section-more {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   NO EVENTS PLACEHOLDER
   ============================================ */
.bp-no-events {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 16px;
}
.bp-no-events p { font-size: 1.2rem; color: #666; }

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.bp-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9990;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}
.bp-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}
.bp-whatsapp-float svg {
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

/* Animation pulse */
@keyframes bp-wa-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}
.bp-whatsapp-float { animation: bp-wa-pulse 3s infinite; }
.bp-whatsapp-float:hover { animation: none; }

/* ============================================
   COOKIE CONSENT BANNER (DSGVO)
   ============================================ */
.bp-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9995;
    background: #fff;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.12);
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.bp-cookie-banner.active { transform: translateY(0); }

.bp-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.bp-cookie-text {
    flex: 1;
    min-width: 200px;
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}
.bp-cookie-text a { color: #FF6B6B; font-weight: 600; margin-left: 4px; }

.bp-cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .bp-cookie-inner {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
    }
    .bp-cookie-actions { width: 100%; justify-content: center; }
    .bp-whatsapp-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
}

/* ============================================
   GALLERY OVERLAY (Homepage)
   ============================================ */
.bp-gallery-item[data-full] { cursor: pointer; }
.bp-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: inherit;
}
.bp-gallery-item:hover .bp-gallery-overlay { opacity: 1; }
.bp-gallery-zoom {
    font-size: 2rem;
    filter: grayscale(1) brightness(10);
}

/* ============================================
   PAGE HERO (common for inner pages)
   ============================================ */
.bp-page-hero {
    padding: 150px 0 80px;
    text-align: center;
    color: #fff;
}
.bp-page-hero h1 {
    font-family: 'Baloo 2', cursive;
    font-size: 2.8rem;
    margin-bottom: 10px;
}
.bp-page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .bp-page-hero { padding: 120px 0 60px; }
    .bp-page-hero h1 { font-size: 2rem; }
}
