:root {
    --deep-red: #730B19;
    --cultural-gold: #D79E10;
    --dark-brown: #4A3C31;
    --warm-cream: #F9F5F1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    color: var(--dark-brown);
}

.hero-section {
    background-color: var(--warm-cream);
    position: relative;
    overflow: hidden;
    background-image: url('../images/cultural-pattern.png');
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1rem;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    animation: fadeIn 1s ease-out;
}

.hero-title {
    font-family: 'Kalam', cursive;
    font-size: 3rem;
    font-weight: bold;
    color: var(--deep-red);
    line-height: 1.2;
}

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

.hero-subtitle {
    display: block;
    font-size: 1.875rem;
    margin-top: 0.5rem;
    color: var(--dark-brown);
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 2.25rem;
    }
    .button-group {
        display: flex;
        gap: 0.5rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    margin: 2rem 0;
}

.highlight {
    color: var(--deep-red);
    font-weight: 600;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .button-group {
        flex-direction: row;
        gap: 1rem;
        width: auto;
    }
}

/* Common button styles */
.button-base {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    font-family: system-ui, -apple-system, sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-button, .secondary-button, .download-button, .register-button, .gallery-button, .submit-button, .calendar-button {
    composes: button-base;
}

.primary-button, .secondary-button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    font-family: system-ui, -apple-system, sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 220px;
    justify-content: center;
}

.primary-button {
    background-color: var(--deep-red);
    color: white;
    border: none;
}

.primary-button:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.secondary-button {
    background-color: transparent;
    color: var(--cultural-gold);
    border: 2px solid var(--cultural-gold);
}

.secondary-button:hover {
    background-color: var(--cultural-gold);
    color: white;
}

.secondary-button:hover .icon {
    fill: var(--deep-red);
    transition: fill 0.3s ease;
}

.icon {
    margin-right: 0.5rem;
    fill: currentColor;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.star-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background-color: var(--cultural-gold);
    color: white;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    animation: starGlow 4s ease-in-out infinite;
}

.star-badge svg {
    width: 1.3rem;
    height: 1.3rem;
    fill: white;
}

@keyframes starGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.5),
                   0 0 30px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.8),
                   0 0 50px rgba(212, 175, 55, 0.5);
    }
}

.magazine-section {
    margin-top: 4rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.magazine-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .magazine-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.magazine-title {
    font-family: 'Kalam', cursive;
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--deep-red);
}

.magazine-subtitle {
    display: block;
    font-size: 1.25rem;
    color: var(--dark-brown);
    margin-top: 0.5rem;
}

.magazine-description {
    margin: 1rem 0;
}

.download-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--cultural-gold);
    color: var(--deep-red);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-button:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.magazine-cover-container {
    position: relative;
    padding-top: 1.5rem;
}

.magazine-cover {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.magazine-cover:hover {
    transform: scale(1.05);
}

.edition-badge {
    position: absolute;
    top: 0.75rem;
    right: 5rem;
    background-color: var(--deep-red);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    z-index: 10;
}

.gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5rem;
    background: linear-gradient(to top, white, transparent);
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
}

/* Navigation Styles */
.nav-bar {
    background-color: var(--deep-red);
    color: white;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.brand-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: fit-content;
    transition: opacity 0.3s;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
}

.nav-logo {
    height: 3.5rem;
    width: 3.5rem;
    border-radius: 9999px;
    border: 2px solid var(--cultural-gold);
}

.brand-text {
    font-family: 'Kalam', cursive;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.desktop-nav {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 2.5rem;
    }
}

.nav-link {
    font-family: 'Kalam', cursive;
    font-size: 1.25rem;
    padding: 0.5rem;
    text-align: center;
    font-weight: normal;
    transition: all 0.3s;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    min-width: fit-content;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--cultural-gold);
    transform: scale(1.05);
}

.nav-link.active {
    font-weight: bold;
    color: var(--cultural-gold);
}

.mobile-menu-button {
    display: block;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-button {
        display: none;
    }
}

.mobile-menu {
    display: none;
    background-color: var(--deep-red);
    border-top: 1px solid var(--cultural-gold);
}

