/* ==================================
   TEMPLE WEBSITE - MAIN STYLESHEET
   Canada Sri Shanmuganatha Swamy Hindu Temple
   ================================== */

/* CSS VARIABLES - Divine Warmth Theme */
:root {
    /* Divine Warmth Color Palette */
    --primary-color: #E65100;       /* Sacred Saffron - purity, fire, divinity */
    --secondary-color: #F9A825;     /* Marigold Gold - radiant, auspicious */
    --accent-color: #C62828;        /* Temple Red - energy, contrast */
    --text-dark: #212121;           /* Deep Charcoal - strong readability */
    --text-light: #FFFFFF;          /* Pure White */
    --bg-light: #FFF8E1;            /* Ivory Sand - soft, spiritual */
    --bg-white: #FFFFFF;            /* Pure White */
    --border-color: #F9A825;        /* Marigold Gold border */
    
    /* Effects */
    --shadow: 0 2px 10px rgba(230, 81, 0, 0.15);
    --shadow-hover: 0 4px 20px rgba(230, 81, 0, 0.25);
    --transition: all 0.3s ease;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Merriweather', serif;
}

/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background: #6B0000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: #B8960F;
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* NAVIGATION BAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a.active {
    color: var(--primary-color);
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(214, 61, 68, 0.5), rgba(214, 61, 68, 0.5)),
                url('../images/temple-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(214, 61, 68, 0.4), 
        rgba(214, 61, 68, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.temple-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #FFFDF6;
}

.temple-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--text-light);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* PAGE HEADER */
.page-header {
    height: 400px;
    background: linear-gradient(rgba(214, 61, 68, 0.6), rgba(214, 61, 68, 0.6)),
                url('../images/temple-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
    margin-top: 80px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(214, 61, 68, 0.5), 
        rgba(214, 61, 68, 0.4));
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: #FFFDF6;
}

.page-header p {
    font-size: 1.3rem;
    font-weight: 300;
}

/* SECTION STYLES */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    margin: 0 auto 1rem;
}

/* QUICK INFO SECTION */
.quick-info {
    background: var(--bg-light);
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding: 3rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: var(--bg-white);
    padding: 2rem 1.2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: 360px;
    justify-content: flex-start;
    align-items: center;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.info-card i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    flex-shrink: 0;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-card p {
    color: #555;
    margin-bottom: 0.6rem;
    line-height: 1.6;
    font-size: 0.85rem;
    word-break: break-word;
    overflow-wrap: break-word;
    width: 100%;
    max-width: 100%;
}

/* Smaller font for long email addresses */
.info-card p.email-text {
    font-size: 0.72rem;
    line-height: 1.5;
}

.info-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    padding-top: 1rem;
    display: inline-block;
    font-size: 0.9rem;
}

