﻿/* =============================================================
   IRELAND DURGOTSAB — MAIN STYLESHEET
   Palette: Crimson #B5121B | Gold #D4AF37 | Saffron #FF6B00
   Fonts: Cormorant Garamond (headings) | Jost (body)
============================================================= */

/* ---------------------------
   CSS VARIABLES
--------------------------- */
:root {
    --crimson:       #B5121B;
    --crimson-dark:  #7A0C12;
    --crimson-light: #D4262F;
    --gold:          #D4AF37;
    --gold-light:    #F0D060;
    --gold-dark:     #9A7D1A;
    --saffron:       #FF6B00;
    --bg:            #09090F;
    --bg-surface:    #110808;
    --bg-card:       #160E0E;
    --text:          #F5F0E8;
    --text-muted:    #C9A87C;
    --text-dim:      #8A7060;
    --border:        rgba(212,175,55,0.18);
    --border-hover:  rgba(212,175,55,0.45);
    --overlay:       rgba(9,9,15,0.72);

    --font-heading:  'Cormorant Garamond', Georgia, serif;
    --font-body:     'Jost', system-ui, sans-serif;
    --font-mantra:   'Tiro Devanagari', 'Noto Serif Devanagari', serif;

    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  32px;

    --transition:      0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    --transition-slow: 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ---------------------------
   RESET & BASE
--------------------------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---------------------------
   TYPOGRAPHY
--------------------------- */
h1,h2,h3,h4,h5 { font-family: var(--font-heading); font-weight: 600; line-height: 1.15; letter-spacing: 0.01em; }
h1 { font-size: clamp(2.8rem,7vw,5.5rem); }
h2 { font-size: clamp(2rem,5vw,3.5rem); }
h3 { font-size: clamp(1.4rem,3vw,2rem); }
h4 { font-size: clamp(1.1rem,2vw,1.4rem); }
p  { font-size: clamp(0.95rem,1.5vw,1.1rem); color: var(--text-muted); line-height: 1.8; }

.section-label {
    font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.25em; text-transform: uppercase; color: var(--saffron);
    display: block; margin-bottom: 12px;
}
.section-title { color: var(--text); margin-bottom: 16px; }
.section-title span { color: var(--gold); }
.section-subtitle { max-width: 600px; margin: 0 auto 56px; text-align: center; font-size: 1.05rem; }

/* ---------------------------
   UTILITY
--------------------------- */
.container      { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.gold    { color: var(--gold); }
.crimson { color: var(--crimson-light); }
.saffron { color: var(--saffron); }

.divider {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, var(--crimson), var(--gold));
    margin: 20px auto; border-radius: 2px;
}
.divider-left { margin-left: 0; }

/* ---------------------------
   BUTTONS
--------------------------- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px; border-radius: 50px;
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    cursor: pointer; border: none; transition: var(--transition); text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
    color: var(--text); box-shadow: 0 4px 24px rgba(181,18,27,0.35);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--crimson-light), var(--crimson));
    box-shadow: 0 8px 32px rgba(181,18,27,0.5);
    transform: translateY(-2px); color: var(--text);
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg); box-shadow: 0 4px 24px rgba(212,175,55,0.3);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 8px 32px rgba(212,175,55,0.5);
    transform: translateY(-2px); color: var(--bg);
}
.btn-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--bg); transform: translateY(-2px); }

.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }

/* =============================================================
   HEADER
============================================================= */
.site-header {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000; padding: 24px 40px; transition: all 0.4s ease;
}
.site-header.scrolled {
    background: rgba(9,9,15,0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 14px 40px; border-bottom: 1px solid var(--border);
}
.header-container {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1400px; margin: 0 auto;
}

/* Logo — image */
.logo a { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-logo-img { height: 48px; width: auto; transition: var(--transition); filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }
.site-header.scrolled .site-logo-img { height: 40px; }

/* Logo — text fallback */
.logo h2 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--gold); letter-spacing: 0.03em; }
.logo h2 span { color: var(--text); }
.custom-logo { max-height: 52px; width: auto; }

.main-nav ul { display: flex; gap: 8px; align-items: center; }
.main-nav ul li a {
    font-family: var(--font-body); font-size: 0.875rem; font-weight: 500;
    color: var(--text); padding: 8px 16px; border-radius: 50px;
    transition: var(--transition); letter-spacing: 0.04em;
}
.main-nav ul li a:hover { color: var(--gold); background: rgba(212,175,55,0.08); }
.main-nav ul li.buy-tickets a {
    background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
    color: var(--text); padding: 9px 20px; box-shadow: 0 2px 16px rgba(181,18,27,0.3);
}
.main-nav ul li.buy-tickets a:hover {
    background: linear-gradient(135deg, var(--crimson-light), var(--crimson));
    box-shadow: 0 4px 24px rgba(181,18,27,0.5);
}

.menu-toggle { display: none; flex-direction: column; cursor: pointer; gap: 5px; z-index: 200; padding: 4px; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
    .menu-toggle { display: flex; }
    .main-nav {
        position: fixed; inset: 0; background: rgba(9,9,15,0.98);
        backdrop-filter: blur(20px); display: flex; justify-content: center; align-items: center;
        transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.77,0,0.18,1); z-index: 100;
    }
    .main-nav.active { transform: translateX(0); }
    .main-nav ul { flex-direction: column; text-align: center; gap: 4px; }
    .main-nav ul li a { font-size: 1.5rem; font-family: var(--font-heading); padding: 12px 32px; }
    .site-header { padding: 18px 24px; }
    .site-header.scrolled { padding: 12px 24px; }
}

