/* ==========================================================================
   VAISHNAVACHARYA SHREE ANUGRAH GOSWAMI WEBSITE STYLESHEET
   Theme: Divine Royal Red (#800000), Saffron Gold (#D4AF37 / #FFD700), Cream Ivory (#FFFDF7)
   Mobile-First Responsive Design, Advanced SEO, & Champaranya Jayanti Mahotsav
   ========================================================================== */

:root {
    --primary-red: #800000;
    --deep-red: #580000;
    --royal-red: #A30000;
    --bright-red: #D32F2F;
    --gold-primary: #D4AF37;
    --gold-bright: #FFD700;
    --gold-gradient: linear-gradient(135deg, #FFE259 0%, #FFA751 100%);
    --saffron: #FF9933;
    --ivory-bg: #FFFDF7;
    --cream-bg: #FDF9F0;
    --card-bg: rgba(255, 255, 255, 0.95);
    --dark-text: #2C1810;
    --light-text: #66554D;
    --border-gold: rgba(212, 175, 55, 0.35);
    --shadow-divine: 0 12px 35px rgba(128, 0, 0, 0.15);
    --shadow-gold-glow: 0 0 25px rgba(212, 175, 55, 0.4);
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Rozha One', 'Cinzel', serif;
    --font-subheading: 'Marcellus', 'Cinzel', serif;
    --font-body: 'Poppins', sans-serif;
}

/* Reset & Box Sizing */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--ivory-bg);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 70px;
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* CONTAINER WIDTH UPGRADED TO 1280PX */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Canvas for Flower Petals */
#flower-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

/* ==========================================================================
   DIVINE NON-BLOCKING TOAST NOTIFICATION
   ========================================================================== */
.pranam-toast-notification {
    position: fixed;
    top: 85px;
    left: 50%;
    transform: translate(-50%, -30px);
    z-index: 10000;
    width: 90%;
    max-width: 520px;
    background: rgba(128, 0, 0, 0.96);
    color: #FFFDF7;
    border: 2px solid var(--gold-bright);
    border-radius: 20px;
    padding: 16px 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35), var(--shadow-gold-glow);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.pranam-toast-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toast-icon {
    font-size: 2.2rem;
    animation: pulseGlow 2s infinite ease-in-out;
    flex-shrink: 0;
}

.toast-text {
    flex: 1;
}

.toast-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold-bright);
    margin-bottom: 2px;
}

.toast-desc {
    font-size: 0.85rem;
    line-height: 1.4;
    opacity: 0.95;
    margin-bottom: 4px;
}

.toast-count-info {
    font-size: 0.78rem;
    color: var(--gold-bright);
    font-weight: 600;
}

/* Animated Background Mandala */
.mandala-bg-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    opacity: 0.04;
    overflow: hidden;
}

.mandala-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px dashed var(--primary-red);
    transform: translate(-50%, -50%);
    animation: rotateSlow 60s linear infinite;
}

.ring-1 { width: 500px; height: 500px; }
.ring-2 { width: 800px; height: 800px; animation-direction: reverse; animation-duration: 90s; }
.ring-3 { width: 1100px; height: 1100px; animation-duration: 120s; }

@keyframes rotateSlow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateCounter {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

/* ==========================================================================
   HEADER & NAVBAR STYLES
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 253, 247, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gold);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(128, 0, 0, 0.12);
    background: rgba(255, 253, 247, 0.98);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.logo-avatar-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 2px solid var(--gold-bright);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
    flex-shrink: 0;
    transition: var(--transition);
}

.nav-logo:hover .logo-avatar-img {
    transform: scale(1.08);
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.7);
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.8)); }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1.1;
    white-space: nowrap;
}

.logo-sub {
    font-size: 0.72rem;
    color: var(--gold-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
}

@media (min-width: 992px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.nav-link i {
    color: var(--primary-red);
    font-size: 0.85rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-red);
    background: rgba(128, 0, 0, 0.06);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.pranam-nav-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pranam-pointer-badge {
    display: none;
}

@media (min-width: 992px) {
    .pranam-pointer-badge {
        display: block;
        position: absolute;
        top: -22px;
        background: linear-gradient(135deg, #FFD700 0%, #FFA751 100%);
        color: #2C1810;
        font-size: 0.72rem;
        font-weight: 700;
        padding: 3px 10px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        white-space: nowrap;
        animation: bounceVertical 2s infinite ease-in-out;
    }
}

@keyframes bounceVertical {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes bounceHorizontal {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-4px); }
}

.btn-pranam-nav {
    background: linear-gradient(135deg, #800000 0%, #b30000 100%);
    color: #FFFDF7;
    border: 1px solid var(--gold-primary);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(128, 0, 0, 0.25);
    transition: var(--transition);
    white-space: nowrap;
}

@media (max-width: 991px) {
    .btn-pranam-nav {
        display: none !important;
    }
}

.btn-pranam-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 0, 0, 0.4), var(--shadow-gold-glow);
}

.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-gold);
    background: rgba(128, 0, 0, 0.05);
    border-radius: 10px;
    color: var(--primary-red);
    font-size: 1.2rem;
    cursor: pointer;
}

@media (min-width: 992px) {
    .mobile-toggle {
        display: none;
    }
}

/* Mobile Drawer Overlay */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--ivory-bg);
    z-index: 1005;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-gold);
    background: var(--cream-bg);
}