/* ABOUT PREVIEW */
.about-preview {
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SERVICES PREVIEW */
.services-preview {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* ANNOUNCEMENTS */
.announcements {
    background: var(--primary-color);
    color: var(--text-light);
}

.announcements .section-header h2,
.announcements .divider {
    color: var(--text-light);
    background: var(--secondary-color);
}

.announcement-slider {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.announcement-item {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.announcement-item i {
    font-size: 2rem;
    color: var(--secondary-color);
}

/* SOCIAL FEED */
.social-feed {
    background: var(--bg-white);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.social-embed {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.social-embed h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-embed h3 i {
    margin-right: 0.5rem;
}

/* FOOTER */
.footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

/* Smaller font for long email in footer */
.footer-section p.footer-email {
    font-size: 0.8rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: white;
}

/* Facebook - Official Brand Color */
.social-links a[href*="facebook"] {
    background: #1877F2;
}

.social-links a[href*="facebook"]:hover {
    background: #0C63D4;
    transform: translateY(-3px);
}

/* YouTube - Official Brand Color */
.social-links a[href*="youtube"] {
    background: #FF0000;
}

.social-links a[href*="youtube"]:hover {
    background: #CC0000;
    transform: translateY(-3px);
}

/* Instagram - Official Brand Color (if added in future) */
.social-links a[href*="instagram"] {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.social-links a[href*="instagram"]:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

/* Twitter/X - Official Brand Color (if added in future) */
.social-links a[href*="twitter"],
.social-links a[href*="x.com"] {
    background: #000000;
}

.social-links a[href*="twitter"]:hover,
.social-links a[href*="x.com"]:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--secondary-color);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 80px;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        right: 0;
    }

    .temple-title {
        font-size: 2.5rem;
    }

    .temple-subtitle {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

/* TEXT CENTER UTILITY */
.text-center {
    text-align: center;
}

/* MARGIN TOP */
.mt-2 { margin-top: 2rem; }

/* ========================================
   ABOUT PAGE SPECIFIC STYLES
   ======================================== */

/* About Section - Center aligned */
.about-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.about-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-image-large {
    width: 100%;
    max-width: 700px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-image-large img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text-content {
    max-width: 800px;
}

.about-text-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-text-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* Mission Section - Center aligned */
.mission-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.mission-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission-card p {
    line-height: 1.7;
    color: #555;
}

/* Deity Section - Center aligned */
.deity-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.deity-section .section-header {
    text-align: center;
}

.deity-section .section-header h2 {
    text-align: center;
}

.deity-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.deity-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.deity-image {
    max-width: 600px;
    margin: 0 auto 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.deity-image img {
    width: 100%;
    height: auto;
    display: block;
}

.deity-image-container {
    max-width: 600px;
    margin: 0 auto 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.deity-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.deity-description {
    max-width: 750px;
    margin: 0 auto 2rem;
}

.deity-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mantras {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    max-width: 650px;
    margin: 0 auto;
}

.mantras h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.mantra-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
    margin: 0.5rem 0;
    font-weight: 600;
}

/* Team Section - Center aligned */
.team-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.team-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.team-member {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-image i {
    font-size: 5rem;
    color: var(--bg-white);
}

.team-info {
    padding: 2rem;
}

.team-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-info .role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Location Section - Center aligned */
.location-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.location-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
}


/* POOJA PAGE STYLES */
.pooja-categories {
    padding: 5rem 0;
    background: var(--bg-white);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.pooja-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.pooja-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.pooja-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.pooja-card.featured {
    border-color: var(--secondary-color);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 10;
}

.pooja-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    padding: 2rem;
    text-align: center;
}

.pooja-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pooja-details {
    padding: 2rem;
}

.description {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #888;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-left: 0.5rem;
}

.book-btn {
    width: 100%;
}

/* MODAL STYLES */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(230, 81, 0, 0.85);
    overflow-y: auto;
}

.modal-content {
    background: var(--bg-white);
    margin: 5% auto;
    padding: 3rem;
    max-width: 600px;
    border-radius: 15px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* EVENTS PAGE STYLES */
.events-grid {
    display: grid;
    gap: 3rem;
}

.event-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.event-card:hover {
    box-shadow: var(--shadow-hover);
}

.event-image {
    position: relative;
    height: 100%;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Clickable Event Image */
.event-image-clickable {
    cursor: pointer;
    overflow: hidden;
}

.event-image-clickable:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.image-zoom-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.event-image-clickable:hover .image-zoom-hint {
    opacity: 1;
}

.image-zoom-hint i {
    font-size: 1rem;
}

/* Event Image Lightbox */
.event-lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.event-lightbox.show {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.event-lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    margin: 0 auto;
}

.event-lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10001;
}

.event-lightbox-close:hover,
.event-lightbox-close:focus {
    color: #bbb;
}

.event-lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    max-width: 80%;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .image-zoom-hint span {
        display: none;
    }
    
    .image-zoom-hint {
        padding: 10px;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        justify-content: center;
        opacity: 0.8;
    }
    
    .event-lightbox.show {
        padding: 60px 10px 80px;
    }
    
    .event-lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 35px;
    }
    
    .event-lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }
    
    .event-lightbox-caption {
        bottom: 10px;
        font-size: 0.95rem;
        padding: 10px 20px;
        max-width: 90%;
    }
}

.event-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
}

.event-date-badge .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.event-date-badge .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.event-content {
    padding: 2rem;
}

.event-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    color: #666;
}

.event-highlights {
    margin: 1.5rem 0;
}

.event-highlights ul {
    list-style: disc;
    padding-left: 1.5rem;
}

/* GALLERY PAGE STYLES */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--bg-light);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(230, 81, 0, 0.95));
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: var(--transition);
    color: var(--text-light);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.btn-view {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .btn-view {
    opacity: 1;
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 33, 33, 0.95);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* Video Gallery Section - Centered */
.video-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.video-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

/* Video Embed Container - Responsive 16:9 Aspect Ratio */
.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Legacy thumbnail styles for backward compatibility */
.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(230, 81, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.play-button i {
    font-size: 2rem;
    color: var(--text-light);
    margin-left: 5px;
}

.video-item:hover .play-button {
    background: var(--accent-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.video-item p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    font-size: 0.95rem;
}

/* DEVOTIONAL SONGS SECTION */
.devotional-songs-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

/* Playlist Player */
.playlist-player {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.playlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.now-playing-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.playlist-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: contain;
    padding: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.track-info h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    font-family: 'Playfair Display', serif;
}

.track-info p {
    color: #666;
    font-size: 0.95rem;
}

.playlist-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: right;
}

.playlist-stats span {
    color: #666;
    font-size: 0.9rem;
}

.playlist-stats i {
    color: var(--secondary-color);
    margin-right: 0.3rem;
}

#playlist-audio {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 10px;
}

.playlist-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.control-btn {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-color);
    font-size: 1rem;
}

.control-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.control-btn.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.play-all-btn {
    width: auto;
    min-width: 120px;
    padding: 0.75rem 1.8rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1976d2, #2196f3);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-all-btn:hover {
    background: linear-gradient(135deg, #1565c0, #1976d2);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.5);
}

.play-all-btn i {
    font-size: 1.1rem;
}

.track-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.track-progress span {
    color: #666;
    font-size: 0.85rem;
    min-width: 45px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

/* Responsive Playlist Player */
@media (max-width: 768px) {
    .playlist-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .playlist-stats {
        text-align: center;
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .playlist-controls {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .play-all-btn {
        width: 100%;
        max-width: 200px;
        padding: 0.65rem 1.2rem;
        font-size: 0.95rem;
        order: -1;
        margin-bottom: 0.5rem;
    }
    
    .play-all-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .playlist-player {
        padding: 1.5rem;
    }
    
    .playlist-controls {
        gap: 0.4rem;
    }
    
    .control-btn {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
    
    .play-all-btn {
        max-width: 180px;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

.devotional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.song-item {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    cursor: pointer;
}

.song-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.song-item.playing {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(135deg, rgba(249, 168, 37, 0.05), rgba(230, 81, 0, 0.05));
}

.song-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 8px;
}

.song-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.song-icon i {
    font-size: 1.8rem;
    color: var(--text-light);
}

.song-info {
    text-align: center;
}

.song-info h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.song-info p {
    color: #666;
    font-size: 0.9rem;
}

.song-item audio {
    width: 100%;
    height: 40px;
    border-radius: 25px;
    outline: none;
}

.song-item audio::-webkit-media-controls-panel {
    background: linear-gradient(135deg, rgba(230, 81, 0, 0.1), rgba(198, 40, 40, 0.1));
    border-radius: 25px;
}

/* DONATIONS PAGE */
/* Donation Letter Section */
.donation-letter {
    padding: 5rem 0;
    background: var(--bg-light);
}

.letter-container {
    max-width: 850px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Letterhead Header with Border Design */
.letter-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 2.5rem 3rem 2rem;
    text-align: center;
    position: relative;
    border-bottom: 5px solid var(--secondary-color);
}

.letter-header::before {
    content: "ॐ";
    position: absolute;
    top: 10px;
    left: 30px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
}

.letter-header::after {
    content: "ॐ";
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
}

.letter-header h2 {
    color: white;
    font-size: 1.9rem;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.temple-address {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin: 0.5rem 0;
    font-weight: 500;
}

.temple-contact {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-top: 0.8rem;
}

.temple-contact a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
}

.temple-contact a:hover {
    border-bottom-color: white;
}

.letter-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
    margin: 0;
}

/* Letter Body */
.letter-body {
    padding: 3rem 3.5rem 3rem;
    line-height: 1.9;
    color: #333;
    background: white;
}

.letter-body p {
    margin-bottom: 1.5rem;
    text-align: justify;
    text-indent: 2rem;
}

.letter-body p:first-child {
    text-indent: 0;
}

.letter-greeting {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    text-indent: 0 !important;
}

.letter-highlight {
    background: linear-gradient(to right, rgba(249, 168, 37, 0.1), rgba(230, 81, 0, 0.05));
    padding: 1.2rem 1.5rem;
    border-left: 5px solid var(--accent-color);
    margin: 2rem 0;
    font-size: 1.05rem;
    text-indent: 0 !important;
    border-radius: 0 8px 8px 0;
}

.letter-highlight a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--accent-color);
}

.letter-highlight a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.letter-closing {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    text-align: right;
    line-height: 1.8;
    text-indent: 0 !important;
}

/* Decorative Bottom Border */
.letter-body::after {
    content: "";
    display: block;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
    margin-top: 2rem;
    border-radius: 4px;
}

.donation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.donation-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.donation-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.donation-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.donation-icon i {
    font-size: 3rem;
    color: var(--text-light);
}

.suggested-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.quick-amounts {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.amount-btn {
    padding: 10px 20px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.amount-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

/* Recurring Donations - Side by Side Layout */
.recurring-donations {
    padding: 5rem 0;
    background: var(--bg-light);
}

.recurring-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.recurring-option {
    background: var(--bg-white);
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 3px solid transparent;
    position: relative;
}

.recurring-option:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.recurring-option.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(249, 168, 37, 0.1), rgba(230, 81, 0, 0.05));
}

.recurring-option.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 2px 10px rgba(249, 168, 37, 0.4);
}

.recurring-option h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.recurring-option .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.recurring-option ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.recurring-option ul li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-color);
    color: #555;
    font-size: 0.95rem;
}

.recurring-option ul li:before {
    content: "✓ ";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.recurring-option ul li:last-child {
    border-bottom: none;
}

/* Responsive Recurring Grid */
@media (max-width: 1200px) {
    .recurring-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .recurring-grid {
        grid-template-columns: 1fr;
    }
    
    .recurring-option.featured {
        transform: scale(1);
    }
}

/* Donation Form Section */
.custom-donation {
    padding: 5rem 0;
    background: var(--bg-light);
}

.donation-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.donation-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.form-note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Form Status Messages */
.form-status {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    display: none;
}

.form-status.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Honeypot hidden field */
.hidden {
    display: none !important;
    visibility: hidden !important;
}

.donation-info {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.donation-info h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.donation-info h3:first-child {
    margin-top: 0;
}

.donation-info h3 i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.donation-info p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.donation-info a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.donation-info a:hover {
    text-decoration: underline;
}

.donation-methods {
    list-style: none;
    padding: 0;
}

.donation-methods li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.donation-methods li:last-child {
    border-bottom: none;
}

.donation-methods li i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.3rem;
}

.donation-methods li div {
    flex: 1;
}

.donation-methods li strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.donation-methods li p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .donation-form-container {
        grid-template-columns: 1fr;
    }
    
    .donation-info {
        position: static;
    }
}

/* CONTACT PAGE */
.contact-info-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.contact-card p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
    flex-grow: 1;
}

