/* =====================================================
   GTA UTAH CHAPTER - Main Stylesheet
   ===================================================== */

/* Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary: #8B1538;
    --primary-dark: #6B1029;
    --primary-light: rgba(139, 21, 56, 0.1);
    
    /* Accent Colors */
    --gold: #C9A227;
    --gold-light: #E8D59A;
    --gold-dark: #B8922A;
    
    /* Text Colors */
    --text-dark: #2D2926;
    --text-medium: #5C5552;
    --text-light: #888888;
    
    /* Background Colors */
    --bg-cream: #FDF6EE;
    --bg-warm: #F9F3EB;
    --bg-gradient: linear-gradient(135deg, #FDF6EE 0%, #F5E6D3 100%);
    --white: #FFFFFF;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --spacing-2xl: 80px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --max-width: 1200px;
    --nav-height: 100px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 16px 40px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-outline:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Support/Donate Gold Outline Button */
.btn-support {
    background: linear-gradient(135deg, var(--gold) 0%, #d4a82a 100%);
    color: var(--text-dark);
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
    animation: subtlePulse 3s ease-in-out infinite;
}

.btn-support:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.5);
    background: linear-gradient(135deg, #d4a82a 0%, #e0b52e 100%);
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(201, 162, 39, 0.5);
    }
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary-dark);
    border-color: var(--gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

/* =====================================================
   ANNOUNCEMENT BAR
   ===================================================== */
.announcement-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 14px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(139, 21, 56, 0.3);
    display: none;
}

.announcement-bar.active {
    display: block;
}

