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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #171717;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}


/* NAVIGATION */

.navbar {
    height: 76px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eeeeee;
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    font-weight: 400;
}

.navbar nav {
    display: flex;
    gap: 30px;
}

.navbar nav a {
    font-size: 14px;
    font-weight: 600;
}

.navbar nav a:hover {
    opacity: 0.6;
}


/* HERO */

.hero {
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: 80px 7%;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.75),
            rgba(0,0,0,0.20)
        ),
        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2000&q=85")
        center/cover;
    color: white;
}

.hero-content {
    max-width: 700px;
}

.eyebrow,
.section-label {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.98;
    letter-spacing: -3px;
    margin-bottom: 28px;
}

.hero-text {
    max-width: 560px;
    font-size: 18px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


/* BUTTONS */

.button {
    display: inline-block;
    padding: 13px 23px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.primary {
    background: white;
    color: #111;
}

.secondary {
    border: 1px solid white;
    color: white;
}


/* INTRO */

.intro {
    max-width: 850px;
    padding: 120px 7%;
}

.intro h2 {
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.05;
    margin-bottom: 25px;
}

.intro > p:last-child {
    max-width: 650px;
    font-size: 19px;
    color: #666;
}


/* GENERAL SECTIONS */

.section {
    padding: 100px 7%;
}

.section h2 {
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.05;
    margin-bottom: 18px;
}

.section-description {
    max-width: 600px;
    color: #666;
    margin-bottom: 50px;
}


/* CARDS */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    overflow: hidden;
    background: white;
}

.card-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.vietnam {
    background: #f3ead7;
}

.india {
    background: #eee3d6;
}

.world {
    background: #e2e8ed;
}

.card-content {
    padding: 25px;
}

.country {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #777;
}

.card h3 {
    font-size: 26px;
    margin: 5px 0 10px;
}

.card-content p {
    color: #666;
    margin-bottom: 20px;
}

.card-link {
    font-weight: 700;
    font-size: 14px;
}


/* FESTIVALS */

.dark-section {
    background: #111;
    color: white;
}

.dark-section .section-description {
    color: #aaa;
}

.festival-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.festival-card {
    padding: 35px;
    border: 1px solid #333;
    border-radius: 18px;
}

.festival-card span {
    font-size: 45px;
}

.festival-card h3 {
    margin-top: 20px;
    font-size: 23px;
}

.festival-card p {
    color: #999;
}


/* VIDEOS */

.video-placeholder {
    min-height: 400px;
    border-radius: 20px;
    background: #f3f3f3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.play-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #111;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.video-placeholder h3 {
    font-size: 28px;
}

.video-placeholder p {
    color: #777;
    margin-bottom: 20px;
}


/* ABOUT */

.about-section {
    padding: 120px 7%;
    background: #e9e4da;
}

.about-content {
    max-width: 750px;
}

.about-content h2 {
    font-size: clamp(40px, 6vw, 70px);
    line-height: 1;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}


/* SOCIAL */

.social-section {
    padding: 100px 7%;
    text-align: center;
}

.social-section h2 {
    font-size: clamp(38px, 5vw, 60px);
    margin-bottom: 35px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    border: 1px solid #ddd;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
}


/* FOOTER */

footer {
    padding: 50px 7%;
    background: #111;
    color: white;
}

footer p {
    color: #999;
    margin-top: 8px;
}

.copyright {
    font-size: 12px;
    margin-top: 30px;
}


/* MOBILE */

@media (max-width: 800px) {

    .navbar {
        padding: 0 5%;
    }

    .navbar nav {
        display: none;
    }

    .hero {
        min-height: 600px;
        padding: 70px 5%;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .section,
    .intro,
    .about-section,
    .social-section {
        padding: 75px 5%;
    }

    .cards,
    .festival-grid {
        grid-template-columns: 1fr;
    }

}


/* ============================================= */
/* FESTIVAL / DESTINATION PAGE STYLES (ADDED) */
/* ============================================= */

/* BREADCRUMB */
.breadcrumb {
    padding: 18px 7%;
    font-size: 13px;
    color: #888;
    border-bottom: 1px solid #eee;
}

.breadcrumb a {
    color: #888;
    font-weight: 600;
}

.breadcrumb a:hover {
    color: #111;
}

.breadcrumb span {
    color: #111;
    font-weight: 700;
}

/* PAGE HERO (for destination/festival pages) */
.page-hero {
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 80px 7%;
    color: white;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.75), rgba(0,0,0,0.25)),
        center/cover;
}

