/* ==========================================================================
   Chatan Shiv Kali Mandir — Official Website Stylesheet
   Traditional Temple Aesthetics + Modern Clean Web Design
   Authentic, Devotional, Human-Crafted, Responsive
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Hind+Siliguri:wght@400;500;600;700&family=Noto+Serif+Bengali:wght@500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* =========================
   DESIGN TOKENS & PALETTE
   ========================= */
:root {
    /* Exact Temple-Inspired Palette */
    --color-maroon: #3B0A0A;
    --color-maroon-dark: #2A0606;
    --color-maroon-light: #521212;
    --color-temple-red: #7A1F1F;
    --color-temple-red-hover: #962525;
    --color-saffron: #D89B2B;
    --color-saffron-light: #EBB655;
    --color-warm-gold: #C89B3C;
    --color-gold-border: rgba(200, 155, 60, 0.35);
    --color-cream: #FFF8E8;
    --color-cream-card: #FAF2DF;
    --color-cream-tint: #F5E9CC;
    --color-dark: #211B18;
    --color-dark-muted: #5C5049;
    --color-white: #FFFFFF;

    /* Typography */
    --font-heading: 'Cinzel', 'Noto Serif Bengali', Georgia, serif;
    --font-body: 'Outfit', 'Hind Siliguri', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing & Radii */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 10px;
    --radius-pill: 40px;

    /* Subtle Natural Shadows */
    --shadow-subtle: 0 2px 10px rgba(33, 27, 24, 0.05);
    --shadow-card: 0 4px 16px rgba(59, 10, 10, 0.07);
    --shadow-hover: 0 8px 24px rgba(59, 10, 10, 0.12);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
}

/* =========================
   RESET & BASE STYLES
   ========================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background-color: var(--color-cream);
    line-height: 1.65;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

ul {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-maroon);
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: clamp(2.1rem, 4.8vw, 3.4rem);
}

h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
    font-size: 1.05rem;
    color: var(--color-dark-muted);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 46px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-temple-red);
    margin-bottom: 8px;
}

.ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 10px auto 18px;
}

.ornament-divider .line {
    width: 44px;
    height: 1px;
    background: var(--color-warm-gold);
    opacity: 0.6;
}

.ornament-divider .symbol {
    color: var(--color-warm-gold);
    font-size: 1.1rem;
}

/* Container */
.container {
    width: 100%;
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

section {
    padding: 75px 0;
    position: relative;
}

/* =========================
   BUTTONS
   ========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--color-temple-red-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 31, 31, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-warm-gold);
}

.btn-secondary:hover {
    background-color: rgba(200, 155, 60, 0.18);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--color-warm-gold);
    color: var(--color-maroon);
    font-weight: 700;
}

.btn-gold:hover {
    background-color: var(--color-saffron);
    color: var(--color-maroon);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-temple-red);
    border-color: var(--color-temple-red);
}

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

.btn-facebook {
    background-color: #1877F2;
    color: var(--color-white);
    border-color: #1877F2;
}

.btn-facebook:hover {
    background-color: #0E65D9;
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-map {
    background-color: #34A853;
    color: var(--color-white);
    border-color: #34A853;
}

.btn-map:hover {
    background-color: #2D8E47;
    color: var(--color-white);
    transform: translateY(-2px);
}

/* =========================
   HEADER / NAVBAR
   ========================= */
header.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--color-maroon);
    border-bottom: 2px solid var(--color-warm-gold);
    transition: all var(--transition-fast);
}

header.site-header.scrolled {
    background-color: rgba(59, 10, 10, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    transition: padding var(--transition-fast);
}

header.site-header.scrolled .navbar {
    padding: 8px 0;
}

/* Brand */
.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--color-warm-gold);
    object-fit: cover;
    background-color: var(--color-maroon-dark);
}

.brand-titles {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.78rem;
    color: var(--color-saffron-light);
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-item a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.96rem;
    font-weight: 500;
    padding: 6px 2px;
    position: relative;
    display: inline-block;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-warm-gold);
    transition: width var(--transition-fast);
}

