﻿:root {
    --bf-success: #10b981;
    --bf-primary: #3b82f6;
    --bf-muted: #94a3b8;
    --bf-text-main: #1e293b;
    --bf-card-bg: rgba(255, 255, 255, 0.9);
}

body {
    background-color: #f8fafc;
    color: var(--bf-text-main);
    font-family: 'Inter', sans-serif;
}

/* --- HERO & FLOATING BADGE --- */
.hero-container {
    padding: 15px;
    background: #fff;
    position: relative;
}

.hero-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.completed-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(16, 185, 129, 0.95);
    backdrop-filter: blur(8px);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    z-index: 10;
}

/* --- CARDS & TIMELINE --- */
.card-glass {
    background: var(--bf-card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 24px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.timeline {
    border-left: 2px dashed #e2e8f0;
    margin-left: 10px;
}

.timeline-item {
    padding-left: 30px;
    position: relative;
}

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -7px;
        top: 4px;
        width: 12px;
        height: 12px;
        border: 3px solid #fff;
        border-radius: 50%;
        z-index: 2;
    }

.dot-upcoming::before {
    background: var(--bf-primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.dot-closed::before {
    background: var(--bf-muted);
}

/* --- MEDIA & LOCATION --- */
.media-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
}

.media-thumb-lg {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.event-thumb {
    width: 85px;
    height: 65px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    flex-shrink: 0;
}

.location-card {
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 18px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

    .location-card:hover {
        background: #dbeafe;
    }

/* --- UTILS --- */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.ev-badge {
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
}

.ev-upcoming {
    background: #dbeafe;
    color: #1e40af;
}

.ev-closed {
    background: #f1f5f9;
    color: #475569;
}
/* Restrict hero height on large screens */
.hero-container {
    max-width: 1000px; /* Optional: centers the content on ultra-wide screens */
    margin: 0 auto;
    padding: 15px;
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    max-height: 450px; /* Prevents the image from being too huge */
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-img {
    width: 100%;
    height: 450px; /* Match wrapper max-height */
    object-fit: cover;
}

/* Premium Completed UI Overlay */
.completed-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(16, 185, 129, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    pointer-events: none;
    z-index: 5;
}

.premium-completed-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    color: #065f46;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    animation: slideUpFade 0.8s ease-out;
}

@@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Premium Floating Donate Bar */
.donate-float-bar {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 12px 20px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1100;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.5);
    animation: slideUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-donate-glow {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: 0.3s;
}

    .btn-donate-glow:hover {
        transform: scale(1.05);
        color: white;
        box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
    }

@@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* Fancy Header Styling */
.section-overline {
    display: block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #3b82f6; /* Primary blue */
    margin-bottom: 4px;
}

.fancy-title {
    font-size: 1.5rem;
    font-weight: 850;
    letter-spacing: -0.8px;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 8px;
}

.fancy-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 400;
    max-width: 90%;
}

/* Accent highlight for specific words */
.text-gradient-gold {
    background: linear-gradient(135deg, #b45309, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

/* Fancy Icon pulse */
.heart-pulse {
    display: inline-block;
    animation: pulse 2s infinite;
}

@@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Premium Large Navigation Buttons */
.gallery-nav-btn {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    z-index: 1050;
    outline: none;
}

    /* Icon sizing inside the button */
    .gallery-nav-btn i {
        font-size: 2rem; /* Much larger icon */
        stroke-width: 2.5; /* Bolder icon lines */
    }

    /* Hover effect: Glow and Scale */
    .gallery-nav-btn:hover {
        background: #6366f1; /* Your primary fancy color */
        border-color: #818cf8;
        transform: scale(1.15);
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
        color: white;
    }

/* Extra large clickable area for mobile/tablets */
.nav-hitbox {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px; /* 100px wide invisible zone */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    border: none;
}

.nav-hitbox-left {
    left: 0;
}

.nav-hitbox-right {
    right: 0;
}