.hornbill-hero {
    background:
        linear-gradient(90deg, rgba(0,0,0,0.75), rgba(0,0,0,0.25)),
        url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=2000&q=85")
        center/cover;
}

.page-hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.page-hero-content {
    max-width: 700px;
}

/* FESTIVAL INFO STRIP */
.festival-info-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 30px 7%;
    background: #f7f5f0;
    border-bottom: 1px solid #eee;
}

.info-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 10px 20px;
}

.info-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #999;
    margin-bottom: 6px;
}

.info-value {
    font-size: 18px;
    font-weight: 700;
}

/* THREE-COLUMN CARD GRID */
.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.info-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.dark-section .info-card {
    background: #1a1a1a;
    border-color: #333;
    padding: 25px;
}

.dark-section .info-card p {
    color: #ccc;
}

/* COMING SOON CARDS */
.coming-soon-card {
    padding: 25px;
    position: relative;
}

.coming-soon-card.dark {
    background: #1a1a1a;
    border-color: #333;
}

.coming-soon-card.dark p {
    color: #aaa;
}

.coming-badge {
    display: inline-block;
    background: #111;
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.coming-soon-card.dark .coming-badge {
    background: white;
    color: #111;
}

/* BUDGET BOX */
.budget-box-section {
    padding: 80px 7%;
    display: flex;
    justify-content: center;
}

.budget-box {
    max-width: 700px;
    background: #e9e4da;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.budget-box p:last-child {
    font-size: 17px;
    color: #444;
    margin-top: 15px;
}

/* RESPONSIVE for new sections */
@media (max-width: 800px) {
    .three-col {
        grid-template-columns: 1fr;
    }

    .festival-info-strip {
        flex-direction: column;
        gap: 15px;
    }

    .budget-box {
        padding: 30px;
    }
}
/* ============================================= */
/* COLOR THEME UPDATE — BLACK & GREEN (ADDED) */
/* ============================================= */

/* Buttons */
.primary {
    background: #4caf6d;
    color: #0b0f0d;
}

.secondary {
    border: 1px solid #4caf6d;
    color: #f2f2f0;
}

.secondary:hover {
    background: #4caf6d;
    color: #0b0f0d;
}

/* Links / accents */
.card-link {
    color: #2f5233;
}

.logo span {
    color: #4caf6d;
    font-weight: 700;
}

/* About section — swap beige for deep charcoal-green */
.about-section {
    background: #0f1512;
    color: #f2f2f0;
}

.about-content p {
    color: #cfd6d0;
}

/* Budget box (festival pages) — dark green instead of beige */
.budget-box {
    background: #0f1512;
    color: #f2f2f0;
}

.budget-box p:last-child {
    color: #cfd6d0;
}

/* Coming soon badges — green instead of black */
.coming-badge {
    background: #2f5233;
    color: #f2f2f0;
}

.coming-soon-card.dark .coming-badge {
    background: #4caf6d;
    color: #0b0f0d;
}

/* Social links — green hover instead of black */
.social-links a {
    border: 1px solid #2f5233;
}

.social-links a:hover {
    background: #2f5233;
    color: #f2f2f0;
}

/* Festival cards on dark sections — subtle green border */
.festival-card {
    border: 1px solid #2f5233;
}

/* Info strip on festival pages — subtle green accent on values */
.info-value {
    color: #1f3d2b;
}
/* DESTINATION SELECTOR */
.destination-selector {
    margin-bottom: 50px;
}

.selector-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.selector-dropdown {
    padding: 14px 18px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-size: 14px;
    font-weight: 600;
    background: white;
    min-width: 200px;
}

.selector-dropdown:disabled {
    background: #f5f5f5;
    color: #999;
}

#exploreBtn:disabled {
    background: #ddd;
    color: #999;
    cursor: not-allowed;
}

@media (max-width: 800px) {
    .selector-row {
        flex-direction: column;
        align-items: stretch;
    }
    .selector-dropdown {
        min-width: unset;
    }
}
