/* ===========================
   General Styles
   =========================== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ===========================
   Header & Navigation
   =========================== */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #2c5aa0 !important;
}

.brand-text {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a7cc7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    color: #555 !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2c5aa0 !important;
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a7cc7 50%, #6b8dd6 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section .lead {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-light:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.hero-buttons .btn-outline-light {
    border: 2px solid white;
}

.hero-buttons .btn-outline-light:hover {
    background-color: white;
    color: #2c5aa0;
    transform: translateY(-2px);
}

/* ===========================
   Section Styling
   =========================== */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c5aa0;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0 0%, #4a7cc7 100%);
    border-radius: 2px;
}

/* ===========================
   Cards
   =========================== */
.card {
    border: none;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15) !important;
}

.location-card {
    border-top: 4px solid #2c5aa0;
}

.location-card h3 {
    color: #2c5aa0;
    font-weight: bold;
}

.event-card {
    border-left: 4px solid #4a7cc7;
}

.event-date .badge {
    font-size: 0.9rem;
    padding: 8px 12px;
}

.video-card:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.2) !important;
}

/* ===========================
   Buttons
   =========================== */
.btn-primary {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a7cc7 100%);
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e3f73 0%, #2c5aa0 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-outline-primary {
    border: 2px solid #2c5aa0;
    color: #2c5aa0;
    padding: 10px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #2c5aa0;
    color: white;
    transform: translateY(-2px);
}

/* ===========================
   About Section
   =========================== */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
}

.about-section .lead {
    font-size: 1.2rem;
    color: #555;
}

/* ===========================
   Support Section
   =========================== */
.support-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a7cc7 100%);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ===========================
   Footer
   =========================== */
.site-footer {
    background-color: #1a1a2e;
    margin-top: 60px;
}

.site-footer p {
    margin-bottom: 0.5rem;
    color: #e9ecef;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* ===========================
   Utilities
   =========================== */
.shadow-sm {
    box-shadow: 0 2px 4px rgba(0,0,0,0.08) !important;
}

.list-group-item {
    transition: all 0.3s ease;
}

.list-group-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}