.drawer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--primary-red);
    cursor: pointer;
}

.drawer-body {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--dark-text);
    padding: 12px 15px;
    border-radius: 12px;
    background: rgba(128, 0, 0, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    white-space: nowrap;
}

.drawer-link i {
    color: var(--primary-red);
    width: 20px;
}

.drawer-socials {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
}

.ds-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.ds-btn.yt { background: #FF0000; }
.ds-btn.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.ds-btn.eog { background: var(--primary-red); }
.ds-btn.wa { background: #25D366; }

.btn-pranam-full {
    margin-top: 20px;
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: 1px solid var(--gold-bright);
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--royal-red) 100%);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(128, 0, 0, 0.3);
    white-space: nowrap;
}

/* ==========================================================================
   HERO SECTION STYLES (DESKTOP 1 FULL VIEWPORT PARALLEL GRID)
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: 85px;
    padding-bottom: 45px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 30%, #FFF5EB 0%, #FFFDF7 70%);
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-parallel-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.hero-portrait-col {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-content-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 12px;
    box-sizing: border-box;
}

/* DESKTOP 1 FULL VIEWPORT (100VH) PARALLEL SIDE-BY-SIDE GRID */
@media (min-width: 992px) {
    .hero-section {
        height: calc(100vh - 70px);
        min-height: 650px;
        max-height: 880px;
        padding-top: 70px;
        padding-bottom: 20px;
        margin-top: 70px;
    }

    .hero-container {
        height: 100%;
        justify-content: center;
    }

    .hero-parallel-grid {
        display: grid;
        grid-template-columns: 4.8fr 7.2fr;
        gap: 50px;
        align-items: center;
        width: 100%;
    }

    .hero-portrait-col {
        justify-content: center;
    }

    .hero-content-col {
        align-items: flex-start;
        text-align: left;
    }

    .hero-description {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }

    .hero-cta-buttons {
        justify-content: flex-start;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(128, 0, 0, 0.06);
    border: 1px solid var(--border-gold);
    padding: 6px 18px;
    border-radius: 30px;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.92rem;
    white-space: nowrap;
    margin-bottom: 12px;
}

.hero-peeth-tag {
    font-size: 1.02rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 8px;
}

.hero-portrait-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 20px 0;
}

@media (min-width: 768px) {
    .hero-portrait-wrapper {
        width: 270px;
        height: 270px;
        margin: 25px 0;
    }
}

@media (min-width: 992px) {
    .hero-portrait-wrapper {
        width: 320px;
        height: 320px;
        margin: 0;
    }
}

.portrait-halo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.5) 0%, rgba(212, 175, 55, 0.2) 50%, transparent 80%);
    filter: blur(10px);
    animation: haloPulse 3.5s infinite alternate ease-in-out;
}

@keyframes haloPulse {
    0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.65; }
    100% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; filter: blur(14px); }
}

.portrait-mandala-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 116%;
    height: 116%;
    border-radius: 50%;
    border: 2px dashed rgba(212, 175, 55, 0.75);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.25);
    animation: rotateCounter 45s linear infinite;
    pointer-events: none;
}

.portrait-mandala-rotate {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 107%;
    height: 107%;
    border-radius: 50%;
    border: 2px double var(--gold-bright);
    opacity: 0.85;
    animation: rotateSlow 30s linear infinite;
    pointer-events: none;
}