.contact-card p strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.3rem;
}

.contact-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-card .btn {
    margin-top: auto;
    width: 100%;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact-form-section .container {
    max-width: 800px;
}

.contact-form-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.map-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-white);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: var(--secondary-color);
    transition: var(--transition);
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-light);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem 2rem;
    color: #555;
    line-height: 1.7;
}

/* Social Connect Section */
.social-connect {
    padding: 5rem 0;
    background: var(--bg-white);
}

.social-connect .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.social-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.social-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.social-card.facebook i {
    color: #1877F2;
}

.social-card.youtube i {
    color: #FF0000;
}

.social-card.instagram i {
    color: #E4405F;
}

.social-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.social-card .btn {
    margin-top: 1rem;
    width: 100%;
}

/* Social Connect Section (Contact Page) */
.social-connect-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.social-connect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.social-connect-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    display: block;
}

.social-connect-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.social-connect-card i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

/* Facebook - Official Brand Color */
.social-connect-card[href*="facebook"] i {
    color: #1877F2;
}

.social-connect-card[href*="facebook"]:hover {
    border-color: #1877F2;
}

/* YouTube - Official Brand Color */
.social-connect-card[href*="youtube"] i {
    color: #FF0000;
}

.social-connect-card[href*="youtube"]:hover {
    border-color: #FF0000;
}