.nav-item a:hover,
.nav-item a.active {
    color: var(--color-saffron-light);
}

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

/* Mobile Hamburger Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--color-warm-gold);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   HERO SECTION
   ========================= */
.hero-section {
    position: relative;
    min-height: clamp(560px, 70vh, 720px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--color-maroon-dark);
    overflow: hidden;
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at center, rgba(59, 10, 10, 0.48) 0%, rgba(33, 6, 6, 0.88) 95%),
        linear-gradient(to bottom, rgba(59, 10, 10, 0.35) 0%, rgba(33, 6, 6, 0.88) 100%),
        url('../image/temple-utsav.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}

.hero-overlay-border {
    position: absolute;
    inset: 14px;
    pointer-events: none;
    border: 1px solid rgba(200, 155, 60, 0.22);
    border-radius: var(--radius-sm);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 840px;
    padding: 35px 20px;
    color: var(--color-white);
}

.hero-emblem {
    font-size: 2.2rem;
    color: var(--color-warm-gold);
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-title {
    font-size: clamp(2.4rem, 5.2vw, 3.8rem);
    color: var(--color-white);
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    color: var(--color-saffron-light);
    margin-bottom: 16px;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 650px;
    margin: 0 auto 32px;
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* =========================
   COMMUNITY WARM MESSAGE
   ========================= */
.community-banner-section {
    background-color: var(--color-maroon);
    border-top: 2px solid var(--color-warm-gold);
    border-bottom: 2px solid var(--color-warm-gold);
    padding: 36px 0;
    color: var(--color-white);
    text-align: center;
}

.community-banner-content {
    max-width: 820px;
    margin: 0 auto;
}

.community-banner-tag {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-saffron-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
}

.community-banner-msg {
    font-family: 'Noto Serif Bengali', serif;
    font-size: clamp(1.25rem, 2.6vw, 1.65rem);
    color: var(--color-white);
    line-height: 1.5;
    font-weight: 600;
}

/* =========================
   ABOUT SECTION
   ========================= */
.about-section {
    background-color: var(--color-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: center;
}

.about-image-frame {
    position: relative;
    border-radius: var(--radius-md);
    background: var(--color-white);
    padding: 10px;
    border: 1px solid var(--color-gold-border);
    box-shadow: var(--shadow-card);
}

.about-image-frame::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px dashed var(--color-warm-gold);
    border-radius: calc(var(--radius-md) + 3px);
    pointer-events: none;
}

.about-image {
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: var(--radius-sm);
    display: block;
}

.about-badge {
    position: absolute;
    bottom: 22px;
    left: 22px;
    background: rgba(59, 10, 10, 0.92);
    color: var(--color-saffron-light);
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    border-left: 3px solid var(--color-warm-gold);
}

.about-content h2 {
    margin-bottom: 12px;
}

.about-intro {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-maroon);
    margin-bottom: 14px;
}

.about-text p {
    margin-bottom: 14px;
    font-size: 1.05rem;
}

/* Clear marked placeholder */
.placeholder-card {
    background-color: var(--color-cream-card);
    border-left: 4px solid var(--color-saffron);
    padding: 14px 18px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
    font-size: 0.95rem;
    color: #593503;
    border-top: 1px solid rgba(216, 155, 43, 0.2);
    border-bottom: 1px solid rgba(216, 155, 43, 0.2);
    border-right: 1px solid rgba(216, 155, 43, 0.2);
}

.placeholder-card strong {
    color: var(--color-maroon);
    display: block;
    margin-bottom: 4px;
}

/* =========================
   DAILY PUJA SECTION
   ========================= */
.puja-section {
    background-color: var(--color-cream-card);
    border-top: 1px solid rgba(122, 31, 31, 0.1);
    border-bottom: 1px solid rgba(122, 31, 31, 0.1);
}

.puja-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.puja-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-gold-border);
    border-radius: var(--radius-md);
    padding: 0;
    text-align: center;
    box-shadow: var(--shadow-subtle);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.puja-card-img-wrapper {
    width: 100%;
    height: 190px;
    overflow: hidden;
    background-color: #210707;
    position: relative;
}

.puja-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.puja-card:hover .puja-card-img {
    transform: scale(1.05);
}

.puja-card-content {
    padding: 24px 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.puja-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-temple-red), var(--color-warm-gold));
    z-index: 2;
}