.mobile-menu.show {
    display: block;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-nav-link:hover {
    font-weight: 800;
}

.mobile-nav-link.active {
    font-weight: 800;
    color: var(--cultural-gold);
}

/* Durgotsav Section Styles */
.durgotsav-section {
    background-color: var(--warm-cream);
    padding: 5rem 0;
}

.section-title {
    font-family: 'Kalam', cursive;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--deep-red);
    margin-bottom: 1rem;
    text-align: center;
}

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

.section-subtitle {
    display: block;
    font-size: 1.5rem;
    color: var(--cultural-gold);
    margin-top: 0.5rem;
    text-align: center;
}

.section-description {
    font-size: 1.25rem;
    color: var(--dark-brown);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.7;
}

.countdown-container {
    margin-top: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.countdown-title {
    font-size: 1.25rem;
    color: var(--deep-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .countdown-grid {
        gap: 2rem;
    }
}

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

.countdown-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--cultural-gold);
}

.countdown-label {
    font-size: 0.875rem;
    color: var(--dark-brown);
}

.features-grid {
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
}

.features-grid2 {
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
}

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

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .features-grid2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Base feature card styles */
.feature-card {
    background-color: #F9F5F1;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    color: var(--cultural-gold);
    margin-bottom: 2rem;
}

.feature-icon .icon {
    fill: currentColor;
    width: 2rem;
    height: 2rem;
}

.feature-title {
    font-family: 'Kalam', cursive;
    font-size: 2rem;
    font-weight: bold;
    color: var(--deep-red);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature-description {
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--dark-brown);
    font-size: 0.95rem;
}

.list-icon {
    flex-shrink: 0;
}