.announcement-bar p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.announcement-bar .org-name {
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.announcement-bar .org-telugu {
    font-size: 1.1rem;
    color: var(--gold-light);
    font-weight: 500;
}

.announcement-bar .org-chapter {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.announcement-bar a {
    color: var(--gold-light);
    text-decoration: underline;
    font-weight: 600;
}

.announcement-bar a:hover {
    color: var(--white);
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
.header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
    background-color: rgba(253, 246, 238, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header.header-solid {
    background-color: var(--bg-cream);
}

.announcement-bar.active ~ .header {
    top: 50px;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--spacing-xl);
    max-width: 1600px;
    margin: 0 auto;
    gap: var(--spacing-lg);
    position: relative;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 200px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-left,
.nav-right {
    flex: 1;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.nav-links a {
    color: #1a1714;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(253, 246, 238, 0.8);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Donate Button in Nav */
.nav-donate {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-donate .btn-donate {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, #d4a82a 100%);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
    animation: subtlePulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.nav-donate .btn-donate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.nav-donate .btn-donate:hover::before {
    left: 100%;
}

.nav-donate .btn-donate:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.5);
    background: linear-gradient(135deg, #d4a82a 0%, #e0b52e 100%);
}

.nav-donate .btn-donate:active {
    transform: translateY(-1px) scale(0.98);
}

.nav-donate .btn-donate svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.nav-donate .btn-donate:hover svg {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    background-color: var(--bg-cream);
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 260px 80px 80px;
    position: relative;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slideshow .slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 70% 60% at 50% 40%, 
            rgba(253, 246, 238, 0.92) 0%, 
            rgba(253, 246, 238, 0.7) 50%,
            rgba(253, 246, 238, 0.3) 80%,
            transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
    text-shadow: 0 2px 4px rgba(253, 246, 238, 1), 0 0 20px rgba(253, 246, 238, 0.9), 0 0 40px rgba(253, 246, 238, 0.8);
}

.hero-content h1 span {
    font-style: italic;
    color: var(--primary);
}

.hero-content .description {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 
        0 0 20px rgba(253, 246, 238, 1),
        0 0 40px rgba(253, 246, 238, 1),
        0 0 60px rgba(253, 246, 238, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.slide-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slide-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-indicators .indicator.active,
.slide-indicators .indicator:hover {
    background: var(--primary);
}

/* Hero Side Panels */
.hero-side-panel {
    position: absolute;
    top: 100px;
    bottom: 100px;
    width: 240px;
    z-index: 5;
    display: flex;
    align-items: stretch;
}

.hero-side-panel.left {
    left: 15px;
}

.hero-side-panel.right {
    right: 15px;
}

.side-panel-content {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(253, 246, 238, 0.98) 100%);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-lg);
    padding: 25px 20px;
    box-shadow: 
        0 10px 40px rgba(139, 21, 56, 0.1),
        0 0 0 1px rgba(139, 21, 56, 0.08);
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: fit-content;
    margin: auto 0;
}

.side-panel-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
}

.side-panel-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--primary-light);
    position: relative;
}

.side-panel-content h4::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold);
}

/* Sponsor Mini Cards */
.sponsors-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sponsor-mini {
    text-align: center;
}

.sponsor-mini .tier-badge {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
}

.sponsor-mini.platinum .tier-badge {
    background: linear-gradient(135deg, #E5E4E2 0%, #C0C0C0 50%, #E5E4E2 100%);
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sponsor-mini.gold .tier-badge {
    background: linear-gradient(135deg, var(--gold) 0%, #F5D060 50%, var(--gold) 100%);
    color: #5a4000;
    box-shadow: 0 2px 8px rgba(201, 162, 39, 0.3);
}

.sponsor-mini .sponsor-placeholder {
    min-height: 45px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, rgba(139, 21, 56, 0.05) 100%);
    border: 2px dashed rgba(139, 21, 56, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.sponsor-mini .sponsor-placeholder:hover {
    border-color: var(--primary);
    background: rgba(139, 21, 56, 0.08);
    color: var(--primary);
}

.sponsor-mini.platinum .sponsor-placeholder {
    min-height: 55px;
    font-size: 0.85rem;
}

/* News Mini Items */
.news-list-mini {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: rgba(139, 21, 56, 0.03);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.news-mini:hover {
    background: rgba(139, 21, 56, 0.08);
}

.news-date-box {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold) 0%, #D4AF37 100%);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(201, 162, 39, 0.3);
}

.news-date-box .day {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.news-date-box .month {
    font-family: var(--font-primary);
    font-size: 0.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.news-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.news-info h5 {
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 1px 0;
    line-height: 1.2;
}

.news-info p {
    font-family: var(--font-primary);
    font-size: 0.6rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.3;
}

.panel-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-decoration: none;
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.panel-link:hover {
    background: linear-gradient(135deg, var(--gold) 0%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 21, 56, 0.2);
}

/* Hide side panels on smaller screens */
@media (max-width: 1500px) {
    .hero-side-panel {
        width: 200px;
    }
    
    .side-panel-content {
        padding: 20px 15px;
    }
    
    .news-info h5 {
        font-size: 0.65rem;
    }
    
    .news-info p {
        font-size: 0.55rem;
    }
    
    .news-date-box {
        width: 38px;
        height: 38px;
    }
    
    .news-date-box .day {
        font-size: 0.9rem;
    }
}

@media (max-width: 1300px) {
    .hero-side-panel {
        width: 180px;
        top: 120px;
        bottom: 120px;
    }
    
    .sponsor-mini.platinum .sponsor-placeholder {
        min-height: 55px;
    }
}

@media (max-width: 1200px) {
    .hero-side-panel {
        display: none;
    }
}

/* Events Hero */
.events-hero {
    position: relative;
    min-height: 320px;
    padding: 200px 60px 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.events-hero-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.events-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.events-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
}

.events-hero-content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.events-hero-content h1 span {
    font-style: italic;
    color: var(--gold-light);
}

.events-hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Events Section */
.events-section {
    background: var(--bg-cream);
    padding: 60px 40px 80px;
}

.events-container {
    max-width: 1200px;
    margin: 0 auto;
}

.events-group {
    margin-bottom: 60px;
}

.events-group:last-child {
    margin-bottom: 0;
}

.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

/* Event Cards Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* Event Card - Modern Style */
.event-card {
    display: block;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-decoration: none;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.event-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover .event-card-image img {
    transform: scale(1.08);
}

.event-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--primary-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.event-badge.past-badge {
    background: rgba(100, 100, 100, 0.9);
    color: var(--white);
}

.event-card-content {
    padding: 24px;
}

.event-date-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 10px;
}

.event-date-tag svg {
    flex-shrink: 0;
}

.event-card-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.event-location svg {
    flex-shrink: 0;
    color: var(--text-medium);
}

/* Featured Event Card */
.event-card.featured {
    border: 2px solid var(--gold);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.2);
}

.event-card.featured:hover {
    box-shadow: 0 20px 50px rgba(201, 162, 39, 0.25);
}

/* Past Event Cards */
.event-card.past {
    opacity: 0.75;
}

.event-card.past:hover {
    opacity: 1;
}

.event-card.past .event-card-image img {
    filter: grayscale(40%);
}

.event-card.past:hover .event-card-image img {
    filter: grayscale(0%);
}

.event-card.past .event-date-tag {
    color: #888;
}

.event-card.past h3 {
    color: var(--text-medium);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 180px 40px 80px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header h1 span {
    font-style: italic;
    color: var(--gold-light);
}

.page-header p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto;
}

/* Events Group Title */
.events-group-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.events-group-title .title-icon {
    font-size: 1.4rem;
}

.events-group-title.past-title {
    color: var(--text-medium);
}

/* Vertical Event Cards Grid */
.events-grid-vertical {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Vertical Event Card */
.event-card-v {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
}

.event-card-v:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.event-card-v .card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #FDF6EE 0%, #F5E6D3 100%);
}

.event-card-v .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card-v:hover .card-image img {
    transform: scale(1.08);
}

/* Card Badge */
.event-card-v .card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--primary-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.event-card-v .card-badge.past {
    background: rgba(80, 80, 80, 0.9);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Card Body */
.event-card-v .card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Card Date Tag */
.event-card-v .card-date {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    border-radius: 14px;
    margin-bottom: 18px;
    width: fit-content;
}

.event-card-v .card-date.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.3);
}

.event-card-v .card-date.upcoming {
    background: linear-gradient(135deg, var(--gold) 0%, #B8922A 100%);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.event-card-v .card-date.past {
    background: #E5E5E5;
    color: #666;
}

.event-card-v .card-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-card-v .card-date .month {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Card Title */
.event-card-v h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Card Description */
.event-card-v p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

/* Card Meta */
.event-card-v .card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-medium);
}

.event-card-v .card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-card-v .card-meta svg {
    color: var(--primary);
    flex-shrink: 0;
}

.event-card-v .card-meta .view-link {
    color: var(--primary);
    font-weight: 600;
}

/* Featured Card */
.event-card-v.featured {
    border: 3px solid var(--gold);
    box-shadow: 0 8px 35px rgba(201, 162, 39, 0.25);
}

.event-card-v.featured:hover {
    box-shadow: 0 25px 60px rgba(201, 162, 39, 0.3);
}

.event-card-v.featured .card-image {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFEDC4 100%);
}

/* Upcoming Card */
.event-card-v.upcoming .card-image {
    background: linear-gradient(135deg, #F0F7F0 0%, #E0EFE0 100%);
}

/* Past Card */
.event-card-v.past {
    opacity: 0.8;
}

.event-card-v.past:hover {
    opacity: 1;
}

.event-card-v.past .card-image {
    background: linear-gradient(135deg, #F0F0F0 0%, #E5E5E5 100%);
}

.event-card-v.past .card-image img {
    filter: grayscale(50%) opacity(0.9);
}

.event-card-v.past:hover .card-image img {
    filter: grayscale(20%) opacity(1);
}

.event-card-v.past h3 {
    color: var(--text-medium);
}

/* Event Detail Page */
.event-detail-hero {
    position: relative;
    min-height: 450px;
    padding: 120px 40px 40px;
    overflow: hidden;
}

.back-link {
    position: absolute;
    top: 100px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    background: rgba(255,255,255,0.9);
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    z-index: 10;
}

.back-link:hover {
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.event-detail-illustration {
    max-width: 600px;
    margin: 60px auto 0;
}

.event-detail-illustration img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
}

.event-detail-content {
    background: var(--bg-cream);
    padding: 60px 40px 80px;
}

.event-detail-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
}

.event-detail-main {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.event-status-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, #D4AF37 100%);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.event-status-badge.past {
    background: #888;
    color: white;
}

.event-detail-main h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.2;
}

.event-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 25px;
    background: var(--bg-warm);
    border-radius: 16px;
    margin-bottom: 35px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.meta-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.meta-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 0.8rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.event-description h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.event-description h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 25px 0 12px;
}

.event-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.event-description ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.event-description li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--text-medium);
    line-height: 1.6;
}

.event-description li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.tag {
    background: var(--bg-warm);
    color: var(--text-medium);
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 20px;
}

/* Sidebar */
.event-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.sidebar-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.event-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.event-price-note {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.spots-left {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-top: 12px;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    border-radius: 12px;
    color: var(--text-medium);
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--primary);
    color: white;
}

.organizer-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.organizer-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: contain;
}

.organizer-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.organizer-role {
    font-size: 0.85rem;
    color: var(--text-medium);
}

/* =====================================================
   EVENTS PAGE - Split Hero Design
   ===================================================== */

/* Split Hero Layout */
.events-hero-split {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
}

.hero-split-content {
    background: var(--bg-cream);
    padding: 50px 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-split-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: fit-content;
}

.hero-split-content h1 {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 22px;
    line-height: 1.1;
}

.hero-split-content .hero-date-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    border: 2px solid var(--primary-light);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    margin-bottom: 18px;
    width: fit-content;
    box-shadow: var(--shadow-soft);
}