.portrait-frame {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, #FFD700 0%, #800000 40%, #D4AF37 70%, #FFD700 100%);
    box-shadow: 0 12px 35px rgba(128, 0, 0, 0.3), var(--shadow-gold-glow);
    position: relative;
    z-index: 3;
    overflow: hidden;
    transition: var(--transition);
}

.portrait-frame:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(128, 0, 0, 0.4);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    object-position: top center;
}

.tilak-decoration {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    background: var(--ivory-bg);
    border: 1px solid var(--border-gold);
    padding: 4px 16px;
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
}

.tilak-mark {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.85rem;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #800000 0%, #c41e3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-subtitle {
    font-family: var(--font-subheading);
    font-size: 1.15rem;
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 10px;
}

.desktop-hero-devotion-tag {
    display: none;
}

@media (min-width: 992px) {
    .desktop-hero-devotion-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #800000 0%, #a30000 100%);
        color: #FFD700;
        font-family: var(--font-heading);
        font-size: 0.92rem;
        font-weight: 700;
        padding: 6px 18px;
        border-radius: 20px;
        border: 1px solid #FFD700;
        box-shadow: 0 4px 12px rgba(128, 0, 0, 0.25);
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }
}

.jeje-tag {
    color: var(--primary-red);
    font-weight: 700;
}

.hero-description {
    font-size: 0.96rem;
    color: var(--light-text);
    margin-bottom: 22px;
    line-height: 1.6;
    max-width: 650px;
    margin-left: 0;
    margin-right: 0;
}

.hero-cta-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .hero-cta-buttons {
        justify-content: flex-start;
        gap: 15px;
    }
}

.btn-primary-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #AA7C11 100%);
    color: #FFFDF7;
    border: 1px solid #FFD700;
    padding: 10px 12px;
    border-radius: 25px;
    font-size: clamp(0.72rem, 3.2vw, 0.92rem);
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
}

.btn-secondary-red {
    background: var(--primary-red);
    color: #FFFDF7;
    border: 1px solid var(--primary-red);
    padding: 10px 12px;
    border-radius: 25px;
    font-size: clamp(0.72rem, 3.2vw, 0.92rem);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
}

@media (min-width: 400px) {
    .btn-primary-gold, .btn-secondary-red {
        padding: 11px 18px;
        font-size: 0.84rem;
        gap: 8px;
    }
}

@media (min-width: 768px) {
    .btn-primary-gold, .btn-secondary-red {
        padding: 13px 24px;
        font-size: 0.96rem;
        border-radius: 30px;
    }
}

.btn-primary-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary-red:hover {
    background: var(--deep-red);
    transform: translateY(-3px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--gold-primary);
    font-size: 0.8rem;
    font-weight: 600;
}

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

/* ==========================================================================
   CHAMPARANYA PRAGTYA PITH & JAYANTI MAHOTSAV STYLES
   ========================================================================== */
.peeth-section {
    background: linear-gradient(135deg, #FFF9F2 0%, #FFFDF7 100%);
    border-top: 1px solid var(--border-gold);
}

.peeth-card-container {
    width: 100%;
    margin: 30px 0 0 0;
}

.peeth-main-banner {
    background: linear-gradient(135deg, #800000 0%, #4D0000 100%);
    border-radius: 25px;
    padding: 35px 25px;
    color: #fff;
    text-align: center;
    border: 2px solid var(--gold-primary);
    box-shadow: var(--shadow-divine);
    width: 100%;
}

.peeth-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--dark-text);
    padding: 5px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    white-space: nowrap;
}

.peeth-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold-bright);
    margin-bottom: 25px;
}

.gadipati-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .gadipati-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gadipati-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 18px;
    padding: 20px 15px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.gadipati-card.highlight {
    background: rgba(212, 175, 55, 0.18);
    border-color: var(--gold-bright);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.gadipati-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-bright);
}

.g-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.gadipati-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #FFFDF7;
    margin-bottom: 5px;
    line-height: 1.4;
}

.g-role {
    font-size: 0.82rem;
    color: var(--gold-bright);
    font-weight: 600;
}