/* =============================================================
   VIDEO BACKGROUND
============================================================= */
#globalVideo { position: fixed; inset: 0; z-index: -2; overflow: hidden; transition: opacity 1s ease; }
#globalVideo video { width: 100%; height: 100%; object-fit: cover; }
.global-overlay {
    position: fixed; inset: 0;
    background: linear-gradient(to bottom, rgba(9,9,15,0.55) 0%, rgba(9,9,15,0.65) 60%, rgba(9,9,15,0.88) 100%);
    z-index: -1; transition: background 0.6s ease;
}
.global-overlay.dark { background: rgba(9,9,15,0.85); }

/* =============================================================
   HERO
============================================================= */
#hero {
    height: 100vh; min-height: 640px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative; padding: 0 24px;
}
.hero-eyebrow {
    font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase; color: var(--saffron);
    margin-bottom: 20px; display: block;
    opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-title {
    font-family: var(--font-heading); font-size: clamp(3.5rem,9vw,7.5rem);
    font-weight: 700; color: var(--text); line-height: 1.05; margin-bottom: 12px;
    opacity: 0; transform: translateY(30px); animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-title .highlight {
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-year {
    font-size: clamp(1rem,2.5vw,1.6rem); color: var(--text-muted);
    font-family: var(--font-heading); font-style: italic; font-weight: 300;
    letter-spacing: 0.15em; margin-bottom: 32px;
    opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease 0.7s forwards;
}
.hero-tagline {
    font-size: clamp(0.95rem,1.8vw,1.15rem); color: var(--text-muted);
    max-width: 520px; margin: 0 auto 40px;
    opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease 0.85s forwards;
}
.hero-actions {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease 1s forwards;
}
.hero-scroll-hint {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0; animation: fadeIn 1s ease 1.5s forwards;
}
.hero-scroll-hint span { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-dim); }
.scroll-line {
    width: 1.5px; height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
}

/* =============================================================
   NAV DURGA
============================================================= */
#navdurga-story { position: relative; }
.durga-scroll-section {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; padding: 80px 0;
    opacity: 0; transform: translateY(60px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.durga-scroll-section.visible { opacity: 1; transform: translateY(0); }
.durga-scroll-section:nth-child(even) .durga-story-inner { flex-direction: row-reverse; }
.durga-story-inner {
    display: flex; align-items: center; gap: 80px;
    max-width: 1200px; margin: 0 auto; padding: 0 48px; width: 100%;
}
.durga-image-wrap { flex: 0 0 380px; position: relative; }
.durga-image-frame {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 3/4; box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.durga-image-frame::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(9,9,15,0.7) 100%);
    z-index: 1;
}
.durga-image-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.durga-scroll-section.visible .durga-image-frame img { transform: scale(1.06); }
.durga-image-wrap::before {
    content: ''; position: absolute; inset: -12px;
    border: 1.5px solid var(--border);
    border-radius: calc(var(--radius-lg) + 12px); z-index: -1;
}
.durga-text-wrap { flex: 1; min-width: 0; position: relative; }
.durga-bg-number {
    font-family: var(--font-heading); font-size: 8rem; font-weight: 700; line-height: 1;
    color: rgba(212,175,55,0.05); position: absolute; top: -30px; left: -10px;
    pointer-events: none; user-select: none; z-index: 0;
}
.durga-text-content { position: relative; z-index: 1; }
.durga-day-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--saffron); margin-bottom: 12px; display: block; }
.durga-name { font-family: var(--font-heading); font-size: clamp(2.8rem,5vw,4.5rem); font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.1; }
.durga-name-devanagari { font-family: var(--font-mantra); font-size: 1.2rem; color: var(--gold); font-weight: 400; margin-bottom: 28px; display: block; }
.durga-mantra-block {
    background: rgba(212,175,55,0.05); border: 1px solid var(--border);
    border-left: 3px solid var(--gold); padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-bottom: 28px;
}
.durga-mantra-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); display: block; margin-bottom: 6px; }
.durga-mantra-text { font-family: var(--font-mantra); font-size: 1.05rem; color: var(--gold-light); font-style: italic; display: block; }
.durga-description { color: var(--text-muted); font-size: 1rem; line-height: 1.85; margin-bottom: 32px; }
.durga-attributes { display: flex; flex-wrap: wrap; gap: 8px; }
.durga-tag {
    font-size: 0.78rem; font-weight: 500; color: var(--text-muted);
    background: rgba(255,255,255,0.04); border: 1px solid var(--border);
    padding: 6px 14px; border-radius: 50px; transition: var(--transition);
}
.durga-tag:hover { border-color: var(--gold); color: var(--gold); }
.navdurga-divider { display: flex; justify-content: center; align-items: center; gap: 16px; padding: 16px 0; opacity: 0.3; }
.navdurga-divider-line { height: 1px; width: 80px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.navdurga-divider-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* =============================================================
   PUJA DETAILS
============================================================= */
#puja-details { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.puja-details-header { text-align: center; margin-bottom: 64px; }
.puja-cards-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 20px; margin-bottom: 48px; }
.puja-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px 24px; text-align: center;
    transition: var(--transition); position: relative; overflow: hidden;
}
.puja-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--crimson), var(--gold)); opacity: 0; transition: var(--transition);
}
.puja-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.4); }
.puja-card:hover::before { opacity: 1; }
.puja-card-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(181,18,27,0.12), rgba(212,175,55,0.1));
    border: 1px solid var(--border); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.4rem;
}
.puja-card h4 { color: var(--gold); font-family: var(--font-heading); font-size: 0.9rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.1em; }
.puja-card-value { font-family: var(--font-heading); font-size: 1.4rem; color: var(--text); font-weight: 600; line-height: 1.4; }
.puja-card p { color: var(--text-muted); font-size: 0.9rem; margin-top: 6px; }
.puja-announcement {
    background: linear-gradient(135deg, rgba(181,18,27,0.1), rgba(212,175,55,0.06));
    border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 32px;
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.announcement-badge {
    background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
    color: var(--text); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; padding: 6px 14px; border-radius: 50px; white-space: nowrap; flex-shrink: 0;
}
.announcement-text { color: var(--text-muted); font-size: 0.95rem; flex: 1; margin: 0; }

/* =============================================================
   GALLERY
============================================================= */
#gallery-preview { position: relative; }
.gallery-header { text-align: center; margin-bottom: 56px; }
.gallery-masonry { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 200px; gap: 10px; margin-bottom: 40px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-md); background: var(--bg-card); cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 3; }
.gallery-item:nth-child(6) { grid-column: span 7; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(9,9,15,0.7) 0%, transparent 60%);
    opacity: 0; transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-overlay-icon {
    width: 48px; height: 48px; background: rgba(212,175,55,0.15);
    border: 1.5px solid var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(8px); transform: scale(0.8); transition: var(--transition);
}
.gallery-item:hover .gallery-overlay-icon { transform: scale(1); }
.gallery-placeholder {
    width: 100%; height: 100%; display: flex; flex-direction: column;
    align-items: center; justify-content: center; color: var(--text-dim);
    font-size: 0.72rem; letter-spacing: 0.12em; gap: 10px; text-transform: uppercase;
    border: 1px dashed rgba(212,175,55,0.12); border-radius: var(--radius-md);
}
.placeholder-icon { font-size: 1.5rem; opacity: 0.3; }
.gallery-cta { text-align: center; }