/* Food & Stalls and Volunteer & Support specific styles */
.food-stalls-card,
.volunteer-card {
    background-color: #E6DCD6;
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.card-header .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.card-header .feature-title {
    margin: 0;
    font-size: 1.5rem;
    color: var(--deep-red);
}

.card-image {
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    overflow: hidden;
    border-radius: 1.5rem 1.5rem 0 0;
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.feature-tag {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.feature-tag.gold {
    background-color: var(--cultural-gold);
}

.feature-tag.burgundy {
    background-color: var(--deep-red);
}

.feature-tag.green {
    background-color: #16A34A;
}

.feature-buttons {
    display: flex;
    /* flex-direction: column; */
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.feature-button {
    width: 100%;
    padding: 0.875rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.feature-button.burgundy {
    background-color: var(--deep-red);
    color: white;
}

.feature-button.outline {
    background-color: transparent;
    border: 2px solid var(--cultural-gold);
    color: var(--cultural-gold);
}

.feature-button:hover {
    transform: translateY(-2px);
}

.feature-button.burgundy:hover {
    background-color: #8B0D1E;
}

.feature-button.outline:hover {
    background-color: var(--cultural-gold);
    color: white;
}

.program-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.95rem;
    color: var(--dark-brown);
    font-size: 0.95rem;
}

.program-column > div {
    margin-bottom: 0.75rem;
}

.stall-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.tag.authentic {
    background-color: var(--cultural-gold);
    color: white;
}

.tag.local {
    background-color: var(--deep-red);
    color: white;
}

.tag.hygienic {
    background-color: #16a34a;
    color: white;
}

.volunteer-button, .sponsor-button {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.volunteer-button {
    background-color: var(--deep-red);
    color: white;
}

.sponsor-button {
    background-color: transparent;
    border: 2px solid var(--cultural-gold);
    color: var(--cultural-gold);
}

.volunteer-button:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.sponsor-button:hover {
    background-color: var(--cultural-gold);
    color: white;
}

/* Hide/Show utility classes */
.show {
    display: block;
}

.hide {
    display: none;
}

/* Events Section Styles */
.events-section {
    background-color: white;
    padding: 5rem 0;
}

.events-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

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

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

.event-card {
    background-color: var(--warm-cream);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.event-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.event-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.event-title {
    font-family: 'Kalam', cursive;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--deep-red);
    margin-bottom: 0.75rem;
}

.event-description {
    color: var(--dark-brown);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.event-date {
    display: flex;
    align-items: center;
    color: var(--cultural-gold);
    font-size: 0.875rem;
}

.event-date.eco {
    color: #16a34a;
}

.event-date .icon {
    margin-right: 0.5rem;
    fill: currentColor;
}

/* Open Mic Section */
.open-mic-section {
    background-color: var(--warm-beige);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.open-mic-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .open-mic-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
}

.open-mic-image img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.open-mic-title {
    font-family: 'Kalam', cursive;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--deep-red);
    margin-bottom: 0.5rem;
}

.open-mic-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 0.75rem;
}

.open-mic-description {
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.performance-types {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.performance-type {
    display: flex;
    align-items: center;
    color: var(--cultural-gold);
    font-size: 0.875rem;
}

.performance-type .icon {
    margin-right: 0.75rem;
    fill: currentColor;
}

.register-button {
    background-color: var(--deep-red);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.register-button:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Drama Section Styles */
.drama-section {
    background-color: var(--warm-cream);
    padding: 5rem 0;
}

.drama-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 4rem;
}

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

@media (min-width: 1024px) {
    .drama-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.drama-card {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.drama-card:hover .drama-overlay {
    opacity: 1;
}

.drama-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.drama-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.play-icon {
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Support Section Styles */
.support-section {
    background-color: var(--deep-red);
    color: white;
    padding: 5rem 0;
}

.support-section .section-title {
    color: white;
}

.support-section .section-subtitle {
    color: var(--cultural-gold);
}

.support-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.support-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

@media (min-width: 1024px) {
    .support-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.support-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: background-color 0.3s;
}

.support-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.support-icon {
    color: var(--cultural-gold);
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.support-title {
    font-family: 'Kalam', cursive;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.support-description {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.outline-button {
    width: 100%;
    background-color: transparent;
    color: var(--cultural-gold);
    padding: 0.75rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--cultural-gold);
    cursor: pointer;
    transition: all 0.3s;
}

.outline-button:hover {
    background-color: var(--cultural-gold);
    color: var(--deep-red);
    transform: scale(1.05);
}

/* Announcements Section Styles */
.announcements-section {
    background-color: white;
    padding: 5rem 0;
}

.announcements-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .announcements-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.announcements-title,
.calendar-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--deep-red);
    margin-bottom: 1.5rem;
}

.icon {
    fill: currentColor;
}

/* Announcements List */
.announcements-list {
    display: grid;
    gap: 1rem;
}

.announcement-card {
    padding: 1.25rem;
    border-radius: 0.5rem;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid;
}

.announcement-card.cultural-gold {
    border-color: var(--cultural-gold);
}

.announcement-card.green {
    border-color: #16a34a;
}

.announcement-card.blue {
    border-color: #2563eb;
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.announcement-title {
    font-weight: 600;
    color: var(--dark-brown);
}

.announcement-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    background-color: var(--cultural-gold);
    color: white;
}

.announcement-content {
    font-size: 0.875rem;
    color: var(--dark-brown);
    margin-bottom: 0.75rem;
}

.announcement-date {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Calendar Styles */
.calendar-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.calendar-event {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 4rem;
    padding: 0.5rem;
    border-radius: 0.375rem;
    color: white;
}

.event-date.deep-red {
    background-color: var(--deep-red);
}

.event-date.cultural-gold {
    background-color: var(--cultural-gold);
}

.event-date.green {
    background-color: #16a34a;
}

.month {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.day {
    font-size: 1.25rem;
    font-weight: bold;
}

.event-details {
    flex: 1;
}

.event-title {
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 0.25rem;
}

.event-time {
    font-size: 0.875rem;
    color: #6b7280;
}

.calendar-button {
    width: 100%;
    background-color: var(--deep-red);
    color: white;
    padding: 0.75rem;
    border-radius: 0.375rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.calendar-button:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Gallery Section Styles */
.gallery-section {
    background-color: var(--warm-cream);
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 15rem;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

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

.gallery-caption {
    color: white;
}

.gallery-caption h4 {
    font-family: 'Kalam', cursive;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.gallery-caption p {
    font-size: 0.875rem;
    opacity: 0.9;
}

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

.gallery-button {
    background-color: var(--deep-red);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-button:hover {
    background-color: #a00000;
    transform: scale(1.05);
}

/* Contact Section Styles */
.contact-section {
    background-color: var(--deep-red);
    padding: 5rem 0;
    color: var(--warm-cream);
}

.contact-section .section-title {
    color: var(--warm-cream);
}

.contact-section .section-subtitle {
    color: var(--cultural-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-section .section-description {
    color: var(--warm-cream);
    opacity: 0.9;
    max-width: 48rem;
    margin: 1.5rem auto 0;
}

/* Contact Form Styles */
.contact-form-container {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group label {
    color: var(--warm-cream);
    opacity: 0.9;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.375rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--warm-cream);
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cultural-gold);
    background-color: rgba(255, 255, 255, 0.15);
}

.submit-button {
    width: 100%;
    background-color: var(--cultural-gold);
    color: var(--deep-red);
    padding: 0.875rem;
    border-radius: 0.375rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background-color: #e6c14f;
    transform: scale(1.02);
}

/* Contact Info Styles */
.info-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.info-icon {
    color: var(--cultural-gold);
}

.info-content h4 {
    color: var(--warm-cream);
}

.info-content p {
    color: var(--warm-cream);
    opacity: 0.9;
}

.social-link {
    color: var(--cultural-gold);
}

.social-link:hover {
    color: #e6c14f;
}

/* Footer Styles */
.footer {
    background-color: #2C1A12;
    color: var(--warm-cream);
    padding: 2rem 0;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo svg {
    color: var(--cultural-gold);
    animation: float 3s ease-in-out infinite;
}

.footer-logo h3 {
    font-family: 'Kalam', cursive;
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-tagline {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-copyright {
    border-top: 1px solid rgba(248, 244, 240, 0.3);
    padding-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.7;
}

.footer-copyright span {
    font-family: 'Crimson Text', serif;
    font-style: italic;
}

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

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-title {
    font-family: 'Kalam', cursive;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--cultural-gold);
}

.footer-description {
    font-size: 0.875rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.9;
    transition: opacity 0.3s;
}

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

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.625rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.375rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 0.625rem 1rem;
    background-color: var(--cultural-gold);
    color: var(--deep-red);
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background-color: #e6c14f;
    transform: scale(1.05);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-social .social-link {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.9;
    transition: all 0.3s;
}

.footer-social .social-link:hover {
    color: var(--cultural-gold);
    opacity: 1;
}

/* Contact Section Additional Styles */
.contact-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.contact-column-title {
    font-family: 'Kalam', cursive;
    font-size: 1.75rem;
    color: var(--cultural-gold);
    margin-bottom: 1.5rem;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 0.5rem;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
}

.info-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.community-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.community-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whatsapp-button,
.telegram-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
}

.telegram-button {
    background-color: #0088cc;
    color: white;
}

.whatsapp-button:hover,
.telegram-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.whatsapp-button svg,
.telegram-button svg {
    width: 1.5rem;
    height: 1.5rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background-color: var(--warm-cream);
    color: var(--deep-red);
    transition: all 0.3s ease;
}

.social-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.social-button svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Modal Styles
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: var(--warm-cream);
    margin: 15% auto;
    padding: 1.5rem;
    border-radius: 1rem;
    max-width: 400px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalFadeIn 0.3s ease-out;
}

.close-modal {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--deep-red);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--cultural-gold);
    transform: scale(1.1);
} */

.payment-qr {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 90%;
    max-width: 500px;
}

.close-modal {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #000;
}

body.modal-open {
    overflow: hidden;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* When modal is open */
body.modal-open {
    overflow: hidden;
}

/* About Section Styles */
.about-section {
    background-color: var(--warm-cream);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/cultural-pattern.png');
    opacity: 0.1;
    pointer-events: none;
}

.about-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.about-image {
    position: relative;
}

.rounded-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-content {
    padding: 1rem;
}

.about-quote {
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--dark-brown);
    border-left: 4px solid var(--cultural-gold);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-description {
    color: var(--dark-brown);
    line-height: 1.7;
}

.values-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

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

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-icon {
    color: var(--cultural-gold);
    margin-bottom: 1rem;
}

.value-title {
    font-family: 'Kalam', cursive;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--deep-red);
    margin-bottom: 0.5rem;
}

.value-description {
    font-size: 0.875rem;
    color: var(--dark-brown);
}

/* Gallery Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1100;
    justify-content: center;
    align-items: center;
}

.gallery-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    padding: 0 4rem;
}

.gallery-modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.gallery-modal-caption {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    width: 100%;
    padding: 1rem;
}

.gallery-modal-caption h4 {
    font-family: 'Kalam', cursive;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.gallery-modal-caption p {
    font-size: 0.875rem;
    opacity: 0.9;
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 1110;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.gallery-modal-prev {
    left: -1rem;
}

.gallery-modal-next {
    right: -1rem;
} 