.hero-split-content .hero-date-box .date-day {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.hero-split-content .hero-date-box .date-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-split-content .hero-date-box .date-month {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-split-content .hero-date-box .date-year {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-medium);
    letter-spacing: 1px;
}

.hero-split-content .hero-location {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 14px;
}

.hero-split-content .hero-location svg {
    color: var(--primary);
    flex-shrink: 0;
}

.hero-split-content .hero-description {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.8;
    max-width: 100%;
}

.hero-split-content .hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-split-content .hero-buttons .btn {
    padding: 14px 32px;
    font-size: 0.85rem;
}

/* Mobile-only image - hidden on desktop */
.hero-mobile-image {
    display: none;
}

.hero-split-image {
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

.hero-split-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.featured-placeholder {
    color: var(--primary);
    opacity: 0.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Scroll Indicator for Split Hero */
.events-hero-split .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 20%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    z-index: 10;
}

.events-hero-split .scroll-indicator:hover {
    color: var(--primary-dark);
    transform: translateX(-50%) translateY(-5px);
}

.events-hero-split .scroll-indicator svg {
    animation: bounceDown 2s infinite;
    width: 28px;
    height: 28px;
}

.events-hero-split .scroll-indicator svg {
    animation: bounceDown 2s infinite;
    width: 28px;
    height: 28px;
}

/* Section Scroll Indicator (for between sections) */
.section-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    margin-top: 50px;
    padding-bottom: 20px;
}

.section-scroll-indicator:hover {
    color: var(--primary-dark);
    transform: translateY(-5px);
}

.section-scroll-indicator svg {
    animation: bounceDown 2s infinite;
    width: 28px;
    height: 28px;
}

/* Legacy styles for full-width banner (keeping for reference) */
.events-hero-banner {
    position: relative;
    min-height: 100vh;
    padding: 180px 80px 100px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.events-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(139, 21, 56, 0.88) 0%,
        rgba(107, 16, 41, 0.75) 50%,
        rgba(45, 41, 38, 0.5) 100%
    );
    z-index: 1;
}

.events-hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.events-hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary-dark);
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
}

.events-hero-content h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 28px;
    line-height: 1.1;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

/* Prominent Date Box */
.hero-date-box {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-lg);
    padding: 24px 36px;
    margin-bottom: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-date-box .date-day {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 2px 15px rgba(201, 162, 39, 0.4);
}

.hero-date-box .date-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-date-box .date-month {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-date-box .date-year {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
}

/* Location */
.events-hero-content .hero-location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 16px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.events-hero-content .hero-location svg {
    flex-shrink: 0;
    opacity: 0.9;
}

.events-hero-content .hero-description {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 500px;
}

.events-hero-content .hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.events-hero-content .hero-buttons .btn {
    padding: 16px 40px;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
}

.events-hero-content .hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-color: var(--gold);
    color: var(--primary-dark);
    box-shadow: 0 6px 25px rgba(201, 162, 39, 0.35);
}

.events-hero-content .hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(201, 162, 39, 0.5);
}

.events-hero-content .hero-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.events-hero-content .hero-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.scroll-indicator:hover {
    color: var(--white);
}

.scroll-indicator svg {
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

/* Events Listing Section */
.events-listing {
    background: var(--bg-cream);
    padding: 100px 60px;
    position: relative;
}

.events-listing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, rgba(139, 21, 56, 0.03), transparent);
    pointer-events: none;
}

.events-listing .events-grid {
    max-width: var(--max-width);
    margin: 0 auto;
}

.events-listing.past-events {
    padding-top: 40px;
    background: var(--bg-warm);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    padding-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-title span {
    font-style: italic;
    color: var(--gold);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border-radius: 2px;
}

/* Events Grid - Vertical Cards */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 40px;
    align-items: stretch;
}

/* Event Card - Vertical Style */
.event-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(139, 21, 56, 0.08);
    transition: all var(--transition-smooth);
    border: 1px solid rgba(139, 21, 56, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(139, 21, 56, 0.15);
    border-color: rgba(201, 162, 39, 0.2);
}

.event-card .card-image {
    height: 280px;
    overflow: hidden;
    background: var(--bg-gradient);
    position: relative;
}

.event-card .card-image.no-image {
    background: linear-gradient(135deg, var(--bg-cream) 0%, #f5f0e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-card .card-image.no-image::after {
    display: none;
}

.placeholder-icon {
    color: var(--primary);
    opacity: 0.3;
}

.event-card .card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0,0,0,0.08), transparent);
    pointer-events: none;
}

.event-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card:hover .card-image img {
    transform: scale(1.1);
}

.event-card .card-content {
    padding: 28px 32px 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-card .card-content h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.card-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.card-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-primary);
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.4;
}

.card-info svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Card Buttons */
.card-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.btn-sm {
    padding: 12px 20px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Nav button style */
.btn-nav {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* Page Hero (for inner pages) */
.page-hero {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.88) 0%, rgba(93, 14, 37, 0.92) 100%),
                url('../assets/backgrounds/gallary_background.png') center/cover no-repeat fixed;
    padding: 200px 60px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    animation: heroFadeIn 0.8s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero-content h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
}

.page-hero-content h1 span {
    font-style: italic;
    color: var(--gold-light);
}

.page-hero-content p {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 25px auto 0;
    line-height: 1.7;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 60px;
    background: var(--bg-cream);
}

.albums-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.album-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.album-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--primary-light);
}

.album-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.album-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.album-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--text-medium);
}

.album-meta svg {
    color: var(--primary);
}

.album-embed {
    background: var(--bg-cream);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 20px;
}

.album-embed iframe {
    width: 100%;
    height: 480px;
    border: none;
    display: block;
}

.embed-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    color: var(--text-light);
    text-align: center;
}

.embed-placeholder svg {
    margin-bottom: 15px;
    opacity: 0.5;
}

.embed-placeholder p {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-medium);
    margin: 0 0 5px;
}

.embed-placeholder span {
    font-family: var(--font-primary);
    font-size: 0.85rem;
}

.gallery-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--text-light);
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.gallery-link-card:hover {
    background: rgba(139, 35, 50, 0.05);
}

.gallery-link-card svg {
    margin-bottom: 15px;
    opacity: 0.7;
    color: var(--primary);
    transition: all 0.3s ease;
    animation: gentle-pulse 2s ease-in-out infinite;
}

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

.gallery-link-card:hover svg {
    opacity: 1;
    transform: scale(1.15);
    animation: none;
}

.gallery-link-card p {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 5px;
}

.gallery-link-card span {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.album-embed {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.album-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    padding-right: 16px;
    border-right: 2px solid rgba(139, 35, 50, 0.2);
}

.album-label svg {
    color: var(--primary);
    opacity: 0.7;
}

.album-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #a63347 100%);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 35, 50, 0.3);
}

