/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #800020;
    color: #F5D77A;
    line-height: 1.6;
}

/* ================= HERO ================= */
.hero-carousel {
    min-height: 100vh;
    position: relative;
}

.slide {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(128, 0, 32, 0.85);
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
}

.hero-content h2 {
    color: #fff;
    font-size: clamp(1rem, 3vw, 1.3rem);
}

.hero-content p {
    max-width: 650px;
    color: #f3e6c2;
}

/* ================= BUTTONS ================= */
.btn {
    background: #F5D77A;
    color: #800020;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* ================= COUNTDOWN ================= */
.countdown-section {
    background: #660018;
    padding: 36px 16px;
}

.countdown {
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.countdown div {
    background: #fff;
    color: #800020;
    padding: 16px;
    border-radius: 16px;
    text-align: center;
}

.countdown span {
    font-size: 1.8rem;
    font-weight: 600;
}

/* ================= SECTIONS ================= */
.section {
    padding: 70px 20px;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 30px;
}

.section p {
    max-width: 900px;
    margin: auto;
    text-align: center;
    color: #f3e6c2;
}

/* ================= ABOUT ================= */
.about {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about img {
    width: 100%;
    border-radius: 18px;
}

/* ================= CARDS ================= */
.cards {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: #fff;
    color: #800020;
    padding: 24px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ================= WHY ================= */
.why {
    position: relative;
    background: url('assets/shiva.jpg') center/cover no-repeat;
}

.why .overlay {
    position: absolute;
    inset: 0;
    background: rgba(128, 0, 32, 0.9);
}

.why-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

/* ================= VISIT ================= */
/* ================= VISIT ================= */
.visit {
    text-align: center;
    padding: 80px 20px;
}

.visit h2 {
    margin-bottom: 20px;
}

.visit p {
    max-width: 800px;
    margin: 0 auto 28px auto; /* 👈 THIS fixes overlap */
    line-height: 1.7;
}

.directions-btn {
    display: inline-block;
    margin-top: 10px;
}


/* ================= FOOTER ================= */
footer {
    background: #660018;
    padding: 28px 20px;
    text-align: center;
    color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .about {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .countdown {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards {
        grid-template-columns: 1fr;
    }
}


/* ================= SPECIAL ATTRACTION ================= */
/* ================= SPECIAL ATTRACTION ================= */
.special-attraction {
    background: #800020;
    padding: 90px 20px;
    text-align: center;
}

.special-attraction h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: #F5D77A;
    margin-bottom: 40px;
}

.special-attraction img {
    width: 100%;
    max-width: 1100px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 600px) {
    .special-attraction {
        padding: 60px 16px;
    }

    .special-attraction h2 {
        margin-bottom: 24px;
    }

    .special-attraction img {
        border-radius: 16px;
    }
}

/* Caption under special attraction image */
.attraction-caption {
    margin-top: 24px;
    font-size: 1.05rem;              /* medium font */
    font-weight: 400;
    color: #f3e6c2;
    letter-spacing: 0.6px;
    text-align: center;
}

/* Mobile fine-tuning */
@media (max-width: 600px) {
    .attraction-caption {
        font-size: 0.95rem;
        margin-top: 18px;
    }
}

