/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #161616;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 6px;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(22, 22, 22, 0.95);
    backdrop-filter: blur(10px);
    z-index: 99;
    padding: 1rem 0;
    border-bottom: none;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Righteous', cursive;
    color: #DAA520;
    font-size: 2rem;
    text-decoration: none;
}

.navbar .logo {
    text-decoration: none !important;
}

.navbar .logo:visited {
    text-decoration: none !important;
    color: inherit !important;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a:focus {
    color: #228B22;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(22, 22, 22, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .logo h1 {
        font-size: 1.5rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    height: 100vh;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    z-index: -1;
    background-attachment: fixed; /* Parallax effect */
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay h2 {
    font-family: 'Righteous', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #DAA520;
}

.hero-overlay p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dot.active {
    background: #fff;
}

@media (max-width: 768px) {
    .hero-overlay h2 {
        font-size: 2.5rem;
    }

    .hero-overlay p {
        font-size: 1.2rem;
    }

    .hero {
        height: 80vh;
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #1a1a1a;
}

.about h2 {
    text-align: center;
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    color: #DAA520;
    margin-bottom: 3rem;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #DAA520;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 2rem 0;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    background: #222;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: #228B22;
    border-radius: 50%;
    left: -10px;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: calc(100% + 10px);
}

.timeline-content h3 {
    color: #DAA520;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #e0e0e0;
    line-height: 1.6;
}

.timeline-content figure {
    margin: 1rem 0;
}

.timeline-content img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
    }

    .timeline-content::before {
        left: 10px;
    }

    .timeline-item:nth-child(even) .timeline-content::before {
        left: 10px;
    }
}

/* Map */
.map-container {
    max-width: 800px;
    margin: 2rem auto 3rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
}

/* Gallery */
.gallery {
    padding: 3rem 0;
    background: #1a1a1a;
}

.gallery h3 {
    text-align: center;
    font-family: 'Righteous', cursive;
    font-size: 2.5rem;
    color: #DAA520;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 1rem;
    text-align: center;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.5rem;
    }

    .gallery-item img {
        height: 150px;
    }
}

/* Festivals */
.festivals {
    padding: 5rem 0;
    background: #161616;
}

.festivals h2 {
    text-align: center;
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    color: #DAA520;
    margin-bottom: 1rem;
}

.festivals p {
    text-align: center;
    color: #ccc;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.festivals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.festival-card {
    background: #222;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.festival-card:hover {
    transform: translateY(-5px);
}

.festival-card h3 {
    color: #DAA520;
    margin-bottom: 1rem;
}

.festival-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .festivals {
        padding: 3rem 0;
    }

    .festivals h2 {
        font-size: 2.5rem;
    }

    .festivals-grid {
        grid-template-columns: 1fr;
    }
}

/* Visitor Guide */
.visitor {
    padding: 5rem 0;
    background: #1a1a1a;
}

.visitor h2 {
    text-align: center;
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    color: #DAA520;
    margin-bottom: 1rem;
}

.visitor p {
    text-align: center;
    color: #ccc;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.visitor-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: #222;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.info-card h3 {
    color: #DAA520;
    margin-bottom: 1rem;
}

.info-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* FAQ Accordion */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq h3 {
    text-align: center;
    color: #DAA520;
    margin-bottom: 2rem;
}

.accordion {
    border: 1px solid #444;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #444;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: #222;
    color: #fff;
    border: none;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #333;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background: #1a1a1a;
    transition: max-height 0.3s ease-out;
}

.accordion-content.active {
    max-height: 200px;
    padding: 1.5rem;
}

.accordion-content p {
    color: #e0e0e0;
    margin: 0;
}

@media (max-width: 768px) {
    .visitor {
        padding: 3rem 0;
    }

    .visitor h2 {
        font-size: 2.5rem;
    }

    .visitor-info {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #161616;
}

.contact h2 {
    text-align: center;
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    color: #DAA520;
    margin-bottom: 2rem;
}

.contact > p {
    text-align: center;
    color: #ccc;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 3rem;
    display: grid;
    gap: 1rem;
}

.contact-form label {
    font-weight: 600;
    color: #fff;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #444;
    border-radius: 5px;
    background: #222;
    color: #fff;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #228B22;
    border-color: #228B22;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    background: #228B22;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover,
.contact-form button:focus {
    background: #1e7a1e;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #222;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
}

.social-links a:hover,
.social-links a:focus {
    background: #228B22;
    transform: scale(1.1);
}

.social-links svg {
    width: 24px;
    height: 24px;
}

/* Newsletter */
.newsletter {
    background: #222;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
}

.newsletter h3 {
    color: #DAA520;
    margin-bottom: 1rem;
}

.newsletter p {
    color: #ccc;
    margin-bottom: 1rem;
}

.newsletter form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.newsletter input[type="email"] {
    padding: 0.75rem;
    border: 1px solid #444;
    border-radius: 5px;
    background: #1a1a1a;
    color: #fff;
    width: 250px;
}

.newsletter input[type="submit"] {
    background: #228B22;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter input[type="submit"]:hover {
    background: #1e7a1e;
}

.newsletter-note {
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .newsletter form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter input[type="email"] {
        width: 100%;
        max-width: 300px;
    }

    .about,
    .contact,
    .festivals,
    .visitor {
        padding: 3rem 0;
    }

    .about h2,
    .contact h2,
    .festivals h2,
    .visitor h2 {
        font-size: 2.5rem;
    }

    .hero {
        height: 80vh;
    }

    .visitor-info {
        grid-template-columns: 1fr;
    }

    .festivals-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: #111;
    color: #ccc;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #DAA520;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #228B22;
}

.footer-section p {
    line-height: 1.6;
}

.footer-section .social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.footer-section .social-links a {
    width: 40px;
    height: 40px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.footer-section .social-links a:hover {
    background: #228B22;
}

.footer-section svg {
    width: 20px;
    height: 20px;
}

.footer p {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin: 0;
}

/* Teaser Sections for Homepage */
.teaser-section {
    padding: 5rem 0;
    background: #1a1a1a;
    text-align: center;
}

.teaser-section h2 {
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    color: #DAA520;
    margin-bottom: 1rem;
}

.teaser-section p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background: #228B22;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn:hover {
    background: #1e7a1e;
}

/* Hero Overlay Link */
.hero-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-decoration: none;
    z-index: 2;
}

.hero-overlay-link:hover .hero-overlay {
    background: rgba(0, 0, 0, 0.6);
}

/* Animations */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .teaser-section {
        padding: 3rem 0;
    }

    .teaser-section h2 {
        font-size: 2.5rem;
    }
}

/* Social List for social.html */
.social-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid #444;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    background: #222;
}

.social-button:hover {
    background: #333;
    transform: translateY(-2px);
    border-color: #666;
}

.social-button svg {
    width: 48px;
    height: 48px;
}

.social-button span {
    font-weight: 600;
    font-size: 1.1rem;
}