/* =============================================================
   SPONSORS
============================================================= */
#sponsors { background: var(--bg-surface); border-top: 1px solid var(--border); }
.sponsors-header { text-align: center; margin-bottom: 56px; }
.sponsor-tier { margin-bottom: 48px; }

/* 2x2 sponsor grid */
.sponsors-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 48px;
    margin-bottom: 48px;
    align-items: start;
}
.sponsor-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.sponsor-cell .sponsor-tier-label {
    margin-bottom: 24px;
}
.sponsor-cell .sponsor-logos-row {
    justify-content: center;
}
@media (max-width: 640px) {
    .sponsors-row { grid-template-columns: 1fr; gap: 0; }
}
.sponsor-tier-label {
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--text-dim); text-align: center; margin-bottom: 24px;
    display: flex; align-items: center; justify-content: center; gap: 12px;
}
.sponsor-tier-label::before, .sponsor-tier-label::after { content: ''; display: block; height: 1px; width: 60px; background: var(--border); }
.sponsor-logos-row { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 16px; }
.sponsor-logo-item {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md);
    padding: 20px 32px; display: flex; align-items: center; justify-content: center;
    transition: var(--transition); min-width: 160px; min-height: 76px;
}
.sponsor-logo-item:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.sponsor-logo-item img { max-width: 140px; max-height: 60px; width: auto; height: auto; object-fit: contain; filter: grayscale(80%) brightness(1.3); transition: var(--transition); }
.sponsor-logo-item:hover img { filter: grayscale(0%) brightness(1); }
.sponsor-placeholder-text { font-family: var(--font-heading); font-size: 0.95rem; color: var(--text-dim); font-style: italic; }
.sponsor-cta { text-align: center; margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border); }
.sponsor-cta p { margin-bottom: 20px; }