/* CHAMPARANYA BADHAI & JAYANTI BOX STYLES */
.champaranya-badhai-box {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--gold-bright);
    border-radius: 20px;
    padding: 25px 20px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.badhai-shloka {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold-bright);
    margin-bottom: 15px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.badhai-english-text {
    font-size: 0.96rem;
    line-height: 1.8;
    color: #FFFDF7;
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.peeth-cta-box {
    background: rgba(0, 0, 0, 0.25);
    padding: 20px 15px;
    border-radius: 15px;
    border: 1px dashed var(--gold-primary);
    width: 100%;
    box-sizing: border-box;
}

.peeth-cta-box p {
    font-size: 0.92rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.btn-peeth-yt {
    background: linear-gradient(135deg, #FF0000 0%, #B30000 100%);
    color: #fff;
    padding: 12px 22px;
    border-radius: 25px;
    font-weight: 700;
    font-size: clamp(0.82rem, 3.8vw, 0.95rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .btn-peeth-yt {
        padding: 10px 16px;
        font-size: 0.84rem;
        gap: 8px;
    }
    .peeth-cta-box {
        padding: 15px 10px;
    }
}

.btn-peeth-yt:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
}

/* ==========================================================================
   SECTION COMMON STYLES & ELEGANT LOTUS WATERMARK MOTIFS
   ========================================================================== */
section {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none" stroke="%23D4AF37" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"><path d="M50 15 C42 32 25 45 25 68 C25 80 36 85 50 85 C64 85 75 80 75 68 C75 45 58 32 50 15 Z" fill="%23800000" fill-opacity="0.02"/><path d="M50 32 C36 46 12 50 12 70 C12 80 24 84 38 82 C28 73 32 58 50 44 Z" fill="%23D4AF37" fill-opacity="0.03"/><path d="M50 32 C64 46 88 50 88 70 C88 80 76 84 62 82 C72 73 68 58 50 44 Z" fill="%23D4AF37" fill-opacity="0.03"/><circle cx="50" cy="82" r="3" fill="%23D4AF37" fill-opacity="0.15"/></svg>');
    background-repeat: repeat;
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 2;
}

/* Corner Lotus Decorative Floating Elements */
.lotus-corner-decor {
    position: absolute;
    width: 140px;
    height: 140px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23D4AF37" fill-opacity="0.12"><path d="M50 10 C40 30 20 45 20 70 C20 85 32 90 50 90 C68 90 80 85 80 70 C80 45 60 30 50 10 Z"/><path d="M50 30 C32 45 5 50 5 72 C5 82 18 88 32 84 C22 75 26 58 50 45 Z" fill="%23800000" fill-opacity="0.08"/><path d="M50 30 C68 45 95 50 95 72 C95 82 82 88 68 84 C78 75 74 58 50 45 Z" fill="%23800000" fill-opacity="0.08"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}

.lotus-corner-decor.left-top {
    top: -20px;
    left: -20px;
    transform: rotate(-15deg);
}

.lotus-corner-decor.right-bottom {
    bottom: -20px;
    right: -20px;
    transform: rotate(165deg);
}

.section-header {
    width: 100%;
    max-width: 100%;
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    color: var(--dark-text);
    font-weight: 700;
}

.about-title-small {
    font-size: 1.6rem;
    line-height: 1.35;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.3rem;
    }
    .about-title-small {
        font-size: 2.0rem;
    }
}

.title-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px 0 20px 0;
}

.title-underline.left {
    justify-content: flex-start;
}

.title-underline::before, .title-underline::after {
    content: '';
    height: 2px;
    width: 50px;
    background: linear-gradient(90deg, transparent, var(--gold-primary));
}

.title-underline::after {
    background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.title-underline span {
    margin: 0 10px;
    font-size: 1.1rem;
}

.section-subtitle {
    color: var(--light-text);
    font-size: 1rem;
    max-width: 750px;
    margin: 0 auto;
}

/* ==========================================================================
   RADIAL / QUICK CONNECT HUB STYLES
   ========================================================================== */
.connect-section {
    background: var(--cream-bg);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.radial-hub-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    margin-top: 40px;
    width: 100%;
}

@media (min-width: 992px) {
    .radial-hub-container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }
}

.central-portrait-card {
    position: relative;
    background: linear-gradient(135deg, #800000 0%, #4A0000 100%);
    padding: 30px 25px;
    border-radius: 35px;
    text-align: center;
    color: #fff;
    box-shadow: 0 18px 45px rgba(128, 0, 0, 0.35), var(--shadow-gold-glow);
    border: 3px solid var(--gold-bright);
    max-width: 360px;
    width: 100%;
}

.central-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 4px solid var(--gold-bright);
    margin: 0 auto 18px auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.central-portrait-card:hover .central-avatar {
    transform: scale(1.04);
}

.avatar-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-bright);
}

.avatar-subtitle {
    font-size: 0.88rem;
    opacity: 0.9;
}

.avatar-peeth-name {
    font-size: 0.8rem;
    color: var(--gold-bright);
    font-weight: 600;
    margin-top: 4px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
    max-width: 720px;
}

@media (min-width: 576px) {
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.quick-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--card-bg);
    padding: 16px 20px;
    border-radius: 18px;
    border: 1px solid var(--border-gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: var(--transition);
}

.quick-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(128, 0, 0, 0.15);
    border-color: var(--gold-primary);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    flex-shrink: 0;
}