.album-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.album-link:hover::before {
    left: 100%;
}

.album-link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(139, 35, 50, 0.4);
    color: var(--white);
}

.album-link svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    opacity: 0.9;
}

.album-link .arrow-icon {
    opacity: 0.7;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.album-link:hover .arrow-icon {
    transform: translateX(4px);
    opacity: 1;
    animation: none;
}

.album-link:hover svg:not(.arrow-icon) {
    animation: camera-bounce 0.5s ease;
}

@keyframes camera-bounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(-5deg); }
    50% { transform: scale(1.1) rotate(5deg); }
    75% { transform: scale(1.15) rotate(-3deg); }
}

/* Video Embed */
.video-embed {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    background: #000;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-embed.video-placeholder {
    background: linear-gradient(135deg, #f8f4f0 0%, #efe8e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 35%;
}

.video-coming-soon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-muted);
}

.video-coming-soon svg {
    color: var(--primary);
    opacity: 0.4;
    margin-bottom: 12px;
}

.video-coming-soon p {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    color: var(--text-medium);
}

/* Album Preview Grid */
.album-preview {
    padding: 15px;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.preview-thumb {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    display: block;
}

.preview-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.preview-thumb:hover img {
    transform: scale(1.05);
}

.more-photos {
    position: relative;
}

.more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.more-photos:hover .more-overlay {
    background: rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .preview-thumb:nth-child(4),
    .preview-thumb:nth-child(5) {
        display: none;
    }
    
    .preview-thumb:nth-child(3) {
        position: relative;
    }
    
    .preview-thumb:nth-child(3)::after {
        content: 'View All';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-family: var(--font-primary);
        font-size: 0.9rem;
        font-weight: 600;
    }
}

/* Timeline Gallery */
.gallery-timeline {
    padding: 80px 60px;
    background: var(--bg-cream);
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 40px;
    padding-bottom: 60px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:nth-child(even) {
    transform: translateX(50px);
}

.timeline-item:nth-child(even).animate-in {
    transform: translateX(0);
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.marker-dot {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 5px var(--primary-light), 0 4px 15px rgba(139, 21, 56, 0.4);
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .marker-dot {
    transform: scale(1.15);
    box-shadow: 0 0 0 6px var(--primary-light), 0 6px 20px rgba(139, 21, 56, 0.5);
}

.marker-line {
    width: 4px;
    flex: 1;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 50%, rgba(139, 21, 56, 0.3) 100%);
    margin-top: -2px;
    border-radius: 2px;
}

.timeline-item:last-child .marker-line {
    display: none;
}

.timeline-content {
    flex: 1;
    padding-top: 0;
}

.timeline-date {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.timeline-date .date-month {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.timeline-date .date-year {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-medium);
    letter-spacing: 1px;
}

.timeline-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(139, 21, 56, 0.08);
}

.timeline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(139, 21, 56, 0.1);
}

.timeline-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.timeline-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.timeline-location svg {
    color: var(--primary);
}

.album-embed {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-cream);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 20px;
}

.album-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.embed-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--text-light);
    text-align: center;
}

.embed-placeholder svg {
    margin-bottom: 15px;
    opacity: 0.5;
}

.embed-placeholder p {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-medium);
    margin: 0 0 5px;
}

.embed-placeholder span {
    font-family: var(--font-primary);
    font-size: 0.85rem;
}

/* Upcoming event styling */
.timeline-item.upcoming .marker-dot {
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.2), var(--shadow-md);
}

.timeline-item.upcoming .timeline-card {
    border: 2px dashed var(--gold);
    background: rgba(201, 162, 39, 0.05);
}

.upcoming-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, #D4AF37 100%);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.timeline-description {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.6;
}

/* Gallery Note */
.gallery-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
    padding: 20px 30px;
    background: var(--white);
    border-radius: var(--radius-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    border-left: 4px solid var(--gold);
}

.gallery-note svg {
    color: var(--gold);
    flex-shrink: 0;
}

.gallery-note p {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--text-medium);
    margin: 0;
}

/* =====================================================
   ABOUT PAGE STYLES
   ===================================================== */

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.88) 0%, rgba(93, 14, 37, 0.92) 100%),
                url('../assets/backgrounds/kakatiya_thoranam.png') center/cover no-repeat fixed;
}

/* Founding Quote Section */
.founding-quote-section {
    padding: 40px 60px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.founding-quote-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.quote-box {
    position: relative;
    text-align: center;
    padding: 30px 50px;
}

.quote-icon {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.5;
    position: absolute;
    top: -5px;
    left: 20px;
    line-height: 1;
}

.quote-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    font-style: italic;
    color: var(--white);
    line-height: 1.8;
    margin: 0;
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 50px 60px;
    background: var(--bg-cream);
}

.vision-mission-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.vm-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary);
}

.vm-card.vision {
    border-top-color: var(--gold);
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(139, 21, 56, 0.12);
}

.vm-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    color: var(--primary);
}

.vm-card.vision .vm-icon {
    background: linear-gradient(135deg, var(--gold) 0%, #D4AF37 100%);
    color: var(--white);
}

.vm-card h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.vm-card p {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-medium);
    margin: 0;
}

/* Leadership Messages Section */
.leadership-messages-section {
    padding: 50px 60px;
    background: var(--white);
}

.leadership-messages-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.leadership-messages-section .section-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
}

.leadership-messages-section .section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Message Cards Grid */
.messages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

/* Message Card */
.message-card {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    border-top: 4px solid var(--primary);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.message-card:last-of-type {
    margin-bottom: 0;
}

.message-card.chairman-card {
    border-top-color: var(--gold);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, var(--bg-cream) 100%);
}

/* Message Card Photo */
.message-card .message-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 4px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-card .message-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Message Leader Info in Card */
.message-card .message-leader-info {
    margin-bottom: 15px;
}

.message-card .message-leader-info h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.message-card .leader-title {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--white);
    background: var(--primary);
    padding: 5px 12px;
    border-radius: var(--radius-full);
}

.message-card.chairman-card .leader-title {
    background: linear-gradient(135deg, var(--gold) 0%, #D4AF37 100%);
}

/* Message Content */
.message-card .message-content {
    flex: 1;
}

.message-card .message-text p {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-dark);
    text-align: left;
}

/* Language Switcher in Card */
.message-card .language-switcher {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 15px;
}
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.message-sidebar {
    text-align: center;
}

.message-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: var(--primary-light);
}

.message-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-leader-info h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.leader-title {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    background: var(--primary);
    padding: 5px 14px;
    border-radius: var(--radius-full);
}