/* Newsletter Card */
.social-connect-card:not([href]) i {
    color: var(--accent-color);
}

.social-connect-card:not([href]):hover {
    border-color: var(--accent-color);
}

.social-connect-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.social-connect-card p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.social-connect-card .social-handle {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 1rem;
}

.social-connect-card .btn {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .event-card {
        grid-template-columns: 1fr;
    }
    
    .event-image {
        height: 250px;
    }
}

/* ==================================
   CALENDAR TABS
   ================================== */

.calendar-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #FFFFFF 100%);
    padding: 4rem 0;
    position: relative;
}

.calendar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%, 
        var(--primary-color) 100%);
}

/* Month Tabs */
.month-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.month-tab {
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    padding: 0.8rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.month-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(230, 81, 0, 0.1), 
        transparent);
    transition: left 0.5s ease;
}

.month-tab:hover::before {
    left: 100%;
}

.month-tab:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 81, 0, 0.2);
}

.month-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(230, 81, 0, 0.3);
    transform: scale(1.05);
}

.month-tab.active:hover {
    transform: scale(1.05) translateY(-2px);
}

/* Calendar Content */
.calendar-content {
    max-width: 1400px;
    margin: 2rem auto 0;
    position: relative;
    padding: 0 2rem;
}

.calendar-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    position: relative;
    cursor: pointer;
}