.card-peeth-yt .card-icon { background: linear-gradient(135deg, #FF0000, #800000); }
.card-yt .card-icon { background: #FF0000; }
.card-ig .card-icon { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.card-eog .card-icon { background: var(--primary-red); }
.card-wa .card-icon { background: #25D366; }
.card-mail .card-icon { background: #0072C6; }
.card-pranam .card-icon { background: linear-gradient(135deg, #D4AF37, #800000); }

.badge-count-inline {
    font-size: 0.78rem;
    color: var(--primary-red);
    font-weight: 700;
    margin-left: 4px;
}

.card-arrow-guide {
    color: var(--primary-red);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.card-info {
    flex: 1;
}

.card-info h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--dark-text);
}

.card-info p {
    font-size: 0.82rem;
    color: var(--light-text);
}

.card-arrow {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.highlight-pranam-card {
    background: linear-gradient(135deg, #FFFDF7 0%, #FFF5EB 100%);
    border: 2px solid var(--gold-bright);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.highlight-pranam-card:hover {
    box-shadow: 0 12px 35px rgba(128, 0, 0, 0.25);
    border-color: var(--primary-red);
}

.pranam-sub-text {
    color: var(--primary-red) !important;
    font-weight: 600 !important;
}

/* ==========================================================================
   ABOUT SECTION STYLES
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 4.5fr 7.5fr;
    }
}

.about-portrait-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-divine);
    border: 3px solid var(--gold-primary);
}

.about-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: top center;
}

.badge-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(128, 0, 0, 0.9);
    color: var(--gold-bright);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid var(--gold-primary);
    white-space: nowrap;
}

.about-lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 25px;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 25px;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--cream-bg);
    padding: 15px 18px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-red);
}

.pillar-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(128, 0, 0, 0.1);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pillar-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 3px;
}

.pillar-text p {
    font-size: 0.88rem;
    color: var(--light-text);
}

.sanskrit-quote {
    background: linear-gradient(135deg, #800000 0%, #580000 100%);
    color: var(--gold-bright);
    padding: 20px;
    border-radius: 18px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-align: center;
    border: 1px solid var(--gold-primary);
    box-shadow: 0 8px 20px rgba(128, 0, 0, 0.2);
}

.sanskrit-quote cite {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--ivory-bg);
    margin-top: 6px;
    font-style: normal;
}

/* ==========================================================================
   EPISODES OF GRACE SECTION STYLES
   ========================================================================== */
.episodes-section {
    background: radial-gradient(circle at 50% 50%, #FFF5EB 0%, #FFFDF7 100%);
}

.eog-hero-card {
    background: linear-gradient(135deg, #800000 0%, #400000 100%);
    border-radius: 25px;
    padding: 35px 25px;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    border: 2px solid var(--gold-primary);
    box-shadow: var(--shadow-divine);
}

.eog-tag-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--dark-text);
    padding: 4px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    margin-bottom: 12px;
    white-space: nowrap;
}

.eog-banner-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold-bright);
    margin-bottom: 12px;
}

.eog-banner-desc {
    font-size: 0.98rem;
    max-width: 700px;
    margin: 0 auto 25px auto;
    opacity: 0.92;
    line-height: 1.7;
}

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

.btn-yt-subscribe {
    background: #FF0000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-ig-follow {
    background: transparent;
    border: 1px solid var(--gold-bright);
    color: var(--gold-bright);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.episodes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 768px) {
    .episodes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.episode-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.episode-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(128, 0, 0, 0.15);
}

.ep-thumbnail {
    position: relative;
    height: 190px;
    overflow: hidden;
}

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

.episode-card:hover .ep-thumbnail img {
    transform: scale(1.06);
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.ep-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 6px;
}

.ep-content {
    padding: 20px;
}

.ep-category {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
}

.ep-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin: 8px 0;
    color: var(--dark-text);
    line-height: 1.4;
}

.ep-desc {
    font-size: 0.88rem;
    color: var(--light-text);
    margin-bottom: 15px;
}

.ep-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-red);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   QUOTES CAROUSEL STYLES
   ========================================================================== */
.quotes-section {
    background: var(--cream-bg);
}

.quote-slider-container {
    max-width: 800px;
    margin: 30px auto 0 auto;
    position: relative;
    background: var(--ivory-bg);
    border-radius: 25px;
    padding: 40px 30px;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-divine);
    text-align: center;
}

.quote-card {
    display: none;
}

.quote-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.quote-icon {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.quote-text {
    font-family: var(--font-subheading);
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--dark-text);
    margin-bottom: 20px;
    font-weight: 500;
}

.quote-author {
    font-weight: 700;
    color: var(--primary-red);
    font-size: 0.95rem;
}

.quote-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.q-prev, .q-next {
    background: rgba(128, 0, 0, 0.08);
    border: 1px solid var(--border-gold);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--primary-red);
    cursor: pointer;
    transition: var(--transition);
}

.q-prev:hover, .q-next:hover {
    background: var(--primary-red);
    color: #fff;
}

.q-dots {
    display: flex;
    gap: 8px;
}

.q-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #DDD;
    cursor: pointer;
}

.q-dots .dot.active {
    background: var(--primary-red);
    width: 22px;
    border-radius: 10px;
}

/* ==========================================================================
   PHOTO GALLERY STYLES
   ========================================================================== */
.gallery-full-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 35px;
}

@media (min-width: 768px) {
    .gallery-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .gallery-full-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-card-full {
    background: var(--card-bg);
    border-radius: 22px;
    overflow: hidden;
    border: 2px solid var(--border-gold);
    box-shadow: 0 10px 30px rgba(128, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.gallery-card-full:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(128, 0, 0, 0.2);
    border-color: var(--gold-bright);
}

/* GALLERY FILTER TABS & HOVER OVERLAY */
.gallery-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 35px;
}

.g-tab-btn {
    padding: 9px 22px;
    border-radius: 30px;
    background: #FFFDF7;
    border: 1.5px solid var(--border-gold);
    color: var(--dark-text);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.g-tab-btn:hover, .g-tab-btn.active {
    background: var(--primary-red);
    color: #FFFDF7;
    border-color: var(--gold-bright);
    box-shadow: 0 6px 20px rgba(128, 0, 0, 0.25);
}

.full-img-box {
    position: relative;
    background: radial-gradient(circle, #2A0008 0%, #100003 100%);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(88, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.gallery-card-full:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: var(--transition);
}

.gallery-card-full:hover .gallery-zoom-icon {
    transform: scale(1);
}

.gallery-zoom-text {
    color: #FFFDF7;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: var(--font-subheading);
}

.uncropped-img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.full-card-info {
    padding: 20px;
    background: var(--ivory-bg);
    border-top: 1px solid var(--border-gold);
    text-align: center;
    flex-grow: 1;
}

.full-card-info h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary-red);
    margin-bottom: 6px;
}

.full-card-info p {
    font-size: 0.88rem;
    color: var(--light-text);
    line-height: 1.5;
}

/* ==========================================================================
   FULLSCREEN MOBILE-FRIENDLY LIGHTBOX POPUP MODAL
   ========================================================================== */
.gallery-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

.gallery-lightbox-modal.open {
    visibility: visible;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 3, 4, 0.94);
    backdrop-filter: blur(12px);
}

.lightbox-container {
    position: relative;
    width: 94%;
    max-width: 1100px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.lightbox-top-bar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.lightbox-counter {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gold-bright);
    letter-spacing: 1px;
}

.lightbox-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lightbox-tool-btn, .lightbox-close-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-bright);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-tool-btn:hover, .lightbox-close-btn:hover {
    background: var(--gold-primary);
    color: var(--primary-red);
    transform: scale(1.08);
}

.lightbox-viewport {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    max-height: 68vh;
    margin: 10px 0;
}

.lightbox-img-wrapper {
    max-width: 90%;
    max-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    border-radius: 16px;
    border: 2px solid var(--border-gold);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.lightbox-img {
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: zoom-in;
}

.lightbox-img.zoomed {
    transform: scale(1.8);
    cursor: zoom-out;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1.5px solid var(--border-gold);
    color: var(--gold-bright);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-nav-btn:hover {
    background: var(--gold-primary);
    color: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav-btn.prev {
    left: 0;
}

.lightbox-nav-btn.next {
    right: 0;
}

@media (max-width: 768px) {
    .lightbox-nav-btn.prev {
        left: 5px;
    }
    .lightbox-nav-btn.next {
        right: 5px;
    }
    .lightbox-img-wrapper {
        max-width: 96%;
    }
}

.lightbox-caption {
    width: 100%;
    text-align: center;
    padding-top: 10px;
}

.lightbox-caption h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--gold-bright);
    margin-bottom: 4px;
}

.lightbox-caption p {
    font-size: 0.88rem;
    color: #FFFDF7;
    opacity: 0.9;
}

/* ==========================================================================
   FOOTER STYLES & DHRUV THAKKAR DEVELOPER CREDIT LINK
   ========================================================================== */
.footer {
    background: var(--deep-red);
    color: #FFFDF7;
    padding: 50px 0 25px 0;
    border-top: 3px solid var(--gold-primary);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-family: var(--font-heading);
    color: var(--gold-bright);
    margin-bottom: 10px;
}

.footer-motto {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold-bright);
    margin-bottom: 5px;
}

.footer-tagline {
    font-size: 0.88rem;
    opacity: 0.85;
}

.footer-contact-info {
    margin-top: 12px;
    font-size: 0.88rem;
    color: #FFFDF7;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.footer-contact-info .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.footer-contact-info .dev-sep {
    display: none;
    color: rgba(212, 175, 55, 0.6);
    margin: 0 6px;
}

@media (min-width: 768px) {
    .footer-contact-info {
        flex-direction: row;
        align-items: center;
        gap: 4px;
    }

    .footer-contact-info .dev-sep {
        display: inline;
    }
}

.footer-contact-link {
    color: var(--gold-bright);
    font-weight: 600;
    margin-left: 2px;
    white-space: nowrap;
    transition: var(--transition);
}

.footer-contact-link:hover {
    color: #FFF;
    text-shadow: 0 0 8px var(--gold-bright);
}

.footer-links h4, .footer-socials h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold-bright);
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.85;
    white-space: nowrap;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold-bright);
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gold-primary);
    color: var(--primary-red);
    transform: translateY(-3px);
}

