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

/* BODY */
body {
    font-family: 'Segoe UI', sans-serif;
}

/* HEADER */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: linear-gradient(90deg, #ffcc00, #ff9900);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* LOGO */
.logo {
    font-size: 22px;
    font-weight: bold;
    color: #5a2d0c;
}

/* NAVIGATION */
.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #5a2d0c;
    font-weight: 600;
    position: relative;
    transition: 0.3s ease;
}

/* Underline hover effect */
.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background-color: #5a2d0c;
    transition: 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* BOOK BUTTON */
.book-btn {
    background: #25D366;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* MENU TOGGLE (Mobile Icon) */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* SHRINK EFFECT */
.shrink {
    padding: 8px 50px;
    background: #ff9900;
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px) {

    .nav-links {
        position: absolute;
        top: 70px;
        right: 20px;
        flex-direction: column;
        background: white;
        padding: 20px;
        border-radius: 10px;
        display: none;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    .menu-toggle {
        display: block;
    }

    .book-btn {
        display: none;
    }
}

/* SLIDE ANIMATION */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-container {
    max-width: 900px;
    margin: auto;
    padding: 50px 20px;
    line-height: 1.8;
}

.blog-container h1 {
    text-align: center;
    margin-bottom: 30px;
}

.blog-container h2 {
    margin-top: 30px;
    color: #caa520;
}

.cta-buttons {
    text-align: center;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 10px;
    background: #caa520;
    color: black;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

.btn.secondary {
    background: #222;
    color: white;
}
.mandir-video-section {
    text-align: center;
    padding: 70px 20px;
    background: #f9f9f9;
}

.mandir-video-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #b8860b;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

video {
    width: 100%;
    display: block;
}

/* Custom Play Button */
.custom-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 40px;
    padding: 20px 28px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
}

.custom-play-btn:hover {
    background: rgba(0,0,0,0.8);
    transform: translate(-50%, -50%) scale(1.1);
}