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

:root {
    --primary: #d4af37;
    --secondary: #8b4513;
    --dark: #1a1410;
    --text: #ffffff;
    --accent: #ff6b35;
    --light: #f8f9fa;
    --gray: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1410 0%, #2d1f0f 50%, #1a1410 100%);
    z-index: -1;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    gap: 10px;
}

.lang-btn {
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: var(--primary);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(212, 175, 55, 0.4);
}

.lang-btn.active {
    background: var(--primary);
    color: var(--dark);
}

/* Navigation */
.navbar {
    background: rgba(26, 20, 16, 0.95);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo-nav {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

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

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(139, 69, 19, 0.1) 100%);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding: 100px 20px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light);
}

.hero-description {
    font-size: 18px;
    color: rgba(248, 249, 250, 0.8);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Sections */
.section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--light);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
}

/* Page Title */
.page-title {
    font-size: 56px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.page-subtitle {
    font-size: 18px;
    text-align: center;
    color: rgba(248, 249, 250, 0.7);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(90deg, var(--primary) 0%, #e0c158 100%);
    color: var(--dark);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-large {
    padding: 16px 50px;
    font-size: 16px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 50px;
    display: block;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
}

.feature-card p {
    font-size: 15px;
    color: rgba(248, 249, 250, 0.8);
}

/* Facts Grid */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.fact-box {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.fact-box:hover {
    background: rgba(212, 175, 55, 0.15);
}

.fact-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.fact-box p {
    font-size: 14px;
    color: rgba(248, 249, 250, 0.8);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.content-box {
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.content-box:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.content-box h2,
.content-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.content-box p {
    font-size: 15px;
    color: rgba(248, 249, 250, 0.8);
    line-height: 1.8;
}

/* Rituals Grid */
.rituals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.ritual-card {
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.ritual-card:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.ritual-icon {
    font-size: 50px;
    display: block;
    margin-bottom: 15px;
}

.ritual-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
}

.ritual-card p {
    font-size: 15px;
    color: rgba(248, 249, 250, 0.8);
}

/* Dates Section */
.dates-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.date-card {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.date-header {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 20px;
}

.date-info {
    margin-bottom: 20px;
}

.date-label {
    font-size: 12px;
    color: rgba(248, 249, 250, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.date-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--light);
}

.important-dates {
    text-align: left;
}

.date-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.date-type {
    font-weight: 600;
    color: var(--primary);
}

/* Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.timeline-item {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.timeline-year {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.timeline-item p {
    font-size: 14px;
    color: rgba(248, 249, 250, 0.8);
}

/* Guide Content */
.guide-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.guide-box {
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 30px;
}

.guide-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary);
}

.guide-list {
    list-style: none;
}

.guide-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: rgba(248, 249, 250, 0.8);
    line-height: 1.6;
}

.guide-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Checklist */
.checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.checklist-item {
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 20px;
    font-size: 15px;
    color: rgba(248, 249, 250, 0.8);
}

/* CTA Section */
.cta-section {
    background: rgba(212, 175, 55, 0.08) !important;
}

.cta-text {
    font-size: 18px;
    color: rgba(248, 249, 250, 0.8);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info-box,
.contact-form-box {
    background: rgba(26, 20, 16, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 30px;
}

.contact-info-box h2,
.contact-form-box h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary);
}

.contact-item {
    margin-bottom: 20px;
}

.contact-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-item p {
    color: rgba(248, 249, 250, 0.8);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(248, 249, 250, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.contact-form select option {
    background: var(--dark);
    color: var(--text);
}

.btn-submit {
    padding: 12px 30px;
    background: linear-gradient(90deg, var(--primary) 0%, #e0c158 100%);
    color: var(--dark);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(212, 175, 55, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--light);
    list-style: none;
}

.faq-icon {
    font-size: 20px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(248, 249, 250, 0.8);
    font-size: 15px;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    margin-bottom: 10px;
    color: rgba(248, 249, 250, 0.7);
}

.footer-content p:first-child {
    font-weight: 700;
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 15px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .page-title {
        font-size: 40px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 14px;
    }

    .language-switcher {
        top: 10px;
        right: 10px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .section {
        padding: 50px 0;
    }

    .hero {
        padding: 60px 15px;
    }

    .contact-content {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .page-title {
        font-size: 32px;
    }

    .nav-links {
        font-size: 12px;
        gap: 10px;
    }

    .logo-nav {
        font-size: 16px;
    }

    .container {
        padding: 0 15px;
    }
}