/* ==========================================================================
   FOOTER WEBSITE VISITOR COUNTER PILL
   ========================================================================== */
.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: #10B981;
    border-radius: 50%;
    display: inline-block;
    animation: visitor-pulse 1.8s infinite ease-in-out;
}

@keyframes visitor-pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.footer-visitor-pill-bar {
    margin-bottom: 14px;
}

.visitor-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.84rem;
    color: #FFFDF7;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.visitor-pill:hover {
    border-color: var(--gold-bright);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

.visitor-pill i {
    color: var(--gold-bright);
}

.visitor-pill strong {
    color: var(--gold-bright);
    font-family: var(--font-heading);
    font-size: 0.98rem;
    letter-spacing: 0.5px;
}

.footer-divider {
    height: 1px;
    background: rgba(212, 175, 55, 0.3);
    margin-bottom: 20px;
}

.developer-credit {
    font-size: 0.92rem;
    margin-top: 8px;
    color: #FFFDF7;
    opacity: 0.95;
}

.dev-link {
    color: var(--gold-bright);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--transition);
    white-space: nowrap;
}

.dev-link:hover {
    color: #FFF;
    text-shadow: 0 0 10px var(--gold-bright);
}

.dev-url {
    color: #FFFDF7;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed var(--gold-bright);
    transition: var(--transition);
    white-space: nowrap;
}

