﻿/* =========================
   HERO SECTION
========================= */

.hero-section {
    height: 95vh;
    background: url('/images/temple-bg.jpg') center center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

    /* Golden Dark Overlay */
    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(120, 0, 0, 0.85), rgba(0, 0, 0, 0.4) );
    }

/* Content Above Overlay */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Headings */
.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    text-shadow: 4px 4px 10px black;
}

.welcome-text {
    color: gold;
    font-weight: bold;
    font-size: 20px;
}

.jai-text {
    color: #ffd700;
    font-size: 32px;
    margin-top: 10px;
}

/* Hanuman Image */
.hero-img {
    width: 90%;
    max-height: 600px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 0 40px gold;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

    .hero-section {
        height: auto;
        padding: 60px 20px;
        text-align: center;
    }

        .hero-section h1 {
            font-size: 2rem;
        }

        .hero-section h4 {
            font-size: 1rem;
        }

    .jai-text {
        font-size: 22px;
    }

    .hero-img {
        width: 80%;
        max-height: 350px;
        margin-top: 30px;
    }

    .nav-link {
        margin-left: 0;
        margin-top: 10px;
    }
}
