﻿/* Base Layout */
html, body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Remove ALL focus outlines */
*,
*:focus,
*:focus-visible,
*:active,
html:focus,
body:focus,
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus,
[tabindex]:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Prevent Font Awesome loading flicker */
.fa, .fas, .far, .fal, .fab {
    display: inline-block;
    min-width: 1em;
    text-align: center;
}

/* Fallback for Font Awesome icons that fail to load */
i[class*="fa-"]:before {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", sans-serif;
}

/* Scroll offset for fixed navbar */
.about-section-anchor {
    scroll-margin-top: 120px;
}

main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
    background: #55185D;
}

/* Typography - Mobile First */
.title-text {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    color: #290849 !important;
}

.big-title-font {
    font-family: "Parkinsans", sans-serif; font-weight: 600;
    color: #290849 !important;
    font-size: 2.2rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ECB602, #FFD524);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(236, 182, 2, 0.3);
    margin-bottom: 1.5rem !important;
    position: relative;
}

.big-title-font::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: rgba(41, 8, 73, 0.3);
    border-radius: 2px;
}

/* Remove background from Home page title */
.hero-title.big-title-font {
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 1rem !important;
}

.hero-title.big-title-font::after {
    display: none;
}

.small-title-font {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    color: #290849 !important;
    font-size: 1rem;
}

/* Typography - Tablet */
@media (min-width: 768px) {
    .big-title-font {
        font-size: 2.8rem;
        padding: 1.8rem 2.5rem;
    }
    
    .small-title-font {
        font-size: 1.1rem;
    }
}

/* Typography - Desktop */
@media (min-width: 992px) {
    .big-title-font {
        font-size: 3.5rem;
        padding: 2rem 3rem;
    }
    
    .small-title-font {
        font-size: 1.2rem;
    }
}

/* Navigation - Mobile First */
.main-nav {
    background: #55185D;
    box-shadow: rgb(0, 0, 0.4) 0px 0px 10px;
    padding: 0.25rem 0;
}

.navbar-content-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between !important;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav .navbar-brand img {
    height: 60px !important;
}

.navbar-toggler {
    border: none !important;
    color: white;
    display: block !important;
    padding: 0.25rem 0.5rem;
}

.main-nav .navbar-brand {
    margin-right: 0 !important;
}

.main-nav .navbar-collapse {
    width: 100%;
    margin-top: 1rem;
    order: 3;
    flex-basis: 100%;
}

.main-nav .navbar-nav {
    flex-direction: column !important;
    text-align: left;
}

.main-nav .nav-link.active {
    color: #FFD524 !important;
    font-weight: 600;
}

.main-nav .nav-link:hover {
    color: #FFD524 !important;
    transition: color 0.3s ease;
}

/* Dropdown Menu Styles */
.main-nav .dropdown-menu {
    background: #55185D;
    border: 2px solid #FFD524;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    margin-top: 0.5rem;
}

.main-nav .dropdown-item {
    color: white;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
}

.main-nav .dropdown-item:hover {
    background: #FFD524;
    color: #290849;
    font-weight: 600;
}

.main-nav .dropdown-divider {
    border-color: #FFD524;
    opacity: 0.5;
    margin: 0.5rem 0;
}

.main-nav .dropdown-toggle::after {
    color: white;
}