.dev-url:hover {
    color: var(--gold-bright);
    border-bottom-style: solid;
}

.dev-contact-block {
    display: inline-block;
    margin-top: 4px;
}

@media (min-width: 768px) {
    .dev-contact-block {
        margin-top: 0;
        margin-left: 6px;
    }
}

.dev-contact-link {
    color: var(--gold-bright);
    font-weight: 600;
    margin: 0 4px;
    white-space: nowrap;
    transition: var(--transition);
}

.dev-contact-link:hover {
    color: #FFF;
    text-shadow: 0 0 8px var(--gold-bright);
}

.dev-sep {
    color: rgba(212, 175, 55, 0.6);
    margin: 0 4px;
}

/* ==========================================================================
   MOBILE STICKY BOTTOM NAVIGATION BAR
   ========================================================================== */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: rgba(255, 253, 247, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-gold);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    justify-items: center;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    padding: 0 4px;
}

@media (min-width: 992px) {
    .mobile-bottom-bar {
        display: none;
    }
}

.mbb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--dark-text);
    font-size: 0.72rem;
    font-weight: 500;
    white-space: nowrap;
    width: 100%;
}

.mbb-item i {
    font-size: 1.15rem;
    color: var(--light-text);
}

.mbb-item.active i, .mbb-item.active span {
    color: var(--primary-red);
    font-weight: 700;
}