/* =============================================================
   FOOTER
============================================================= */
#site-footer { background: #060409; border-top: 1px solid var(--border); padding-top: 80px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid var(--border); }
.footer-brand h3 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--gold); margin-bottom: 4px; }
.footer-brand .tagline { font-size: 0.78rem; color: var(--text-dim); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 16px; font-style: italic; display: block; }
.footer-brand p { font-size: 0.875rem; color: var(--text-dim); line-height: 1.75; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
    width: 38px; height: 38px; background: rgba(255,255,255,0.04);
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dim); font-size: 0.85rem; transition: var(--transition);
}
.social-link:hover { background: rgba(212,175,55,0.1); border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.footer-col h4 { font-family: var(--font-heading); font-size: 0.95rem; color: var(--text); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: var(--text-dim); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-icon { color: var(--gold); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; width: 16px; }
.footer-contact-item span { font-size: 0.875rem; color: var(--text-dim); line-height: 1.6; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; color: var(--text-dim); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.78rem; color: var(--text-dim); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* =============================================================
   ANIMATIONS
============================================================= */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================================
   RESPONSIVE
============================================================= */
@media (max-width: 1100px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .durga-image-wrap { flex: 0 0 320px; }
    .durga-story-inner { gap: 48px; }
}
@media (max-width: 768px) {
    .durga-story-inner,
    .durga-scroll-section:nth-child(even) .durga-story-inner { flex-direction: column; gap: 36px; padding: 0 20px; }
    .durga-image-wrap { flex: 0 0 auto; width: 100%; max-width: 320px; margin: 0 auto; }
    .durga-image-frame { aspect-ratio: 4/5; }
    .gallery-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
    .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .puja-announcement { flex-direction: column; text-align: center; }
    .hero-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
    .gallery-masonry { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    :root { --radius-lg: 14px; }
}

/* =============================================================
   HEADER ACCOUNT BUTTON
============================================================= */
.header-account { display: flex; align-items: center; margin-left: 8px; flex-shrink: 0; }
.header-account-btn {
    display: inline-flex; align-items: center; gap: 7px; padding: 8px 18px;
    border-radius: 50px; font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
    transition: var(--transition); white-space: nowrap; line-height: 1;
}
.header-account-btn--out { border: 1px solid rgba(212,175,55,0.5); color: var(--gold); background: transparent; }
.header-account-btn--out:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); box-shadow: 0 4px 16px rgba(212,175,55,0.3); }
.header-account-btn--in { border: 1px solid var(--border); color: var(--text-muted); background: rgba(255,255,255,0.04); max-width: 160px; }
.header-account-btn--in span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.header-account-btn--in:hover { border-color: rgba(212,175,55,0.3); color: var(--gold); background: rgba(212,175,55,0.06); }
.main-menu li a[href*=my-account], .main-menu li a[href*=my-account]:hover { display: none; }
.main-menu li:has(a[href*=my-account]) { display: none; }
@media (max-width: 900px) { .header-account { display: none; } }
﻿