.chairman-card .leader-title {
    background: linear-gradient(135deg, var(--gold) 0%, #D4AF37 100%);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 8px;
}

.lang-btn {
    padding: 5px 14px;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-medium);
    background: var(--white);
    border: 2px solid var(--primary-light);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.lang-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Message Content */
.message-content {
    /* No special styling needed */
}

.message-main {
    flex: 1;
}

/* Message Text */
.message-text {
    display: none;
}

.message-text.active {
    display: block;
}

.message-text p {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.message-text p:last-child {
    margin-bottom: 0;
}

/* Telugu Text Styling */
.telugu-text {
    font-family: 'Noto Sans Telugu', var(--font-primary), sans-serif;
}

.telugu-text p {
    font-size: 0.95rem;
    line-height: 1.9;
}

/* Collapsible message for long content */
.message-text.collapsible {
    max-height: 200px;
    overflow: hidden;
    position: relative;
}

.message-text.collapsible::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, var(--bg-cream));
}

.message-text.collapsible.expanded {
    max-height: none;
}

.message-text.collapsible.expanded::after {
    display: none;
}

.read-more-btn {
    display: inline-block;
    margin-top: 10px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.read-more-btn:hover {
    text-decoration: underline;
}

/* View Leadership Link */
.view-leadership-link {
    text-align: center;
    margin-top: 40px;
}

.view-leadership-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.view-leadership-link .btn svg {
    transition: transform 0.3s ease;
}

.view-leadership-link .btn:hover svg {
    transform: translateX(5px);
}

/* About Page Responsive */
@media (max-width: 992px) {
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .founding-quote-section,
    .vision-mission-section,
    .leadership-messages-section {
        padding: 40px 40px;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
    
    .message-header-simple {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .founding-quote-section,
    .vision-mission-section,
    .leadership-messages-section {
        padding: 35px 25px;
    }
    
    .quote-box {
        padding: 25px 20px;
    }
    
    .quote-text {
        font-size: 1rem;
    }
    
    .messages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .message-card {
        padding: 20px 18px;
    }
    
    .message-card .message-photo {
        width: 80px;
        height: 80px;
    }
    
    .vm-card {
        padding: 25px 20px;
    }
    
    .message-header-simple .message-leader-info h3 {
        font-size: 1.15rem;
    }
}

/* Leadership Section */
.leadership-hero {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.85) 0%, rgba(93, 14, 37, 0.9) 100%),
                url('../assets/backgrounds/leadership_background.png') center/cover no-repeat fixed;
}

/* Leadership Section */
.leadership-section {
    padding: 80px 60px;
    background: var(--bg-cream);
}

.leadership-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.leadership-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.founding-badge {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    background: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: 2px solid var(--gold);
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(201, 162, 39, 0.15);
}

.leadership-header .section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    position: relative;
}

.leadership-header .section-title::after {
    content: '';
    display: block;
    margin: 15px auto 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    border-radius: 2px;
}

/* Members Grid */
.members-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(5, 1fr);
    max-width: 1300px;
    margin: 0 auto;
}

/* Member Card */
.member-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 20px 25px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: visible;
}

.member-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.12);
}

.member-image {
    width: 130px;
    height: 130px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    background: var(--bg-cream);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease,
                border-color 0.3s ease;
}

/* Popup effect on hover */
.member-card:hover .member-image {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.2);
    border-color: var(--primary);
    z-index: 10;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

/* Zoom in on specific photos to show faces better */
.member-image.zoom-face img {
    transform: scale(1.3);
    object-position: center 20%;
}

/* Zoom out for photos that are too close */
.member-image.zoom-out img {
    transform: scale(0.85);
    object-position: center center;
}

.member-card:hover .member-image img {
    transform: scale(1.08);
}

.member-card:hover .member-image.zoom-face img {
    transform: scale(1.4);
}

.member-card:hover .member-image.zoom-out img {
    transform: scale(0.95);
}

