﻿body {
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

.hero-section {
    background: #fffaf3;
    min-height: calc(100vh - 76px); /* Navbar height */
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
    color: #4e342e;
}

.subtitle {
    color: #ff9800;
    font-size: 24px;
    font-weight: 600;
}

.hero-text {
    font-size: 20px;
    color: #666;
    line-height: 1.8;
    margin-top: 20px;
}

.temple-img {
    width: 100%;
    max-width: 430px; /* Smaller image */
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
    transition: .4s;
}

    .temple-img:hover {
        transform: scale(1.03);
    }

.btn-warning,
.btn-outline-warning {
    border-radius: 30px;
    padding: 12px 30px;
    margin-top: 10px;
}

@media (max-width:991px) {

    .hero-section {
        min-height: auto;
        padding: 60px 20px;
        text-align: center;
    }

    .hero-title {
        font-size: 42px;
    }

    .temple-img {
        max-width: 320px;
        margin-top: 40px;
    }
}
.image-box {
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    display: inline-block;
}
.hero-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

    .hero-icons img {
        width: 75px;
        height: 75px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #ffc107;
        box-shadow: 0 5px 15px rgba(0,0,0,.2);
        transition: .3s;
    }

        .hero-icons img:hover {
            transform: translateY(-5px) scale(1.08);
        }
.management-section {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.management-card {
    text-align: center;
    width: 120px;
}

    .management-card img {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #ffc107;
        box-shadow: 0 5px 15px rgba(0,0,0,.2);
        transition: .3s;
    }

        .management-card img:hover {
            transform: scale(1.08);
        }

    .management-card h6 {
        margin-top: 10px;
        margin-bottom: 2px;
        font-weight: 600;
        color: #5d4037;
    }

    .management-card p {
        margin: 0;
        font-size: 13px;
        color: #777;
    }

@media(max-width:768px) {

    .management-section {
        justify-content: center;
    }
}
.temple-title {
    display: flex;
    align-items: center;
}

.temple-logo {
    width: 75px;
    height: 75px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
    border: 3px solid #ffc107;
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
    color: #4e342e;
}
footer {
    background: #212529;
}

    footer hr {
        opacity: 0.2;
        width: 250px;
        margin: 15px auto;
    }

    footer small {
        font-size: 14px;
    }

    footer .text-warning {
        color: #ffc107 !important;
    }