/* GLOBAL ---------------------------------------------- */
body {
    margin: 0;
    font-family: "Noto Serif Devanagari", serif;
    background: url("assets/mandala.png") repeat, #fff4e6;
    background-attachment: fixed;
    color: #4a2e1f;
}

/* FLOATING DIYA --------------------------------------- */
.floating-diya {
    position: fixed;
    width: 70px;
    animation: floatDiya 6s ease-in-out infinite;
    opacity: 0.8;
    z-index: 999;
}
#diya1 { bottom: 10%; left: 5%; }
#diya2 { bottom: 20%; right: 5%; animation-delay: 2s; }

@keyframes floatDiya {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* HEADER ---------------------------------------------- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(123, 31, 17, 0.95);
    color: white;
    padding: 12px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(6px);
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

nav a {
    margin-left: 20px;
    color: #ffd9a0;
    font-size: 17px;
    text-decoration: none;
}

nav a:hover {
    color: #fff;
}

/* MOBILE MENU ---------------------------------------- */
.menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
}
@media(max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        background: #7b1f11;
        position: absolute;
        right: 0;
        top: 65px;
        padding: 10px;
    }
    nav.active {
        display: flex;
    }
    .menu-btn { display: block; }
}

/* HERO SECTION --------------------------------------- */
.hero {
    height: 90vh;
    background: url("assets/hero.jpg") center/cover no-repeat;
    background-blend-mode: overlay;
    background-color: rgba(0,0,0,0.4);
    text-align: center;
    padding-top: 120px;
    color: white;
}

.hero h1 {
    font-size: 48px;
    text-shadow: 3px 3px 9px #000;
}

.hero p {
    font-size: 22px;
    margin-top: 10px;
}

/* IMAGE SLIDER --------------------------------------- */
.slider {
    width: 100%;
    max-width: 900px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.slides {
    display: flex;
    width: 300%;
    animation: slide 12s infinite;
}
.slides img {
    width: 100%;
}

@keyframes slide {
    0% { transform: translateX(0); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}

/* SECTIONS ------------------------------------------- */
section {
    padding: 70px 20px;
    max-width: 1100px;
    margin: auto;
}

.title {
    font-size: 34px;
    display: inline-block;
    margin-bottom: 20px;
    border-bottom: 4px solid #d4a056;
    color: #7b1f11;
}

/* GALLERY -------------------------------------------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}
.gallery img {
    width: 100%;
    border-radius: 8px;
    border: 2px solid #d4a056;
    transition: 0.4s;
}
.gallery img:hover {
    transform: scale(1.05);
}

/* FOOTER --------------------------------------------- */
footer {
    background: #7b1f11;
    color: #ffd9a0;
    text-align: center;
    padding: 25px;
    margin-top: 40px;
}