/* Navigation - Desktop */
@media (min-width: 992px) {
    .main-nav {
        padding: 0.5rem 0;
    }
    
    .main-nav .navbar-brand img {
        height: 70px !important;
    }
    
    .main-nav .container-fluid {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .main-nav .navbar-content-wrapper {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto !important;
        flex-wrap: nowrap !important;
    }
    
    .main-nav .navbar-brand {
        margin-right: 5rem !important;
    }
    
    .main-nav .navbar-toggler {
        display: none !important;
    }
    
    .main-nav .navbar-collapse {
        display: block !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
        width: auto !important;
        flex-basis: auto !important;
        order: unset !important;
    }
    
    .main-nav .navbar-nav {
        flex-direction: row !important;
        margin-bottom: 0 !important;
    }
}

/* WhatsApp Banner - Mobile First */
.whatsapp-simple-cta {
    background: #25D366;
    color: white;
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-banner-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.whatsapp-banner .btn-outline-light {
    border-width: 2px;
    border-color: white;
    color: white;
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: transparent;
}

.whatsapp-banner .btn-outline-light:hover {
    background-color: #F8F4ED;
    color: #25D366;
    border-color: #F8F4ED;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* WhatsApp Banner - Tablet & Desktop */
@media (min-width: 768px) {
    .whatsapp-simple-cta {
        padding: 1rem 0;
    }
}

/* Hero Section - Mobile First */
.hero-section {
    background: #DCCFC0;
    min-height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

/* Maha-mantra border around hero section */
    .hero-section::before {
        content: 'HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • ';
        position: absolute;
        top: 10px;
        left: 0;
        right: 0;
        font-size: 0.7rem;
        color: #ECB602;
        text-shadow: 0 0 1px rgba(41, 8, 73, 0.3);
        white-space: nowrap;
        z-index: 0;
        animation: scroll-left 60s linear infinite;
        font-weight: 500;
        letter-spacing: 1px;
        font-family: "Raleway", sans-serif;
        width: 200%;
    }

    .hero-section::after {
        content: 'HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • HARE KRSNA HARE KRSNA KRSNA KRSNA HARE HARE HARE RAMA HARE RAMA RAMA RAMA HARE HARE • ';
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
        font-size: 0.7rem;
        color: #ECB602;
        text-shadow: 0 0 1px rgba(41, 8, 73, 0.3);
        white-space: nowrap;
        z-index: 0;
        animation: scroll-right 60s linear infinite;
        font-weight: 500;
        letter-spacing: 1px;
        font-family: "Raleway", sans-serif;
        width: 200%;
    }

.hero-image-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 0;
    position: relative;
    z-index: 1;
}

.hero-image {
    width: auto;
    height: 100%;
    max-height: 300px;
    object-fit: contain;
}

.hero-content {
    min-height: auto;
    height: 100%;
    padding-left: 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-bottom: 1.5rem !important;
    font-size: 2.5rem !important;
    line-height: 1.1;
}

.hero-subtitle {
    margin-bottom: 2rem !important;
    line-height: 1.6;
    font-size: 1.3rem !important;
}

/* Hero - Tablet */
@media (min-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-content {
        padding-left: 0;
        text-align: left;
    }
    
    .hero-image-container {
        justify-content: flex-end;
    }
    
    .hero-title {
        font-size: 3.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.5rem !important;
    }
    
    .hero-image {
        max-height: 400px;
    }
}

/* Hero - Desktop */
@media (min-width: 992px) {
    .hero-section {
        min-height: auto;
        padding: 6rem 0;
    }
    
    .hero-content {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.8rem !important;
    }
    
    .hero-image {
        max-height: 500px;
    }
    
    .hero-image-container {
        justify-content: flex-end;
        padding-right: 0;
    }
}

/* Section Divider */
.section-divider {
    background: #ECB602;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.1);
    min-height: 15px;
}

/* Simple Page Header - for individual pages */
.simple-page-header {
    background: #DCCFC0;
    padding: 3rem 0 2rem 0;
    text-align: center;
    position: relative;
}

.simple-page-title {
    font-family: "Parkinsans", sans-serif;
    font-weight: 600;
    color: #290849 !important;
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0;
}

@media (min-width: 768px) {
    .simple-page-header {
        padding: 4rem 0 3rem 0;
    }
    
    .simple-page-title {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .simple-page-header {
        padding: 5rem 0 4rem 0;
    }
    
    .simple-page-title {
        font-size: 3.5rem;
    }
}

/* Welcome Section - Mobile First */
.welcome-section {
    background: #F5F0E8;
    padding: 4rem 0;
    position: relative;
    border-top: 3px solid rgba(41, 8, 73, 0.1);
    border-bottom: 3px solid rgba(41, 8, 73, 0.1);
}

.welcome-image-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #F0E8DC;
    min-height: 300px;
}

.welcome-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    border-radius: 15px;
    border-right: 8px solid #FFD524;
    border-bottom: 8px solid #FFD524;
    transition: transform 0.3s ease;
}

.welcome-image:hover {
    transform: scale(1.02);
}

.welcome-content {
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.welcome-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #290849;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.welcome-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ECB602, #FFD524);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(236, 182, 2, 0.3);
}

.welcome-description {
    line-height: 1.8;
    color: #555555;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.btn-welcome {
    background: linear-gradient(135deg, #290849, #55185D);
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(41, 8, 73, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-welcome:hover {
    background: linear-gradient(135deg, #55185D, #290849);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 8, 73, 0.4);
    color: white;
    text-decoration: none;
}

/* Welcome Section - Tablet */
@media (min-width: 768px) {
    .welcome-section {
        padding: 5rem 0;
    }
    
    .welcome-image-container {
        min-height: 350px;
    }
    
    .welcome-image {
        min-height: 350px;
    }
    
    .welcome-content {
        padding: 1.5rem;
    }
    
    .welcome-title {
        font-size: 3.2rem;
        text-align: left;
        margin-bottom: 2.5rem;
    }
    
    .welcome-title::after {
        left: 0;
        transform: translateX(0);
        width: 100px;
    }
    
    .welcome-description {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
}

/* Welcome Section - Desktop */
@media (min-width: 992px) {
    .welcome-section {
        padding: 6rem 0;
    }
    
    .welcome-image-container {
        min-height: 400px;
    }
    
    .welcome-image {
        min-height: 400px;
    }
    
    .welcome-content {
        padding: 2rem;
    }
    
    .welcome-title {
        font-size: 3.8rem;
        margin-bottom: 3rem;
    }
    
    .welcome-title::after {
        width: 120px;
        height: 5px;
    }
    
    .welcome-description {
        font-size: 1.3rem;
        margin-bottom: 3rem;
    }
    
    .btn-welcome {
        padding: 1rem 2.2rem;
        font-size: 1.1rem;
    }
}

/* Sections - Mobile First */
.info-sections {
    background: #F5F0E8;
    position: relative;
    border-top: 3px solid rgba(41, 8, 73, 0.1);
    border-bottom: 3px solid rgba(41, 8, 73, 0.1);
}

.info-image-container, .program-image-container, .feast-image-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 250px;
}

.info-image, .program-image, .feast-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    border-right: 10px solid #ECB602;
    border-bottom: 10px solid #ECB602;
    transition: transform 0.3s ease;
}

.program-image {
    height: 100%;
    min-height: 250px;
    border-radius: 15px;
}

.feast-image {
    height: 100%;
    min-height: 300px;
    border-radius: 15px;
}

.info-image:hover, .program-image:hover, .feast-image:hover {
    transform: scale(1.05);
}

.program-image:hover, .feast-image:hover {
    transform: scale(1.02);
}

.info-content, .program-content, .feast-content {
    padding: 0.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Section Headings - Consolidated for all pages */
.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #290849;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

/* Section heading decorative line */
.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #ECB602;
    border-radius: 2px;
}

.info-description, .program-description, .feast-description {
    line-height: 1.8;
    color: #555555;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.events-section {
    background: #fffbf1;
    position: relative;
    border-top: 3px solid rgba(41, 8, 73, 0.1);
    border-bottom: 3px solid rgba(41, 8, 73, 0.1);
}

.section-title {
    color: #290849;
    margin-bottom: 1rem;
    font-size: 1.8rem !important;
}

.section-subtitle {
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Sections - Tablet */
@media (min-width: 768px) {
    .info-image-container, .program-image-container, .feast-image-container {
        min-height: 280px;
    }
    
    .program-image-container {
        min-height: 280px;
    }
    
    .feast-image-container {
        min-height: 350px;
    }
    
    .info-image, .program-image, .feast-image {
        height: 280px;
    }
    
    .program-image {
        min-height: 280px;
    }
    
    .feast-image {
        min-height: 350px;
    }
    
    .info-content, .program-content, .feast-content {
        padding: 1rem;
    }
    
    .section-heading {
        font-size: 2.8rem;
        text-align: left;
        margin-bottom: 2rem;
    }
    
    .section-heading::after {
        left: 0;
        transform: translateX(0);
        width: 100px;
    }
    
    .info-description, .program-description, .feast-description {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem !important;
    }
}

/* Sections - Desktop */
@media (min-width: 992px) {
    .info-image-container, .program-image-container {
        min-height: 300px;
    }
    
    .program-image-container {
        min-height: 400px;
    }
    
    .feast-image-container {
        min-height: 450px;
    }
    
    .info-image, .program-image, .feast-image {
        height: 300px;
    }
    
    .program-image {
        min-height: 400px;
    }
    
    .feast-image {
        min-height: 450px;
    }
    
    .info-content, .program-content, .feast-content {
        padding: 1rem;
    }
    
    .program-content, .feast-content {
        padding: 2rem 1rem;
    }
    
    .section-heading {
        font-size: 2.6rem;
        margin-bottom: 2.5rem;
    }
    
    .section-heading::after {
        width: 120px;
        height: 5px;
    }
    
    .program-title, .feast-title {
        font-size: 3rem;
        margin-bottom: 2rem;
        line-height: 1.2;
    }
    
    .program-description {
        margin-bottom: 2rem;
    }
    
    .info-description, .program-description, .feast-description {
        font-size: 1.3rem;
        margin-bottom: 3rem;
    }
}

/* Feast Time Card */
.feast-time-card {
    background: linear-gradient(135deg, #ECB602, #ECB602);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(255, 213, 36, 0.3);
    transition: all 0.3s ease;
}

.feast-time-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 213, 36, 0.4);
}

.feast-time-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #290849;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feast-time-title i {
    color: #55185D;
}

.feast-time-description {
    line-height: 1.6;
    color: #290849;
    font-weight: 500;
    margin-bottom: 0;
}

/* Feast Time Card - Tablet & Desktop */
@media (min-width: 768px) {
    .feast-time-card {
        padding: 1.2rem;
    }
    
    .feast-time-title {
        font-size: 1.2rem;
    }
}

@media (min-width: 992px) {
    .feast-time-card {
        padding: 1.5rem;
    }
    
    .feast-time-title {
        font-size: 1.4rem;
    }
}
/* Simple Text Links - Mobile First */
.btn-simple {
    background: none;
    border: none;
    color: #ECB602;
    padding: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-family: "Raleway", sans-serif;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.btn-simple::after {
    content: '→';
    margin-left: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.btn-simple:hover {
    color: #FFD524;
    text-decoration: none;
    transform: translateX(5px);
}

.btn-simple:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.btn-simple i,
.btn-simple span {
    position: relative;
    z-index: 1;
}

/* Simple Link Buttons - Tablet & Desktop */
@media (min-width: 768px) {
    .btn-simple {
        padding: 1.2rem 2.5rem 1.2rem 0;
        font-size: 1.2rem;
        min-width: 250px;
    }
}

@media (min-width: 992px) {
    .btn-simple {
        padding: 1rem 2rem 1rem 0;
        font-size: 1.1rem;
        min-width: 220px;
    }
}

/* About Page Specific Styles */
.about-image-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #F0E8DC;
    min-height: 300px;
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    border-radius: 15px;
    border-right: 8px solid #FFD524;
    border-bottom: 8px solid #FFD524;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-content {
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* About Page - Tablet & Desktop */
@media (min-width: 768px) {
    .about-image-container {
        min-height: 350px;
    }
    
    .about-image {
        min-height: 350px;
    }
    
    .about-content {
        padding: 1.5rem;
    }
}

@media (min-width: 992px) {
    .about-image-container {
        min-height: 400px;
    }
    
    .about-image {
        min-height: 400px;
    }
    
    .about-content {
        padding: 2rem;
    }
}

/* Event Cards - Mobile First */
.event-card {
    background: #F8F4ED;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.event-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.event-date-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #290849, #55185D);
    color: white;
    border-radius: 12px;
    padding: 6px 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(41, 8, 73, 0.4);
    min-width: 50px;
}

.event-day {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
    margin-bottom: 2px;
}

.event-month {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.event-content {
    padding: 1.2rem;
}

.event-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #290849;
}

.event-details {
    color: #6c757d;
}

.event-datetime {
    font-family: "Raleway", sans-serif;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.event-datetime i {
    color: #55185D;
    width: 16px;
}

/* Event Cards - Tablet & Desktop */
@media (min-width: 768px) {
    .event-image-container {
        height: 250px;
    }
    
    .event-date-overlay {
        top: 15px;
        left: 15px;
        padding: 8px 12px;
        min-width: 60px;
    }
    
    .event-day {
        font-size: 1.4rem;
    }
    
    .event-month {
        font-size: 0.75rem;
    }
    
    .event-content {
        padding: 1.5rem;
    }
    
    .event-title {
        font-size: 1.4rem;
    }
}

/* Schedule Cards - Mobile First */
.schedule-card, .simple-schedule-card {
    background: linear-gradient(135deg, #F0E8DC, #F8F4ED);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex-grow: 1;
}

.schedule-card:hover, .simple-schedule-card:hover {
    border-color: #ECB602;
    box-shadow: 0 8px 25px rgba(255, 213, 36, 0.2);
}

.schedule-title, .simple-schedule-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #290849;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.schedule-title i, .simple-schedule-title i {
    color: #55185D;
}

.simple-schedule-description {
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 0;
}

.schedule-details {
    margin-left: 0;
}

.schedule-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

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

.schedule-item .time {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    color: #55185D;
    font-size: 0.95rem;
    min-width: 120px;
    flex-shrink: 0;
}

.schedule-item .activity {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    color: #290849;
    font-size: 0.95rem;
    flex: 1;
    text-align: left;
    margin-left: 0;
    margin-top: 0.25rem;
}

/* Schedule Cards - Tablet & Desktop */
@media (min-width: 768px) {
    .schedule-card, .simple-schedule-card {
        padding: 1.2rem;
    }
    
    .schedule-title, .simple-schedule-title {
        font-size: 1.2rem;
    }
    
    .schedule-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    
    .schedule-item .activity {
        margin-left: 1rem;
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    .schedule-card, .simple-schedule-card {
        padding: 1.5rem;
    }
    
    .schedule-title, .simple-schedule-title {
        font-size: 1.3rem;
    }
}

/* Additional Info Cards - Mobile First */
.additional-info-card {
    background: linear-gradient(135deg, #290849, #55185D);
    color: white;
    border-radius: 15px;
    padding: 1.2rem;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(41, 8, 73, 0.3);
}

.additional-info-card .info-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ECB602;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.additional-info-card .info-title i {
    color: #ECB602;
    margin-right: 0.5rem;
}

.info-text {
    font-family: "Raleway", sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.contact-link {
    color: #ECB602;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ECB602;
    text-decoration: underline;
}

/* Additional Info Cards - Tablet & Desktop */
@media (min-width: 768px) {
    .additional-info-card {
        padding: 1.5rem;
    }
}

@media (min-width: 992px) {
    .additional-info-card {
        padding: 2rem;
    }
    
    .additional-info-card .info-title {
        font-size: 1.3rem;
    }
}

/* Donation Page Styling */
.donation-method {
    padding: 1rem;
    border-left: 4px solid #ECB602;
    background: rgba(236, 182, 2, 0.05);
    border-radius: 0 8px 8px 0;
}

.donation-method-title {
    color: #290849;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.donation-method-text {
    color: #333;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.expense-list {
    background: #F8F4ED;
    padding: 1.5rem;
    border-radius: 8px;
    height: 100%;
    border: 2px solid rgba(41, 8, 73, 0.1);
    box-shadow: 0 2px 8px rgba(41, 8, 73, 0.1);
}

.expense-list .donation-method-title {
    color: #290849;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.expense-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expense-items li {
    padding: 0.5rem 0;
    color: #290849;
    border-bottom: 1px solid rgba(41, 8, 73, 0.1);
    font-weight: 500;
}

.expense-items li:last-child {
    border-bottom: none;
}

.expense-items i {
    color: #ECB602;
    width: 20px;
}

/* Donation Section on Homepage */
.donation-section {
    background: #F0E8DC;
    border-top: 2px solid rgba(236, 182, 2, 0.2);
    border-bottom: 2px solid rgba(236, 182, 2, 0.2);
}

.donation-content {
    padding: 2rem 0;
}

.donation-highlights {
    background: rgba(236, 182, 2, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ECB602;
}

.donation-highlight {
    display: flex;
    align-items: center;
    color: #290849;
    font-weight: 500;
}

.donation-highlight i {
    color: #ECB602;
    width: 24px;
    font-size: 1.1rem;
}

.donation-image-container {
    text-align: center;
}

.donation-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(41, 8, 73, 0.2);
}

/* QR Code Styling */
.qr-code-container {
    padding: 1rem;
    background: #F8F4ED;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(41, 8, 73, 0.1);
}

.qr-code {
    width: 120px;
    height: 120px;
    border: 2px solid #ECB602;
    border-radius: 8px;
    background: #F0E8DC;
}

.qr-code-text {
    font-size: 0.9rem;
    color: #666;
    margin: 0.5rem 0 0 0;
    font-weight: 500;
}

/* Small Button Style */
.btn-simple-small {
    background: none;
    border: 2px solid #ECB602;
    color: #ECB602;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-family: "Raleway", sans-serif;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-simple-small:hover {
    background: #ECB602;
    color: #290849;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Zelle Email Display */
.zelle-email-container {
    background: rgba(236, 182, 2, 0.1);
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #ECB602;
    margin-top: 0.5rem;
}

.zelle-email-label {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 0.25rem 0;
    font-weight: 500;
}

.zelle-email {
    font-size: 1.1rem;
    color: #290849;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    font-family: monospace;
    background: #F8F4ED;
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid #ECB602;
}

.zelle-note {
    font-size: 0.85rem;
    color: #555;
    margin: 0;
    font-style: italic;
    font-weight: 500;
}

/* Modern Donation Help Section */
.donations-help-section {
    background: linear-gradient(135deg, #F0E8DC 0%, #F5F0E8 100%);
    position: relative;
}

.donations-help-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ECB602, #FFD524, #ECB602);
}

.help-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #290849;
    margin-bottom: 1rem;
}

.help-section-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.help-category-card {
    background: #F8F4ED;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(41, 8, 73, 0.1);
    border: 1px solid rgba(236, 182, 2, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(41, 8, 73, 0.15);
}

.help-category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ECB602, #FFD524);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.help-category-icon i {
    font-size: 1.5rem;
    color: #290849;
}

.help-category-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #290849;
    text-align: center;
    margin-bottom: 1.5rem;
}

.help-items-grid {
    display: grid;
    gap: 1rem;
}

.help-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: rgba(236, 182, 2, 0.05);
    border-radius: 8px;
    border-left: 3px solid #ECB602;
}

.help-item i {
    color: #ECB602;
    width: 20px;
    margin-right: 0.75rem;
}

.help-item span {
    color: #333;
    font-weight: 500;
}

/* Modern CTA Section */
.donation-cta-section {
    position: relative;
}

.cta-card {
    background: #F8F4ED;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ECB602, #FFD524);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
}

.cta-icon i {
    font-size: 2rem;
    color: #290849;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #290849;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ECB602, #FFD524);
    color: #290849;
    border: 2px solid transparent;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 182, 2, 0.3);
    color: #290849;
    text-decoration: none;
}

.cta-button.secondary {
    background: transparent;
    color: #290849;
    border: 2px solid #290849;
}

.cta-button.secondary:hover {
    background: #290849;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .help-section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
    }
}

/* Srila Prabhupada Section Styles */
.prabhupada-section {
    background: linear-gradient(135deg, #fffbf1 0%, #F5F0E8 100%);
}

.prabhupada-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: #F8F4ED;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px;
}

.prabhupada-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.prabhupada-image:hover {
    transform: scale(1.03);
}

.prabhupada-content {
    padding: 2rem 0;
}

.prabhupada-highlights {
    margin: 1.5rem 0;
}

.prabhupada-highlight {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 0.75rem;
}

.prabhupada-highlight i {
    color: #ECB602;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Biography Page Styles */
.biography-section {
    background: #F8F4ED;
}

.biography-text {
    line-height: 1.8;
    color: #4a4a4a;
}

.legacy-section {
    background: linear-gradient(135deg, #F0E8DC 0%, #F5F0E8 100%);
}

.legacy-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: #F8F4ED;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.legacy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.legacy-highlights {
    margin: 1.5rem 0;
}

.legacy-highlight {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(236, 182, 2, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ECB602;
}

.legacy-highlight i {
    color: #ECB602;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
    margin-right: 0.5rem;
}

@media (max-width: 767px) {
    .prabhupada-image-container, .legacy-image-container {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .prabhupada-content {
        padding: 1rem 0;
        text-align: center;
    }
    
    .prabhupada-highlight {
        justify-content: center;
        text-align: center;
    }
    
    .legacy-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .legacy-highlight i {
        margin-bottom: 0.5rem;
        font-size: 1.5rem;
    }
}

/* Maha-mantra scrolling animations */
@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Accessibility: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .hero-section::before,
    .hero-section::after {
        animation: none;
    }
}

/* Connect Page Styles */
.connect-card {
    background: #F8F4ED;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(220, 207, 192, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.connect-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #ECB602;
}

.connect-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ECB602, #FFD524);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #290849;
}

.connect-title {
    font-family: "Parkinsans", sans-serif;
    font-weight: 600;
    color: #290849;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.connect-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-connect {
    display: inline-block;
    background: linear-gradient(135deg, #ECB602, #FFD524);
    color: #290849;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-connect:hover {
    background: #290849;
    color: #ECB602;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 8, 73, 0.3);
}

.address-info {
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Social Media Cards */
.social-card {
    background: #F8F4ED;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid rgba(220, 207, 192, 0.3);
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    color: white;
}

.social-icon.whatsapp {
    background: #25D366;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.youtube {
    background: #ff0000;
}

.social-title {
    font-family: "Parkinsans", sans-serif;
    font-weight: 600;
    color: #290849;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.social-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.btn-social {
    display: inline-block;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: white;
}

.btn-social.whatsapp {
    background: #25D366;
}

.btn-social.facebook {
    background: #1877f2;
}

.btn-social.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.btn-social.youtube {
    background: #ff0000;
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Hours Cards */
.hours-card {
    background: #F8F4ED;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid rgba(220, 207, 192, 0.3);
    transition: all 0.3s ease;
}

.hours-card:hover {
    border-color: #ECB602;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.hours-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ECB602, #FFD524);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #290849;
}

.hours-title {
    font-family: "Parkinsans", sans-serif;
    font-weight: 600;
    color: #290849;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hours-schedule {
    margin-bottom: 1.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(220, 207, 192, 0.5);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item.special {
    background: linear-gradient(135deg, #ECB602, #FFD524);
    margin: 0.5rem -1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-bottom: none;
}

.hours-item.special .hours-day,
.hours-item.special .hours-time {
    color: #290849;
    font-weight: 600;
}

.hours-day {
    font-weight: 600;
    color: #290849;
}

.hours-time {
    color: #666;
    font-weight: 500;
}

.hours-note {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.btn-hours {
    display: inline-block;
    background: linear-gradient(135deg, #ECB602, #FFD524);
    color: #290849;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-hours:hover {
    background: #290849;
    color: #ECB602;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 8, 73, 0.3);
}

/* Getting Started Card */
.getting-started-card {
    background: linear-gradient(135deg, #F0E8DC, #F5F0E8);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 3px solid #ECB602;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.getting-started-title {
    font-family: "Parkinsans", sans-serif;
    font-weight: 600;
    color: #290849;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.getting-started-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn-getting-started {
    display: inline-block;
    background: linear-gradient(135deg, #ECB602, #FFD524);
    color: #290849;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-getting-started:hover {
    background: #290849;
    color: #ECB602;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(41, 8, 73, 0.3);
}

/* Responsive adjustments for Connect page */
@media (max-width: 768px) {
    .connect-card,
    .social-card,
    .hours-card {
        margin-bottom: 1.5rem;
    }
    
    .getting-started-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .getting-started-title {
        font-size: 1.5rem;
    }
    
    .getting-started-description {
        font-size: 1rem;
    }
}

/* Featured Image Section */
.featured-image-section {
    background: #F5F0E8;
    position: relative;
    border-top: 3px solid rgba(41, 8, 73, 0.1);
    border-bottom: 3px solid rgba(41, 8, 73, 0.1);
}

.featured-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    border: 6px solid #ECB602;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.featured-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: #FFD524;
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-image:hover {
    transform: scale(1.02);
}

/* Responsive adjustments for featured image */
@media (min-width: 768px) {
    .featured-image {
        min-height: 400px;
        max-height: 600px;
        object-fit: cover;
    }
}

@media (min-width: 1200px) {
    .featured-image {
        min-height: 500px;
        max-height: 700px;
    }
}

/* To Go Section Styles */
.catering-section {
    background: #F8F4E6;
    border-top: 2px solid rgba(236, 182, 2, 0.2);
    border-bottom: 2px solid rgba(236, 182, 2, 0.2);
}

.catering-content {
    padding: 2rem 0;
}

.catering-highlights {
    background: rgba(236, 182, 2, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ECB602;
}

.catering-highlight {
    display: flex;
    align-items: center;
    color: #290849;
    font-weight: 500;
}

.catering-highlight i {
    color: #ECB602;
    width: 24px;
    font-size: 1.1rem;
}

.catering-image-container {
    text-align: center;
}

.catering-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(41, 8, 73, 0.2);
    transition: transform 0.3s ease;
}

.catering-image:hover {
    transform: scale(1.05);
}

/* To Go Page Styles */
.catering-main {
    background: #F5F0E8;
}

.catering-main-image-container {
    text-align: center;
}

.catering-main-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.catering-main-image:hover {
    transform: scale(1.02);
}

.service-details {
    background: #fffbf1;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #ECB602;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    background: linear-gradient(135deg, #ECB602, #FFD524);
    color: #290849;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.service-title {
    color: #290849;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    line-height: 1.6;
}

.menu-highlights {
    background: #F5F0E8;
}

.menu-image-container {
    text-align: center;
}

.menu-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.menu-image:hover {
    transform: scale(1.02);
}

.menu-features {
    background: rgba(236, 182, 2, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ECB602;
}

.menu-feature {
    display: flex;
    align-items: center;
    color: #290849;
    font-weight: 500;
}

.menu-feature i {
    color: #ECB602;
    width: 24px;
    font-size: 1.1rem;
}

.catering-contact {
    background: #fffbf1;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #290849;
    font-weight: 500;
}

.contact-item i {
    color: #ECB602;
    width: 24px;
    font-size: 1.1rem;
}

/* Seva Saturday Page Styles */
.seva-main {
    background: #F5F0E8;
}

.seva-main-image-container {
    text-align: center;
}

.seva-main-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.seva-main-image:hover {
    transform: scale(1.02);
}

.seva-schedule {
    background: #fffbf1;
}

.schedule-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #ECB602;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.schedule-time {
    background: linear-gradient(135deg, #ECB602, #FFD524);
    color: #290849;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.schedule-time i {
    font-size: 1.1rem;
}

.schedule-title {
    color: #290849;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.schedule-description {
    color: #666;
    line-height: 1.6;
}

.seva-benefits {
    background: #F5F0E8;
}

.benefits-image-container {
    text-align: center;
}

.benefits-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.benefits-image:hover {
    transform: scale(1.02);
}

.benefits-list {
    background: rgba(236, 182, 2, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ECB602;
}

.benefit-item {
    display: flex;
    align-items: center;
    color: #290849;
    font-weight: 500;
}

.benefit-item i {
    color: #ECB602;
    width: 24px;
    font-size: 1.1rem;
}

.seva-preparation {
    background: #fffbf1;
}

.preparation-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #ECB602;
}

.preparation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.preparation-icon {
    background: linear-gradient(135deg, #ECB602, #FFD524);
    color: #290849;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.preparation-title {
    color: #290849;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.preparation-description {
    color: #666;
    line-height: 1.6;
}

.seva-contact {
    background: #F5F0E8;
}

.seva-info {
    max-width: 600px;
    margin: 0 auto;
}

.seva-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #290849;
    font-weight: 500;
}

.seva-detail i {
    color: #ECB602;
    width: 24px;
    font-size: 1.1rem;
}

/* Association Page Styles */
.daily-programs-section {
    background: #F5F0E8;
}

.weekly-readings-section {
    background: #fffbf1;
}

.seva-section {
    background: #F5F0E8;
}

.sunday-feast-section {
    background: #fffbf1;
}

.association-contact {
    background: #F5F0E8;
}

/* Global Loading Overlay */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: #55185D; /* fully opaque brand base */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}
.loading-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.loading-inner { text-align: center; color: #FFD524; font-family: "Raleway", sans-serif; display:flex; flex-direction:column; align-items:center; }
.loading-text { font-weight: 600; letter-spacing: 2px; font-size: 1rem; text-transform: uppercase; }
.loading-logo { filter: drop-shadow(0 0 15px rgba(255,213,36,0.35)); animation: pulseGlow 2.2s ease-in-out infinite; }

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(255,213,36,0.3)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 18px rgba(255,213,36,0.55)); }
}

@media (prefers-reduced-motion: reduce) {
    .loading-overlay { transition: none; }
}