.calendar-slide.active {
    display: block;
    opacity: 1;
    animation: fadeInScale 0.4s ease-in-out;
}

/* Calendar Image Clickable Styles */
.calendar-image-clickable {
    position: relative;
    overflow: hidden;
}

.calendar-image-clickable .image-zoom-hint {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(230, 81, 0, 0.9);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.calendar-image-clickable:hover .image-zoom-hint {
    opacity: 1;
}

.calendar-image-clickable .image-zoom-hint i {
    font-size: 1rem;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.calendar-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--border-color);
    transition: var(--transition);
}

.calendar-slide img:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transform: scale(1.01);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .month-tab {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .month-tabs {
        gap: 0.4rem;
    }
    
    .month-tab {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .calendar-section {
        padding: 3rem 0;
    }
    
    .month-tabs {
        gap: 0.3rem;
        margin: 1.5rem 0;
    }
    
    .month-tab {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .calendar-content {
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .calendar-section {
        padding: 2rem 0;
    }
    
    .month-tabs {
        gap: 0.25rem;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) #f0f0f0;
    }
    
    .month-tabs::-webkit-scrollbar {
        height: 6px;
    }
    
    .month-tabs::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 3px;
    }
    
    .month-tabs::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 3px;
    }
}

/* EVENT POPUP MODAL */
.event-popup-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    animation: fadeIn 0.3s ease;
}

.event-popup-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-popup-content {
    position: relative;
    background: var(--bg-white);
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.4s ease;
}

.event-popup-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px 20px 0 0;
}

.event-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    line-height: 1;
    padding-bottom: 5px;
}

.event-popup-close:hover,
.event-popup-close:focus {
    background: var(--accent-color);
    transform: rotate(90deg);
}

.event-popup-info {
    padding: 2rem;
    text-align: center;
}

.event-popup-info h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.event-popup-info p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.event-popup-info .btn {
    margin-top: 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Event Popup */
@media (max-width: 768px) {
    .event-popup-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .event-popup-info {
        padding: 1.5rem;
    }
    
    .event-popup-info h3 {
        font-size: 1.5rem;
    }
    
    .event-popup-info p {
        font-size: 1rem;
    }
    
    .event-popup-close {
        width: 40px;
        height: 40px;
        font-size: 2rem;
        top: 10px;
        right: 10px;
    }
    
    .month-tab {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .calendar-slide img {
        border-radius: 10px;
        border-width: 2px;
    }
    
    .calendar-image-clickable .image-zoom-hint span {
        display: none;
    }
    
    .calendar-image-clickable .image-zoom-hint {
        padding: 10px;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        justify-content: center;
        opacity: 0.8;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 400px) {
    .month-tab {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
}
