/* Color Palette inspired by the logo */
:root {
    --burgundy-dark: #4A1111;
    --burgundy: #6B1F1F;
    --burgundy-light: #8B2323;
    --gold: #D4AF37;
    --gold-light: #F0D98F;
    --cream: #FFF8DC;
    --text-dark: #2C1810;
    --text-light: #F5F5F5;
    --background: #FFF9F0;
}

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

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: var(--background);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
    box-shadow: 0 4px 20px rgba(107, 31, 31, 0.3);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.nav-brand:hover {
    opacity: 0.8;
}

.nav-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.nav-title {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--cream);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(74, 17, 17, 0.5), rgba(107, 31, 31, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.carousel-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--gold-light);
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.carousel-subtitle {
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 30px;
    max-width: 700px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.carousel-cta {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--burgundy-dark);
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.carousel-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.8);
    color: var(--burgundy-dark);
    border: none;
    font-size: 3rem;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    border-radius: 5px;
}

.carousel-btn:hover {
    background: var(--gold);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-indicator.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--background), white);
}

.welcome-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.section-heading {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: var(--burgundy-dark);
    margin-bottom: 20px;
}

.decorative-line {
    width: 100px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 30px;
}

.welcome-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--cream), var(--gold-light));
    border-radius: 15px;
    border: 2px solid var(--gold);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(107, 31, 31, 0.2);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--burgundy-dark);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Gallery Preview Section */
.gallery-preview {
    padding: 80px 0;
    background: var(--background);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(107, 31, 31, 0.15);
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(107, 31, 31, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
    text-align: center;
    color: var(--cream);
}

.cta-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--burgundy-dark);
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
    color: var(--cream);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--gold-light);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--cream);
}

/* Events Section */
.events-section {
    padding: 60px 0;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--burgundy-dark);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.event-card {
    background: white;
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(107, 31, 31, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy));
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(107, 31, 31, 0.25);
}

.event-card.past {
    opacity: 0.7;
}

.event-title {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--burgundy-dark);
    margin-bottom: 15px;
}

.event-artist {
    font-size: 1.2rem;
    color: var(--burgundy);
    margin-bottom: 10px;
    font-weight: 600;
}

.event-details {
    margin: 15px 0;
    line-height: 1.8;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.event-detail-icon {
    color: var(--gold);
    font-weight: bold;
}

.event-description {
    margin: 15px 0;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.seats-info {
    background: linear-gradient(135deg, var(--cream), var(--gold-light));
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    border: 1px solid var(--gold);
}

.seats-info.full {
    background: linear-gradient(135deg, #ffcccc, #ff9999);
}

.seats-available {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--burgundy-dark);
}

.seats-full {
    color: #cc0000;
    font-weight: 700;
}

.book-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: var(--gold-light);
    border: 2px solid var(--gold);
    border-radius: 10px;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.book-button:hover {
    background: linear-gradient(135deg, var(--burgundy-light), var(--burgundy));
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(107, 31, 31, 0.4);
}

.book-button:disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
    border-color: #999;
}

.book-button.booking-coming-soon {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: var(--cream);
    border-color: #545b62;
}

.book-button.booking-closed,
.book-button.booking-completed {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: var(--cream);
    border-color: #bd2130;
}

/* About Page Styles */
.about-content {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse > * {
    direction: ltr;
}

.about-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--burgundy-dark);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(107, 31, 31, 0.2);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.values-section,
.mission-section {
    margin: 80px 0;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--gold);
    box-shadow: 0 5px 20px rgba(107, 31, 31, 0.1);
}

.value-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--burgundy-dark);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.mission-text {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-dark);
}

.gallery-section {
    padding: 80px 0;
    background: var(--background);
}

.full-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

/* Contact Page Styles */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--burgundy-dark);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, var(--cream), white);
    border-radius: 10px;
    border: 1px solid var(--gold);
}

.contact-icon {
    font-size: 2.5rem;
}

.contact-details h3 {
    font-family: 'Cinzel', serif;
    color: var(--burgundy-dark);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    color: var(--burgundy);
    text-decoration: none;
    padding: 5px 15px;
    border: 1px solid var(--burgundy);
    border-radius: 5px;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--burgundy);
    color: var(--cream);
}

.contact-form-container h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--burgundy-dark);
    margin-bottom: 30px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid var(--gold);
    box-shadow: 0 5px 20px rgba(107, 31, 31, 0.1);
}

.form-success {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border: 2px solid #4caf50;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-top: 20px;
}