.mbb-pranam-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #800000 0%, #c41e3a 100%);
    border: 2.5px solid #FFD700;
    border-radius: 50%;
    color: #FFFDF7;
    transform: translateY(-16px);
    box-shadow: 0 6px 20px rgba(128, 0, 0, 0.45), 0 0 14px rgba(255, 215, 0, 0.65);
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.mbb-pranam-btn:active {
    transform: translateY(-14px) scale(0.95);
}

.mbb-pranam-btn i {
    font-size: 1.25rem;
    margin-bottom: 1px;
}

.mbb-pranam-btn span {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* ==========================================================================
   INTERACTIVE SOCIAL CONNECT OVERLAY MODAL DRAWER
   ========================================================================== */
.connect-overlay-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

.connect-overlay-modal.open {
    visibility: visible;
    opacity: 1;
}

.connect-overlay-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 24, 16, 0.65);
    backdrop-filter: blur(8px);
}

.connect-overlay-content {
    position: relative;
    width: 100%;
    max-width: 540px;
    background: linear-gradient(135deg, #FFFDF7 0%, #FFF9F2 100%);
    border-radius: 30px 30px 0 0;
    padding: 25px 20px 35px 20px;
    border-top: 3px solid var(--gold-bright);
    box-shadow: 0 -10px 35px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
    max-height: 85vh;
    overflow-y: auto;
}

.connect-overlay-modal.open .connect-overlay-content {
    transform: translateY(0);
}

.connect-overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-gold);
    margin-bottom: 18px;
}

.connect-overlay-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.co-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 2px solid var(--gold-bright);
    box-shadow: 0 0 14px rgba(255, 215, 0, 0.55);
    flex-shrink: 0;
}

.connect-overlay-title h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary-red);
    margin: 0;
}

.connect-overlay-title p {
    font-size: 0.8rem;
    color: var(--light-text);
    margin: 2px 0 0 0;
}

.connect-overlay-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    background: rgba(128, 0, 0, 0.06);
    color: var(--primary-red);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.connect-overlay-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.co-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    border-radius: 16px;
    background: #FFFDF7;
    border: 1.5px solid var(--border-gold);
    color: var(--dark-text);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    width: 100%;
    box-sizing: border-box;
}

.co-item:hover, .co-item:active {
    transform: translateY(-2px) scale(1.01);
    border-color: var(--gold-bright);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.co-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    flex-shrink: 0;
}

.co-pranam .co-item-icon { background: linear-gradient(135deg, #D4AF37, #AA7C11); }
.co-peeth-yt .co-item-icon { background: linear-gradient(135deg, #FF0000, #CC0000); }
.co-eog-yt .co-item-icon { background: linear-gradient(135deg, #800000, #4D0000); }
.co-ig .co-item-icon { background: linear-gradient(135deg, #E1306C, #C13584); }
.co-wa .co-item-icon { background: linear-gradient(135deg, #25D366, #128C7E); }
.co-mail .co-item-icon { background: linear-gradient(135deg, #D4AF37, #800000); }

.co-item-info {
    flex-grow: 1;
    text-align: left;
}

.co-item-info h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
}

.co-item-info p {
    font-size: 0.78rem;
    color: var(--light-text);
    margin: 2px 0 0 0;
}

.co-arrow {
    font-size: 0.95rem;
    color: var(--gold-primary);
}