.puja-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.puja-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: inline-block;
}

.puja-card h3 {
    margin-bottom: 10px;
    color: var(--color-maroon);
}

.puja-time-slot {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--color-temple-red);
    font-weight: 700;
    margin-bottom: 10px;
    padding: 6px 12px;
    background: var(--color-cream);
    display: inline-block;
    border-radius: var(--radius-sm);
    border: 1px dashed var(--color-gold-border);
}

.puja-desc {
    font-size: 0.95rem;
    color: var(--color-dark-muted);
}

/* =========================
   MAIN FESTIVALS SECTION
   ========================= */
.festivals-section {
    background-color: var(--color-maroon);
    color: var(--color-white);
    padding: 85px 0;
}

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

.festivals-section .section-tag {
    color: var(--color-saffron-light);
}

.festival-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
    margin-top: 20px;
}

.festival-card {
    background-color: var(--color-maroon-dark);
    border: 1px solid var(--color-warm-gold);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.festival-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-saffron-light);
}

.festival-img-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background-color: #1a0404;
}

.festival-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.6s ease;
}

.festival-card:hover .festival-img {
    transform: scale(1.04);
}

.festival-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--color-temple-red);
    color: var(--color-white);
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    border: 1px solid var(--color-warm-gold);
}

.festival-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.festival-body h3 {
    font-size: 1.8rem;
    color: var(--color-saffron-light);
    margin-bottom: 12px;
}

.festival-body p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 22px;
    line-height: 1.65;
    flex-grow: 1;
}

.festival-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(200, 155, 60, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

/* =========================
   TEMPLE GALLERY (BENGALI ONLY)
   ========================= */
.gallery-section {
    background-color: var(--color-cream);
}

.gallery-section h2 {
    font-family: 'Noto Serif Bengali', serif;
}

.gallery-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.filter-btn {
    background-color: transparent;
    color: var(--color-dark);
    border: 1px solid var(--color-gold-border);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Noto Serif Bengali', var(--font-body);
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--color-temple-red);
    color: var(--color-temple-red);
}

.filter-btn.active {
    background-color: var(--color-temple-red);
    border-color: var(--color-temple-red);
    color: var(--color-white);
}

/* Asymmetric Masonry-style Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 18px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--color-gold-border);
    background-color: var(--color-white);
    box-shadow: var(--shadow-subtle);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-thumbnail {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 6, 6, 0.9) 0%, rgba(42, 6, 6, 0.2) 65%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    color: var(--color-white);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

.gallery-overlay-tag {
    font-size: 0.78rem;
    color: var(--color-saffron-light);
    margin-bottom: 2px;
    font-family: 'Noto Serif Bengali', serif;
}

.gallery-overlay-title {
    font-family: 'Noto Serif Bengali', serif;
    font-size: 1.08rem;
    color: var(--color-white);
}

.gallery-zoom-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(200, 155, 60, 0.92);
    color: var(--color-maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 4, 4, 0.95);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.lightbox-modal.is-open {
    display: flex;
    opacity: 1;
}

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img-wrapper {
    max-width: 100%;
    max-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-warm-gold);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
}

.lightbox-caption-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    color: var(--color-white);
}

.lightbox-caption-title {
    font-family: 'Noto Serif Bengali', serif;
    font-size: 1.15rem;
    color: var(--color-saffron-light);
}

.lightbox-counter {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(59, 10, 10, 0.85);
    border: 1px solid var(--color-warm-gold);
    color: var(--color-white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all var(--transition-fast);
    z-index: 2010;
}

.lightbox-btn:hover {
    background-color: var(--color-temple-red);
}

.lightbox-prev {
    left: -58px;
}

.lightbox-next {
    right: -58px;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2.2rem;
    cursor: pointer;
    z-index: 2020;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--color-saffron-light);
}

/* =========================
   VISIT & CONTACT SECTIONS
   ========================= */