.form-success h3 {
    color: #2e7d32;
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.form-success p {
    font-size: 1.1rem;
    color: #1b5e20;
}

.faq-section {
    padding: 80px 0;
    background: var(--background);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--gold);
    box-shadow: 0 5px 20px rgba(107, 31, 31, 0.1);
}

.faq-item h3 {
    font-family: 'Cinzel', serif;
    color: var(--burgundy-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.faq-item a {
    color: var(--burgundy);
    text-decoration: underline;
}

/* FAQ Page Styles */
.faq-section-page {
    padding: 60px 0;
    background: var(--background);
}

.faq-categories {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--burgundy-dark);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--gold);
}

.faq-item-detailed {
    background: white;
    border: 2px solid var(--gold);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(107, 31, 31, 0.1);
    transition: all 0.3s;
}

.faq-item-detailed:hover {
    box-shadow: 0 8px 30px rgba(107, 31, 31, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    background: linear-gradient(135deg, var(--cream), var(--gold-light));
    padding: 20px 30px;
    cursor: pointer;
}

.faq-question h3 {
    font-family: 'Cinzel', serif;
    color: var(--burgundy-dark);
    font-size: 1.3rem;
    margin: 0;
}

.faq-answer {
    padding: 25px 30px;
}

.faq-answer p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.faq-answer a {
    color: var(--burgundy);
    text-decoration: underline;
    font-weight: 600;
}

.faq-answer a:hover {
    color: var(--burgundy-dark);
}

.faq-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 30px;
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
    border-radius: 20px;
    color: var(--cream);
}

.faq-cta h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 15px;
}

.faq-cta p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

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

.modal-content {
    background: linear-gradient(to bottom, var(--background), white);
    margin: 5% auto;
    padding: 0;
    border: 3px solid var(--gold);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

.close-modal {
    color: var(--gold-light);
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.close-modal:hover {
    color: white;
    background: rgba(0, 0, 0, 0.4);
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
    color: var(--gold-light);
    padding: 30px;
    border-radius: 17px 17px 0 0;
    text-align: center;
}

.modal-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
}

.modal-body {
    padding: 30px;
}

.payment-section {
    background: linear-gradient(135deg, var(--cream), var(--gold-light));
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 2px solid var(--gold);
    text-align: center;
}

.payment-section h3 {
    font-family: 'Cinzel', serif;
    color: var(--burgundy-dark);
    margin-bottom: 15px;
}

.qr-code-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.qr-code-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border: 3px solid var(--burgundy-dark);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(107, 31, 31, 0.2);
}

.qr-instructions {
    margin-top: 15px;
    font-size: 1.1rem;
    color: var(--burgundy-dark);
    font-weight: 600;
    text-align: center;
}

.upi-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #60a917, #7ab82e);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 15px 0;
    transition: all 0.3s;
    border: 2px solid #4d8a13;
}

.upi-button:hover {
    background: linear-gradient(135deg, #7ab82e, #60a917);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(96, 169, 23, 0.4);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--burgundy-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--gold);
    border-radius: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    background: white;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burgundy);
    box-shadow: 0 0 10px rgba(107, 31, 31, 0.2);
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: var(--gold-light);
    border: 2px solid var(--gold);
    border-radius: 10px;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background: linear-gradient(135deg, var(--burgundy-light), var(--burgundy));
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(107, 31, 31, 0.4);
}

.success-message {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border: 2px solid #4caf50;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.success-message h3 {
    color: #2e7d32;
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.success-message p {
    font-size: 1.1rem;
    color: #1b5e20;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
    color: var(--cream);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-section p {
    color: var(--cream);
    line-height: 1.8;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--gold);
    color: var(--gold-light);
}

/* Loading Animation */
.loading {
    text-align: center;
    padding: 40px;
    font-size: 1.2rem;
    color: var(--burgundy);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--burgundy);
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--burgundy-dark);
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-title {
        font-size: 1.5rem;
    }

    .carousel-title {
        font-size: 2rem;
    }

    .carousel-subtitle {
        font-size: 1.2rem;
    }

    .carousel-btn {
        font-size: 2rem;
        padding: 10px 15px;
    }

    .section-heading {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .full-gallery {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .hero-carousel {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .nav-title {
        font-size: 1.2rem;
    }

    .nav-logo {
        width: 40px;
        height: 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .carousel-title {
        font-size: 1.5rem;
    }

    .carousel-subtitle {
        font-size: 1rem;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .event-title {
        font-size: 1.3rem;
    }

    .upi-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .contact-form {
        padding: 20px;
    }

    .hero-carousel {
        height: 350px;
    }
}