.member-info h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.designation {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    background: var(--primary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

/* Responsive */
@media (max-width: 1200px) {
    .members-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .members-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .leadership-section {
        padding: 60px 40px;
    }
    
    .member-image {
        width: 110px;
        height: 110px;
    }
    
    .members-grid .member-card:nth-child(-n+4) .member-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .leadership-section {
        padding: 50px 25px;
    }
    
    .leadership-header .section-title {
        font-size: 2rem;
    }
    
    .member-card {
        padding: 25px 15px 20px;
    }
    
    .member-card:hover .member-image {
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .member-image {
        width: 90px;
        height: 90px;
    }
    
    .members-grid .member-card:nth-child(-n+4) .member-image {
        width: 100px;
        height: 100px;
    }
    
    .member-info h3 {
        font-size: 0.9rem;
    }
    
    .designation {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}

/* Sponsors Section */
.sponsors-section {
    padding: 80px 60px;
    background: var(--white);
    text-align: center;
}

.sponsors-subtitle {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.sponsor-card {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.sponsor-logo-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    background: var(--white);
    border: 2px dashed var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.85rem;
}

.sponsor-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 15px;
    display: block;
}

.sponsor-name {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.become-sponsor {
    padding-top: 30px;
    border-top: 1px solid var(--primary-light);
    max-width: 400px;
    margin: 0 auto;
}

.become-sponsor p {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 20px;
}

/* =====================================================
   HOME PAGE SECTIONS
   ===================================================== */

/* Section Labels */
.section-label {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
    border-radius: 30px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    display: block;
    padding-bottom: 18px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    border-radius: 2px;
}

.section-header p {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
}

/* Sponsors & News Section */
.sponsors-news-section {
    padding: 60px 60px;
    background: var(--bg-cream);
}

.sponsors-news-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.sponsors-news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.column-header {
    margin-bottom: 25px;
}

.column-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

/* Sponsors Column */
.sponsors-column {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.sponsors-showcase {
    margin-bottom: 20px;
}

.sponsor-tier {
    text-align: center;
    margin-bottom: 20px;
}

.sponsor-tier.platinum {
    margin-bottom: 25px;
}

.tier-label {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.sponsor-tier.platinum .tier-label {
    background: linear-gradient(135deg, #E5E4E2 0%, #B8B8B8 100%);
    color: #444;
}

.sponsor-tier.gold .tier-label {
    background: linear-gradient(135deg, var(--gold) 0%, #D4AF37 100%);
    color: var(--white);
}

.sponsor-logo-placeholder {
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(139, 21, 56, 0.1) 100%);
    border: 2px dashed var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: var(--text-medium);
    transition: all 0.3s ease;
}

.sponsor-logo-placeholder:hover {
    border-color: var(--primary);
    background: rgba(139, 21, 56, 0.08);
}

.sponsor-logo-placeholder.small {
    height: 60px;
    font-size: 0.75rem;
}

.sponsor-tier-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.become-sponsor-link,
.view-all-link {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.become-sponsor-link:hover,
.view-all-link:hover {
    color: var(--gold);
}

/* News Column */
.news-column {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.news-list {
    margin-bottom: 20px;
}

.news-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--primary-light);
}

.news-item:first-child {
    padding-top: 0;
}

.news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-date {
    flex-shrink: 0;
    width: 50px;
    text-align: center;
    background: var(--primary);
    border-radius: var(--radius-sm);
    padding: 8px 5px;
    color: var(--white);
}

.news-date .day {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.news-date .month {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.news-content h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.4;
}

.news-content p {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    color: var(--text-medium);
    line-height: 1.5;
}

/* Sponsors & News Responsive */
@media (max-width: 900px) {
    .sponsors-news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .sponsors-news-section {
        padding: 50px 40px;
    }
}

@media (max-width: 600px) {
    .sponsors-news-section {
        padding: 40px 25px;
    }
    
    .sponsors-column,
    .news-column {
        padding: 25px 20px;
    }
    
    .sponsor-tier-grid {
        grid-template-columns: 1fr;
    }
}

/* Home About Section */
.home-about {
    padding: 60px 60px 40px;
    background: var(--white);
}

.home-about .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border-radius: 2px;
}

.about-content p {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 18px;
}

.about-content .btn {
    margin-top: 10px;
}

/* Stats Cards - Removed */

/* Cultural Highlights */
.cultural-highlights {
    padding: 100px 60px;
    background: linear-gradient(180deg, var(--bg-cream) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.cultural-highlights::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cultural-highlights::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 21, 56, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cultural-highlights .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.culture-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px 28px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(139, 21, 56, 0.08);
    position: relative;
    overflow: hidden;
}

.culture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.culture-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(139, 21, 56, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.culture-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 40px rgba(139, 21, 56, 0.12),
        0 8px 16px rgba(139, 21, 56, 0.08);
    border-color: rgba(201, 162, 39, 0.3);
}

.culture-card:hover::before {
    transform: scaleX(1);
}

.culture-card:hover::after {
    opacity: 1;
}

.culture-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(253, 246, 238, 0.8) 0%, rgba(201, 162, 39, 0.1) 100%);
    border-radius: 50%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.culture-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px dashed rgba(201, 162, 39, 0.3);
    transition: all 0.4s ease;
}

.culture-card:hover .culture-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(139, 21, 56, 0.08) 100%);
}

.culture-card:hover .culture-icon::after {
    border-color: var(--gold);
    transform: rotate(-10deg);
}

.culture-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
    transition: color 0.3s ease;
}

.culture-card:hover h3 {
    color: var(--gold);
}

.culture-card p {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-medium);
}

/* Stagger animation for cards */
.culture-card:nth-child(1) { animation-delay: 0s; }
.culture-card:nth-child(2) { animation-delay: 0.1s; }
.culture-card:nth-child(3) { animation-delay: 0.2s; }
.culture-card:nth-child(4) { animation-delay: 0.3s; }

/* Initiatives Section */
.initiatives-section {
    padding: 60px 60px;
    background: #fff;
}

.initiatives-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.initiative-card {
    padding: 50px 35px;
    position: relative;
    border-right: 1px solid rgba(139, 21, 56, 0.08);
    transition: all 0.4s ease;
}

.initiative-card:last-child {
    border-right: none;
}

.initiative-card:hover {
    background: linear-gradient(180deg, rgba(139, 21, 56, 0.02) 0%, rgba(201, 162, 39, 0.04) 100%);
}

.initiative-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.initiative-icon svg {
    width: 100%;
    height: 100%;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.initiative-card:hover .initiative-icon {
    color: var(--gold);
    transform: translateY(-4px);
}

.initiative-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.initiative-card:hover h3 {
    color: var(--primary);
}

.initiative-card p {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.initiative-accent {
    position: absolute;
    bottom: 0;
    left: 35px;
    right: 35px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.initiative-card:hover .initiative-accent {
    transform: scaleX(1);
}

@media (max-width: 1024px) {
    .initiatives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .initiative-card {
        border-right: none;
        border-bottom: 1px solid rgba(139, 21, 56, 0.08);
    }
    
    .initiative-card:nth-child(odd) {
        border-right: 1px solid rgba(139, 21, 56, 0.08);
    }
    
    .initiative-card:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 640px) {
    .initiatives-section {
        padding: 80px 25px;
    }
    
    .initiatives-grid {
        grid-template-columns: 1fr;
    }
    
    .initiative-card {
        padding: 40px 25px;
        border-right: none !important;
        border-bottom: 1px solid rgba(139, 21, 56, 0.08);
    }
    
    .initiative-card:last-child {
        border-bottom: none;
    }
}

/* Home Gallery Preview */
.home-gallery {
    padding: 60px 60px;
    background: var(--white);
}

.home-gallery .container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.gallery-preview-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-preview-item.large {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-preview-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(139, 21, 56, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-preview-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

/* Video Carousel */
.video-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.video-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.video-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.video-slide.active {
    opacity: 1;
}

.video-slide iframe {
    width: 100%;
    height: 100%;
}

.video-info {
    background: linear-gradient(to top, rgba(139, 21, 56, 0.9) 0%, rgba(139, 21, 56, 0.7) 100%);
    padding: 15px 20px;
    text-align: center;
}

.video-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.video-indicators {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.video-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-indicator.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* Join CTA Section */
.join-cta {
    position: relative;
    padding: 100px 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

.join-cta .cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/backgrounds/charminar.png') center/cover no-repeat;
    opacity: 0.1;
}

.join-cta .container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* Home Sections Responsive */
@media (max-width: 1024px) {
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-preview-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-preview-item.large {
        grid-row: span 1;
        aspect-ratio: 4/3;
    }
}

@media (max-width: 768px) {
    .home-about,
    .cultural-highlights,
    .home-gallery {
        padding: 60px 25px;
    }
    
    .join-cta {
        padding: 70px 25px;
    }
    
    .section-header h2,
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .gallery-preview-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-preview-item,
    .gallery-preview-item.large {
        aspect-ratio: 16/10;
    }
    
    .video-carousel {
        border-radius: var(--radius-md);
    }
    
    .video-info {
        padding: 12px 15px;
    }
    
    .video-title {
        font-size: 0.95rem;
    }
    
    .video-indicators {
        bottom: 55px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* =====================================================
   COMING SOON / WORK IN PROGRESS PAGE
   ===================================================== */
.coming-soon-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 40px 80px;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--white) 100%);
}

.coming-soon-content {
    text-align: center;
    max-width: 600px;
}

.coming-soon-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.25);
}

.coming-soon-content h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.wip-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.15);
    padding: 10px 25px;
    border-radius: var(--radius-full);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.wip-badge .pulse {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.coming-soon-content > p {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 30px;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-item span:last-child {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.notify-text {
    font-size: 0.95rem !important;
    margin-bottom: 20px !important;
}

.coming-soon-content .btn {
    margin: 0 8px 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 600px) {
    .coming-soon-page {
        padding: 120px 25px 60px;
    }
    
    .coming-soon-content h1 {
        font-size: 2.2rem;
    }
    
    .coming-soon-icon {
        width: 100px;
        height: 100px;
    }
    
    .coming-soon-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .coming-soon-features {
        grid-template-columns: 1fr;
    }
    
    .wip-badge {
        font-size: 0.75rem;
        padding: 8px 20px;
    }
}

/* =====================================================
   BLOG PAGE STYLES
   ===================================================== */

/* Blog Hero */
.blog-hero {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.88) 0%, rgba(93, 14, 37, 0.92) 100%),
                url('../assets/backgrounds/blogging_background.png') center/cover no-repeat fixed;
    padding: 200px 60px 100px;
    text-align: center;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blog-hero h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.blog-hero h1 span {
    font-style: italic;
    color: var(--gold-light);
}

.blog-hero p {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Featured Post Section */
.featured-post-section {
    padding: 60px;
    background: var(--bg-cream);
}

.featured-post-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.featured-image {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, #D4AF37 100%);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.post-category {
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: var(--primary-light);
    padding: 5px 12px;
    border-radius: var(--radius-full);
}

.post-date {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: var(--text-light);
}

.featured-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 15px;
}

.featured-content p {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 25px;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
}

.author-avatar.small {
    width: 32px;
    height: 32px;
    font-size: 0.7rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.read-time {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Blog Content Section */
.blog-content-section {
    padding: 60px;
    background: var(--white);
}

.blog-content-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.section-header-left {
    margin-bottom: 30px;
}

.section-header-left h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-header-left h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    border-radius: 2px;
}

/* Blog Post Cards */
.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-post-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 25px;
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.1);
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 25px 25px 25px 0;
    display: flex;
    flex-direction: column;
}

.post-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.blog-post-card:hover .post-content h3 {
    color: var(--primary);
}

.post-content p {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.7;
    flex: 1;
}

.post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(139, 21, 56, 0.1);
}

.post-author-mini {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-author-mini span {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-medium);
}

.post-footer .read-time {
    font-size: 0.75rem;
}

.load-more {
    text-align: center;
    margin-top: 20px;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: 25px;
}

.sidebar-widget h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}

/* Search Widget */
.search-widget {
    background: var(--primary);
    padding: 20px;
}

.search-box {
    display: flex;
    gap: 0;
}

.search-box input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.9rem;
}

.search-box input:focus {
    outline: none;
}

.search-box button {
    padding: 12px 15px;
    background: var(--gold);
    border: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--white);
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-box button:hover {
    background: #D4AF37;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.category-list a:hover {
    background: var(--white);
    color: var(--primary);
}

.category-list a span {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

/* Popular Posts */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post {
    display: flex;
    gap: 15px;
    padding: 12px;
    background: var(--white);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.popular-post:hover {
    transform: translateX(5px);
}

.post-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.7;
}

.post-info h5 {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.4;
}

.post-info .post-date {
    font-size: 0.75rem;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.newsletter-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.newsletter-widget h4 {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.newsletter-widget p {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.newsletter-form input:focus {
    outline: 2px solid var(--gold);
}

.newsletter-form .btn {
    width: 100%;
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    color: var(--text-medium);
    background: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary);
    color: var(--white);
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .search-widget,
    .newsletter-widget {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .featured-post {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        min-height: 300px;
    }
    
    .featured-content {
        padding: 30px;
    }
    
    .blog-post-card {
        grid-template-columns: 1fr;
    }
    
    .post-image {
        height: 200px;
    }
    
    .post-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 160px 25px 60px;
        min-height: 280px;
    }
    
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .featured-post-section,
    .blog-content-section {
        padding: 40px 25px;
    }
    
    .blog-sidebar {
        grid-template-columns: 1fr;
    }
    
    .search-widget,
    .newsletter-widget {
        grid-column: span 1;
    }
    
    .featured-content h2 {
        font-size: 1.5rem;
    }
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
}

.footer-top {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 50px 60px;
}

.footer-cta {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.footer-logo {
    height: 160px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    flex-shrink: 0;
}

.footer-cta-content {
    flex: 1;
}

.footer-cta h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.footer-cta p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    max-width: 500px;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-dark);
    transform: scale(1.1);
}

/* Footer Donate Button */
.footer-donate {
    flex-shrink: 0;
    margin-left: 20px;
}

.footer-donate .btn-donate-footer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold) 0%, #d4a82a 100%);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
    animation: subtlePulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.footer-donate .btn-donate-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.footer-donate .btn-donate-footer:hover::before {
    left: 100%;
}

.footer-donate .btn-donate-footer:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.5);
    background: linear-gradient(135deg, #d4a82a 0%, #e0b52e 100%);
}

.footer-donate .btn-donate-footer:active {
    transform: translateY(-1px) scale(0.98);
}

.footer-donate .btn-donate-footer svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.footer-donate .btn-donate-footer:hover svg {
    transform: scale(1.15);
}

.footer-bottom {
    background: #3d0812;
    padding: 35px 40px 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.footer-links-row a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 4px 8px;
    transition: color 0.3s ease;
}

.footer-links-row a:hover {
    color: var(--gold);
}

.footer-links-row .divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.footer-contact-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.footer-contact-info a {
    color: var(--gold);
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--gold-light);
}

.footer-nonprofit {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin-top: 5px;
}

.copyright a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1100px) {
    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .nav-donate {
        right: 20px;
    }

    .nav-donate .btn-donate {
        padding: 10px 18px;
        font-size: 0.75rem;
    }
}

@media (max-width: 992px) {
    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

    .nav-donate {
        right: 15px;
    }

    .nav-donate .btn-donate {
        padding: 8px 14px;
        font-size: 0.7rem;
    }

    .hero {
        padding: 200px 40px 60px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-slideshow .slide {
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 768px) {
    .header {
        padding-top: 15px;
    }

    .nav {
        padding: 10px 20px;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        min-height: 80px;
    }

    .logo {
        order: 2;
        flex: 0 0 auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        padding-bottom: 15px;
    }

    .logo img {
        height: 130px;
    }

    .nav-left,
    .nav-right {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow-soft);
        flex: unset;
    }

    .nav-left.active,
    .nav-right.active {
        display: flex;
    }

    .nav-right.active {
        top: calc(100% + 140px);
    }

    .nav-donate {
        display: flex;
        order: 3;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
    }

    .nav-donate .btn-donate {
        padding: 5px 10px;
        font-size: 0.65rem;
        border-radius: 25px;
    }

    .mobile-menu-btn {
        display: flex;
        order: 1;
        width: 44px;
        height: 44px;
        padding: 10px;
    }

    .mobile-menu-btn span {
        height: 3px;
        border-radius: 2px;
    }

    .footer-cta {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-donate {
        margin-left: 0;
        margin-top: 10px;
    }

    /* Page Hero Mobile */
    .page-hero {
        padding: 120px 25px 50px;
        min-height: auto;
        background-position: center;
        background-attachment: scroll;
    }

    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .page-hero-content p {
        font-size: 1rem;
        margin-top: 15px;
    }

    .hero {
        flex-direction: column;
        padding: 90px 0 30px;
        min-height: auto;
    }

    .hero-slideshow {
        position: relative;
        width: 100vw;
        height: auto;
        aspect-ratio: 1/1;
        border-radius: 0;
        overflow: hidden;
        margin-bottom: 25px;
        margin-left: calc(-50vw + 50%);
        box-shadow: none;
        background: var(--bg-cream);
    }

    .hero-slideshow .slide {
        border-radius: 0;
        background-size: cover;
        background-position: center;
        background-color: var(--bg-cream);
    }

    .hero-overlay {
        display: none;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        padding: 0 25px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content .description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 25px;
    }

    .slide-indicators {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }
}

/* Portrait mode specific - ensure full image visibility */
@media (max-width: 768px) and (orientation: portrait) {
    .hero-slideshow {
        aspect-ratio: 1/1;
        height: auto;
    }

    .slide-indicators {
        bottom: -25px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 8px 15px;
        min-height: 70px;
    }

    .logo img {
        height: 120px;
    }

    .nav-donate .btn-donate {
        padding: 4px 8px;
        font-size: 0.6rem;
    }

    .mobile-menu-btn {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .hero {
        padding: 85px 0 25px;
    }

    .hero-slideshow {
        aspect-ratio: 1/1;
        height: auto;
        border-radius: 0;
        margin-bottom: 20px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content .description {
        font-size: 0.95rem;
    }

    .hero-buttons {
        padding: 0 20px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }

    .footer-top {
        padding: 50px 25px;
    }

    .footer-logo {
        height: 90px;
    }

    .footer-cta h3 {
        font-size: 1.6rem;
    }

    .footer-bottom {
        padding: 30px 20px;
    }

    .footer-links-row {
        gap: 4px;
    }

    .footer-links-row .divider {
        display: none;
    }

    .footer-links-row a {
        padding: 6px 10px;
    }

    /* Events Page Mobile */
    .page-header {
        padding: 140px 25px 50px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .events-section {
        padding: 40px 20px;
    }

    .event-card.featured {
        grid-template-columns: 1fr;
    }

    .event-card.featured .event-illustration {
        height: 200px;
        min-height: auto;
    }

    .event-card.featured .event-content {
        flex-direction: column;
        padding: 25px;
        gap: 20px;
    }

    .event-card.featured h3 {
        font-size: 1.4rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card.upcoming .event-content,
    .event-card.past .event-content {
        flex-direction: column;
    }

    .event-meta {
        flex-direction: column;
        gap: 10px;
    }

    /* Vertical Cards Mobile */
    .events-grid-vertical {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .event-card-v .card-image {
        height: 180px;
    }

    .event-card-v .card-body {
        padding: 22px;
    }

    .event-card-v h3 {
        font-size: 1.25rem;
    }

    .events-group-title {
        font-size: 1.4rem;
    }

    /* Event Detail Page Mobile */
    .events-hero {
        height: 300px;
        padding: 80px 20px 40px;
    }

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

    .back-link {
        top: 100px;
        left: 20px;
    }

    .event-detail-hero {
        padding: 120px 20px 40px;
    }

    .event-detail-illustration {
        max-width: 100%;
        padding: 0 10px;
    }

    .event-detail-content {
        padding: 30px 20px;
    }

    .event-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .event-detail-main h1 {
        font-size: 1.8rem;
    }

    .event-detail-meta {
        flex-wrap: wrap;
    }

    .event-detail-sidebar {
        position: static;
        width: 100%;
    }

    .sidebar-card {
        padding: 25px;
    }

    .register-btn {
        padding: 14px 24px;
    }

    /* Split Hero Mobile */
    .events-hero-split {
        grid-template-columns: 1fr;
        padding-top: 90px;
        min-height: auto;
    }

    .hero-split-content {
        padding: 30px 25px;
        order: 1;
    }

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

    .hero-split-content .hero-date-box {
        padding: 14px 18px;
        gap: 12px;
    }

    .hero-split-content .hero-date-box .date-day {
        font-size: 2rem;
    }

    .hero-split-content .hero-date-box .date-month {
        font-size: 1rem;
    }

    .hero-split-content .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-split-content .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    /* Hide desktop image on mobile, show mobile image */
    .hero-split-image {
        display: none;
    }

    .hero-mobile-image {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-bottom: 20px;
        background: var(--bg-cream);
        overflow: hidden;
        border-radius: 12px;
    }

    .hero-mobile-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .hero-mobile-image .placeholder-icon {
        color: var(--primary);
        opacity: 0.5;
    }

    .events-hero-split .scroll-indicator {
        display: none;
    }

    /* Legacy Events Page Mobile */
    .events-hero-banner {
        padding: 160px 25px 120px;
        min-height: 100vh;
    }

    .events-hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-date-box {
        padding: 16px 24px;
        gap: 12px;
    }

    .hero-date-box .date-day {
        font-size: 3rem;
    }

    .hero-date-box .date-month {
        font-size: 1.2rem;
    }

    .hero-date-box .date-year {
        font-size: 0.95rem;
    }

    .events-hero-content .hero-location {
        font-size: 1.05rem;
    }

    .events-hero-content .hero-description {
        font-size: 1.05rem;
    }

    .events-hero-content .hero-buttons {
        flex-direction: column;
    }

    .events-hero-content .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .scroll-indicator {
        bottom: 30px;
    }

    .events-listing {
        padding: 60px 20px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

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

    .card-buttons {
        flex-direction: column;
    }

    .card-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* =====================================================
   MOBILE MENU OVERLAY
   ===================================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    right: 0;
    top: 0;
    width: 85%;
    max-width: 380px;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--white) 30%, var(--white) 70%, var(--bg-cream) 100%);
    padding: var(--spacing-lg) var(--spacing-lg);
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    border-left: 3px solid var(--primary);
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
}

.mobile-nav a {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: var(--primary-light);
    color: var(--primary);
}

.mobile-menu-cta {
    margin-top: auto;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu-cta .btn {
    width: 100%;
}

/* Mobile Menu Button Animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =====================================================
   ANIMATION CLASSES
   ===================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations for grid items */
.events-grid .event-card:nth-child(1) { transition-delay: 0.1s; }
.events-grid .event-card:nth-child(2) { transition-delay: 0.2s; }
.events-grid .event-card:nth-child(3) { transition-delay: 0.3s; }
.events-grid .event-card:nth-child(4) { transition-delay: 0.4s; }
.events-grid .event-card:nth-child(5) { transition-delay: 0.5s; }
.events-grid .event-card:nth-child(6) { transition-delay: 0.6s; }

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
