:root {
    --primary: #8B0000;
    --primary-dark: #6d0000;
    --gold: #D4AF37;
    --gold-light: #FFD700;
    --cream: #FFF8E7;
    --dark: #2C1A0D;
    --light: #F9F5F0;
    --text: #333333;
    --text-light: #777777;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-inner {
    position: relative;
    width: 60px;
    height: 60px;
}

.preloader-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.preloader-icon span {
    display: block;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navigation */
.navbar {
    padding: 20px 0;
    background-color: rgba(44, 26, 13, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    margin-right: 15px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 15px !important;
    margin: 0 5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 30px);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

.cta-button {
    background-color: var(--gold);
    color: var(--dark) !important;
    border-radius: 30px;
    padding: 8px 20px !important;
    margin-left: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    color: var(--dark) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: -80px;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(44, 26, 13, 0.8) 0%, rgba(44, 26, 13, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.arrow-down {
    width: 20px;
    height: 20px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    margin-top: 5px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(-45deg) translateY(0);
    }
    40% {
        transform: rotate(-45deg) translateY(-10px);
    }
    60% {
        transform: rotate(-45deg) translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    margin-bottom: 50px;
    position: relative;
}

.section-subtitle {
    display: inline-block;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin-top: 15px;
}

.section-description {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto 30px;
    max-width: 400px;
}

.divider-line {
    height: 1px;
    background-color: var(--gold);
    flex-grow: 1;
}

.divider-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    font-size: 16px;
}

/* Quick Links Section */
.quick-links-section {
    padding: 80px 0;
    background-color: var(--cream);
}

.quick-link-card {
    background: white;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.bg-gold {
    background-color: var(--gold);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.bg-red {
    background-color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.quick-link-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 600;
}

.quick-link-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: white;
}

.about-text {
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.upadevas-list {
    margin-bottom: 30px;
}

.upadevas-list h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.upadevas-list ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.upadevas-list li {
    background-color: var(--light);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--text);
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(44, 26, 13, 0.3) 0%, transparent 100%);
}

.btn-link {
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.btn-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-link:hover {
    color: var(--primary);
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* Rituals Section */
.rituals-section {
    padding: 80px 0;
    background-color: var(--light);
}

.rituals-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.ritual-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.ritual-card:hover {
    transform: translateY(-10px);
}

.ritual-header {
    padding: 20px;
    background-color: var(--gold);
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ritual-header i {
    font-size: 1.5rem;
}

.ritual-header h3 {
    margin-bottom: 0;
    color: white;
}

.ritual-list {
    list-style: none;
    padding: 20px;
}

.ritual-list li {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ritual-list li:last-child {
    border-bottom: none;
}

.time {
    font-weight: 600;
    color: var(--gold);
}

.name {
    font-weight: 500;
}

.description {
    grid-column: 2;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 5px;
}

.ritual-note {
    padding: 15px 20px;
    background-color: var(--cream);
    margin: 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.ritual-note i {
    color: var(--gold);
    margin-right: 5px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: white;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: rgba(139, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    color: var(--text);
}

.service-features li:last-child {
    border-bottom: none;
}

.payment-options {
    margin-top: 50px;
}

.payment-options h4 {
    margin-bottom: 20px;
    color: var(--dark);
}

.qr-code {
    max-width: 200px;
    margin: 0 auto 15px;
    padding: 10px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.payment-options p {
    color: var(--text-light);
}

/* Updates Section */
.updates-section {
    padding: 80px 0;
    background-color: var(--cream);
}

.update-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.update-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.update-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.update-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.update-card:hover .update-image img {
    transform: scale(1.05);
}

.update-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.badge-date {
    background-color: var(--primary);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.badge-category {
    background-color: var(--gold);
    color: var(--dark);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 12px;
}

.update-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.update-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 600;
}

.update-excerpt {
    color: #555;
    margin-bottom: 15px;
    flex-grow: 1;
}

.update-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.update-meta span {
    display: flex;
    align-items: center;
    color: #666;
}

.update-meta i {
    margin-right: 5px;
    color: var(--primary);
}

.read-more-btn {
    color: var(--primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more-btn:hover {
    color: var(--primary-dark);
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

.btn-view-all {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 6px;
}

/* Social Media Section */
.social-section {
    padding: 80px 0;
    background-color: white;
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.social-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
    transition: all 0.3s ease;
    z-index: -1;
}

.social-card:hover::before {
    height: 100%;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    color: white;
    border-color: transparent;
}

.social-card.facebook:hover {
    color: white;
}

.social-card.instagram:hover {
    color: white;
}

.social-card.youtube:hover {
    color: white;
}

.social-card.whatsapp:hover {
    color: white;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
    transition: all 0.3s ease;
}

.social-card:hover .social-icon {
    background-color: white !important;
}

.facebook .social-icon {
    background-color: #3b5998;
}

.instagram .social-icon {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.youtube .social-icon {
    background-color: #FF0000;
}

.whatsapp .social-icon {
    background-color: #25D366;
}

.social-card:hover .facebook .social-icon {
    color: #3b5998;
}

.social-card:hover .instagram .social-icon {
    color: #E1306C;
}

.social-card:hover .youtube .social-icon {
    color: #FF0000;
}

.social-card:hover .whatsapp .social-icon {
    color: #25D366;
}

.social-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.social-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.social-card:hover .social-content p {
    color: rgba(255,255,255,0.8);
}

.follow-text {
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-card:hover .follow-text {
    color: white;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--light);
}

.contact-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 20px;
    color: var(--gold);
    margin-right: 15px;
    margin-top: 3px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.form-control {
    padding: 12px 15px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(139, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: linear-gradient(to right, var(--primary), #5a0000);
    color: white;
    position: relative;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-weight: 300;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    color: white;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.temple-hours {
    list-style: none;
}

.temple-hours li {
    margin-bottom: 10px;
    display: flex;
}

.temple-hours span:first-child {
    min-width: 100px;
    font-weight: 500;
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0;
    font-weight: 300;
}

.footer-menu {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 300;
}

.footer-menu a:hover {
    color: var(--gold);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-collapse {
        background-color: var(--dark);
        padding: 20px;
        margin-top: 15px;
        border-radius: 5px;
    }
    
    .nav-link {
        margin: 5px 0 !important;
    }
    
    .cta-button {
        margin-left: 0;
        margin-top: 10px;
    }

    .contact-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-section .row,
    .ritual-list li {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .rituals-container {
        grid-template-columns: 1fr;
    }

    .contact-section .row {
        flex-direction: column-reverse;
    }

    .contact-info {
        margin-top: 40px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .logo-title {
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 40px;
        margin-right: 10px;
    }
    
    .footer-bottom .row {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .footer-menu {
        justify-content: center;
        margin-bottom: 15px;
    }

    .quick-link-card {
        padding: 20px 15px;
    }

    .section-divider {
        max-width: 300px;
    }
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(rgba(44, 26, 13, 0.8), rgba(44, 26, 13, 0.8)), 
                url('../images/temple-history-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: var(--gold);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* History Section */
.history-section {
    padding: 80px 0;
}

.history-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.historical-facts {
    margin: 30px 0;
}

.fact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.fact-item i {
    font-size: 24px;
    color: var(--gold);
    margin-right: 15px;
    width: 40px;
    text-align: center;
}

.fact-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.fact-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.history-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-caption {
    padding: 10px 15px;
    background-color: var(--cream);
    font-size: 0.85rem;
    text-align: center;
    color: var(--text-light);
}

/* Architecture Section */
.architecture-section {
    padding: 80px 0;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background-color: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--gold);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-date {
    padding: 8px 15px;
    background-color: var(--gold);
    color: var(--dark);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
}

.timeline-content {
    padding: 20px;
    background-color: var(--cream);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.timeline-content::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--cream);
    transform: rotate(45deg);
    top: 20px;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    right: -7px;
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -7px;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    border: 3px solid var(--gold);
    border-radius: 50%;
    top: 25px;
}

.timeline-item:nth-child(odd)::after {
    right: -10px;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

/* Legend Section */
.legend-section {
    padding: 80px 0;
}

.legend-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(44, 26, 13, 0.3) 0%, transparent 100%);
}

.legend-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Today Section */
.today-section {
    padding: 80px 0;
}

.today-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.today-list {
    list-style: none;
    margin: 20px 0;
}

.today-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.today-list i {
    color: var(--gold);
    margin-right: 10px;
    margin-top: 3px;
}

.today-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive Timeline */
@media (max-width: 767.98px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item::after {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd)::after,
    .timeline-item:nth-child(even)::after {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        left: 15px;
        right: auto;
        top: -7px;
        transform: rotate(135deg);
    }
}

/* Upadevas Page Specific Styles */
.upadevas-intro {
    padding: 80px 0;
    background-color: white;
}

.intro-text {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Main Deity Section */
.main-deity-section {
    padding: 80px 0;
}

.deity-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.deity-content {
    padding: 30px;
}

.deity-badge {
    display: inline-block;
    background-color: var(--gold);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.deity-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.deity-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.deity-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.feature-item i {
    font-size: 20px;
    color: var(--gold);
    margin-right: 15px;
    margin-top: 3px;
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.feature-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Upadevas Grid Section */
.upadevas-grid-section {
    padding: 80px 0;
    background-color: white;
}

.upadeva-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.upadeva-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.upadeva-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.upadeva-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.upadeva-card:hover .upadeva-image img {
    transform: scale(1.05);
}

.upadeva-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.upadeva-content {
    padding: 20px;
}

.upadeva-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.upadeva-description {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.upadeva-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.upadeva-meta span {
    display: flex;
    align-items: center;
    color: #666;
}

.upadeva-meta i {
    margin-right: 5px;
    color: var(--primary);
}

/* Rituals Section */
.upadeva-rituals-section {
    padding: 80px 0;
}

.ritual-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    gap: 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.ritual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.ritual-icon {
    width: 60px;
    height: 60px;
    background-color: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.ritual-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.ritual-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.ritual-features {
    list-style: none;
    padding-left: 0;
}

.ritual-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.ritual-features i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 0.8rem;
    margin-top: 4px;
}

/* Vazhipad Section */
.vazhipad-section {
    padding: 80px 0;
    background-color: white;
}

.vazhipad-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vazhipad-features {
    margin: 25px 0;
}

.vazhipad-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.vazhipad-features i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .main-deity-section .row {
        flex-direction: column-reverse;
    }
    
    .deity-image {
        margin-top: 30px;
    }
    
    .ritual-card {
        flex-direction: column;
        text-align: center;
    }
    
    .ritual-icon {
        margin: 0 auto 15px;
    }
}

@media (max-width: 767.98px) {
    .upadeva-image {
        height: 200px;
    }
    
    .vazhipad-section .row {
        flex-direction: column-reverse;
    }
    
    .vazhipad-image {
        margin-top: 30px;
    }
}

/* Activities Page Specific Styles */
.activities-intro {
    padding: 80px 0;
    background-color: white;
}

.intro-text {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Regular Activities */
.regular-activities {
    padding: 80px 0;
}

.activity-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.activity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.activity-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.activity-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.activity-features {
    list-style: none;
    padding-left: 0;
    text-align: left;
    margin-bottom: 0;
}

.activity-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    font-size: 0.9rem;
}

.activity-features i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 0.8rem;
    margin-top: 4px;
}

/* Special Programs */
.special-programs {
    padding: 80px 0;
    background-color: white;
}

.program-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.program-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--gold);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.program-content {
    padding: 20px;
}

.program-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.program-description {
    color: var(--text-light);
    margin-bottom: 15px;
}

.program-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.program-meta span {
    display: flex;
    align-items: center;
    color: #666;
}

.program-meta i {
    margin-right: 8px;
    color: var(--primary);
}

/* Community Services */
.community-services {
    padding: 80px 0;
}

.service-tabs {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.nav-tabs {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--text-light);
    font-weight: 500;
    padding: 10px 15px;
    margin-right: 5px;
    border-radius: 5px;
}

.nav-tabs .nav-link.active {
    background-color: var(--primary);
    color: white;
}

.nav-tabs .nav-link i {
    margin-right: 8px;
}

.tab-content {
    padding: 10px 0;
}

.tab-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.tab-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.service-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.service-features i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 0.8rem;
    margin-top: 4px;
}

.service-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(139, 0, 0, 0.8);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item h4 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: white;
}

.stat-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Volunteer Section */
.volunteer-section {
    padding: 80px 0;
    background-color: white;
}

.volunteer-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.volunteer-opportunities {
    margin: 25px 0;
}

.volunteer-opportunities h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.volunteer-opportunities ul {
    list-style: none;
    padding-left: 0;
}

.volunteer-opportunities li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.volunteer-opportunities i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 0.9rem;
    margin-top: 4px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .community-services .row {
        flex-direction: column-reverse;
    }
    
    .service-image {
        margin-top: 30px;
        height: auto;
    }
    
    .service-stats {
        position: relative;
        background: var(--primary);
    }
}

@media (max-width: 767.98px) {
    .volunteer-section .row {
        flex-direction: column-reverse;
    }
    
    .volunteer-image {
        margin-top: 30px;
    }
    
    .program-image {
        height: 200px;
    }
}

/* Vazhipad Page Specific Styles */
.vazhipad-intro {
    padding: 80px 0;
    background-color: white;
}

.intro-text {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Vazhipad Categories */
.vazhipad-categories {
    padding: 80px 0;
}

.category-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Vazhipad Booking Section */
.vazhipad-booking {
    padding: 80px 0;
    background-color: white;
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: rgba(0,0,0,0.1);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step span {
    width: 40px;
    height: 40px;
    background-color: var(--cream);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 10px;
    border: 2px solid rgba(0,0,0,0.1);
}

.step.active span {
    background-color: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.step p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
    font-weight: 500;
}

.step.active p {
    color: var(--dark);
    font-weight: 600;
}

.vazhipad-deity-section {
    margin-bottom: 50px;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    padding: 20px;
    background-color: var(--cream);
}

.deity-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.deity-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.vazhipad-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.vazhipad-table table {
    margin-bottom: 0;
}

.vazhipad-table th {
    background-color: var(--primary);
    color: white;
    font-weight: 500;
    padding: 12px 15px;
}

.vazhipad-table td {
    padding: 12px 15px;
    vertical-align: middle;
}

.vazhipad-table tr:nth-child(even) {
    background-color: rgba(0,0,0,0.02);
}

.vazhipad-table .btn {
    padding: 5px 15px;
    font-size: 0.85rem;
}

.multi-day-section {
    margin-top: 50px;
    padding: 30px;
    background-color: var(--cream);
    border-radius: 10px;
}

.multi-day-section .section-header {
    margin-bottom: 20px;
}

.multi-day-section p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* E-Kanikka Section */
.ekanikka-section {
    padding: 80px 0;
}

.ekanikka-options {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.donation-card {
    background: var(--cream);
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    text-align: center;
}

.donation-icon {
    width: 60px;
    height: 60px;
    background-color: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
}

.donation-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.donation-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.donation-amounts {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.donation-amounts span {
    padding: 5px 15px;
    background-color: white;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.donation-amounts span:hover {
    background-color: var(--gold);
    color: var(--dark);
}

/* Payment Section */
.payment-section {
    padding: 80px 0;
    background-color: white;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
}

.method {
    display: flex;
    align-items: center;
    background: var(--cream);
    padding: 10px 15px;
    border-radius: 5px;
    min-width: 150px;
}

.method i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: var(--primary);
}

.payment-note {
    background: var(--cream);
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

.payment-note i {
    color: var(--gold);
    margin-right: 5px;
}

.qr-code-box {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.qr-code-box img {
    max-width: 200px;
    margin-bottom: 20px;
}

.qr-instructions h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.bank-details {
    text-align: left;
    background: var(--cream);
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
}

.bank-details p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .payment-section .row {
        flex-direction: column-reverse;
    }
    
    .qr-code-box {
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .booking-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .booking-steps::before {
        display: none;
    }
    
    .step {
        flex-direction: row;
        gap: 15px;
    }
    
    .step span {
        margin-bottom: 0;
    }
    
    .vazhipad-table th, 
    .vazhipad-table td {
        padding: 8px;
        font-size: 0.85rem;
    }
    
    .method {
        min-width: 120px;
    }
}

/* Festivals Page Specific Styles */
.festivals-intro {
    padding: 80px 0;
    background-color: white;
}

.intro-text {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Festival Calendar */
.festival-calendar {
    padding: 80px 0;
}

.calendar-container {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-nav h3 {
    margin-bottom: 0;
    color: var(--dark);
}

.calendar-nav button {
    background: var(--cream);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.calendar-nav button:hover {
    background: var(--gold);
    color: var(--dark);
}

.calendar-grid {
    margin-bottom: 30px;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-days div {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-days div:hover {
    background: var(--gold);
    color: var(--dark);
}

.calendar-events {
    background: var(--cream);
    padding: 20px;
    border-radius: 10px;
}

.calendar-events h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 10px;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-item {
    display: flex;
    gap: 15px;
}

.event-date {
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.event-details h5 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.event-details p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Major Festivals */
.major-festivals {
    padding: 80px 0;
    background-color: white;
}

.festival-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.festival-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.festival-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.festival-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}