.visit-section {
    background-color: var(--color-cream-card);
    border-top: 1px solid rgba(122, 31, 31, 0.1);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.info-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-gold-border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: var(--shadow-subtle);
}

.info-card h3 {
    margin-bottom: 16px;
    color: var(--color-maroon);
    border-bottom: 1px solid rgba(122, 31, 31, 0.1);
    padding-bottom: 8px;
}

.info-item-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.info-item .icon {
    font-size: 1.25rem;
    color: var(--color-temple-red);
    line-height: 1.3;
}

.info-item strong {
    display: block;
    color: var(--color-maroon);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.info-item p {
    font-size: 0.98rem;
    margin: 0;
    color: var(--color-dark);
}

.info-item a.phone-link {
    color: var(--color-temple-red);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    display: inline-block;
    margin-top: 2px;
}

.info-item a.phone-link:hover {
    color: var(--color-maroon);
    text-decoration: underline;
}

.card-action-bar {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* =========================
   OFFICIAL FACEBOOK SECTION
   ========================= */
.facebook-section {
    background: linear-gradient(135deg, #FFF8E8 0%, #FAF0D7 100%);
    border-top: 1px solid var(--color-gold-border);
    border-bottom: 1px solid var(--color-gold-border);
    padding: 50px 0;
    text-align: center;
}

.facebook-box {
    max-width: 650px;
    margin: 0 auto;
    background: var(--color-white);
    border: 1px solid var(--color-gold-border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    box-shadow: var(--shadow-subtle);
}

.facebook-icon {
    font-size: 2.4rem;
    color: #1877F2;
    margin-bottom: 8px;
}

.facebook-box h3 {
    margin-bottom: 8px;
}

.facebook-box p {
    margin-bottom: 20px;
    font-size: 0.98rem;
}

/* =========================
   FOOTER & DEVELOPER CREDIT
   ========================= */
footer.site-footer {
    background-color: var(--color-maroon-dark);
    color: var(--color-white);
    border-top: 2px solid var(--color-warm-gold);
    padding: 60px 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 36px;
    margin-bottom: 35px;
}

.footer-brand .brand-link {
    margin-bottom: 12px;
}

.footer-motto {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-saffron-light);
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    max-width: 440px;
    line-height: 1.6;
}

.footer-col h4 {
    color: var(--color-saffron-light);
    font-size: 1.15rem;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(200, 155, 60, 0.25);
    padding-bottom: 6px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.94rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-saffron-light);
    transform: translateX(3px);
}

.footer-contact-info p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

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

/* Suman Das Developer Credit */
.developer-credit-box {
    text-align: center;
    padding: 16px 0;
    margin-bottom: 16px;
    border-top: 1px solid rgba(200, 155, 60, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
}

.developer-credit-box p {
    color: rgba(255, 255, 255, 0.85);
    margin: 2px 0;
}

.developer-credit-box .dev-label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.78rem;
    color: var(--color-warm-gold);
    font-weight: 600;
}

.developer-credit-box .dev-name {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    color: var(--color-white);
    letter-spacing: 0.08em;
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */
@media (max-width: 992px) {
    .festival-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.wide {
        grid-column: span 1;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        background-color: var(--color-maroon-dark);
        border-bottom: 2px solid var(--color-warm-gold);
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 26px;
        gap: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--transition-fast), opacity var(--transition-fast);
        z-index: 999;
    }

    .nav-menu.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-item {
        width: 100%;
    }

    .nav-item a {
        font-size: 1.08rem;
        display: block;
        padding: 7px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .about-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        height: 310px;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
    }

    .gallery-item.tall {
        grid-row: span 1;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.05rem;
    }

    .brand-logo-img {
        width: 42px;
        height: 42px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .festival-img-wrapper {
        height: 240px;
    }

    section {
        padding: 55px 0;
    }
}