@import url('https://fonts.cdnfonts.com/css/season');


:root {
    --accent-color-5: #331e23;
    --font-family-3: "Seasons", serif;
    --font-family-2: "Roboto", sans-serif;

}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-family-3);
}

a,
p ,span{
    font-family: var(--font-family-2);
}
label, option,button {
    font-family: var(--font-family-2);

}

body {
    font-family: 'Seasons', serif !important;
}

.navbar-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    z-index: 10;
    background-color: var(--accent-color-5);
}

.navbar {
    border-radius: 20px 20px 20px 20px;
    position: relative;
    padding: 0px;
    z-index: 1;
}

.navbar-nav-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-nav {
    flex-wrap: wrap;
    justify-content: center;
}

.navbar .logo-container {
    width: 14%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.navbar .logo-container img {
    max-width: 90%;
}

.navbar .nav-link-container {
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav-link {
    font-family: var(--font-family-3);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4em;
    text-transform: capitalize;
    color: var(--primary);
    padding: 15px 15px 15px 15px;
}

.nav-link:hover {
    color: #fdf9c9 !important;
}

.nav-link:focus,
.nav-link.active,
.navbar-nav .nav-link.show {
    color: black !important;
}

.nav-btn {
    /* display: none; */
    padding: 16px 16px;
    background-color: transparent;
    color: var(--primary);
    box-shadow: none;
    transition: all 300ms ease;
    border: none;
    border-radius: 0px 0px 0px 0px;
    box-shadow: none;
    font-size: 18px;
}

.nav-btn:hover {
    background-color: var(--primary);
    color: #331e23;
}
.btn-outline-primary {
    border: solid 1px var(--primary);
    color: var(--primary);
    background-color: var(--accent-color-transparent);
    font-family: var(--font-family-3);
}
.leaf-breadcrumb {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px 20px;
}

.leaf-breadcrumb .breadcrumb-item {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4em;
    letter-spacing: normal;
    color: var(--primary);
    transition: all 0.3s ease;
}

.leaf-breadcrumb .breadcrumb-item:hover {
    color: var(--accent-color5);
}

.leaf-breadcrumb .breadcrumb-separator {
    color: var(--primary);
}

/* sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: var(--accent-color-5);
    color: var(--secondary);
    transition: transform 0.4s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
    max-height: 100vh;
    padding: 0px 16px 0px 5px;
}

.sidebar.active {
    transform: translateX(300px);
}

.sidebar-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 5px 5px 5px 5px;
}

.sidebar-logo {
    height: 150px;
}

.close-btn {
    display: inline-block;
    justify-content: center;
    background-color: #fdf9c9;
    border-radius: 8px 8px 8px 8px;
    color: var(--primary);
    font-weight: 600;
    position: relative;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4em;
    cursor: pointer;
    padding: 8px 18px;
    transition: all 300ms;
    border: none;
    outline: none;
}

.fa-xmark {
    color: #331e23;
}


.sidebar-menu {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.sidebar-menu li {
    padding: 10px 15px 10px 15px;
}

.sidebar-menu a {
    color: #fdf9c9;
    text-decoration: none;
    display: block;
    border-radius: 5px;
    transition: 0.3s;
    text-transform: capitalize;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4em;
    letter-spacing: normal;
    letter-spacing: 0px;
}

.sidebar-menu a:hover,
.sidebar-menu a.active,
.sidebar-menu a:focus {
    color: var(--accent-color);
}

.heading-content-container h4 {
    color: #331e23;
}

.about-philosophy-quote {
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    padding: 0em 0em 0em 1em;
    border-left: 1px solid #331e23;
}

.lawn-value-icon {
    font-size: 2rem;
    color: #331e23;
}

.banner-mandap {
    padding: 20em 1em 6em 1em;
    background-image: url('../assets/Image/mandap-images/jalsa-frontview.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.banner-mandap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
    opacity: 0.5;
    z-index: 1;
}

.banner-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
    opacity: 0.5;
    z-index: 1;
}

/* CARD */
.event-box {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.event-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.4s;
}

/* TITLE */
.event-box h5 {
    padding: 15px 10px;
    font-weight: 600;
    margin: 0;
}

/* HOVER EFFECT */
.event-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.event-box:hover img {
    transform: scale(1.05);
}

.step-box {
    background: #fdf9c9;
    border-radius: 16px;
    padding: 25px 15px;
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* HOVER EFFECT */
.step-box:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ICON IMAGE */
.step-img {
    height: 60px;
    margin-bottom: 15px;
    transition: 0.4s;
}

/* ICON ANIMATION */
.step-box:hover .step-img {
    transform: scale(1.2) rotate(5deg);
}

/* TITLE */
.step-box h5 {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    min-height: 45px;
}

/* NUMBER BADGE */
.step-box::before {
    content: attr(data-step);
    position: absolute;
    top: 10px;
    left: 10px;
    background: #331e23;
    color: #fdf9c9;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
}

@media screen and (max-width: 767.98px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h6 {
        font-size: 0.938rem;
    }

    .navbar .logo-container {
        width: 45%;
    }

    .banner-home-title {
        font-size: 41px;
    }

    .banner-home-subtitle {
        font-size: 22px;
    }
}

.mandap-facilities-container {
    padding: 20px;
}

.facility-card {
    background: #fdf9c9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.facility-img {
    flex: 1;
}

.facility-img img {
    width: 100%;
    height: 338px;
    object-fit: cover;
}

.facility-img :hover {
    transition: all 0.3s ease;
    transform: translateY(-5px);
}

.facility-content {
    flex: 1;
    padding: 20px;
}

.facility-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.facility-content p {
    font-size: 14px;
    color: #666;
}

.icon-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.icon-img :hover {
    transition: all 0.3s ease;
    transform: scale(1.2);
}

.icon-img img {
    width: 50px;
    padding: 6px;
}

/* gallery -section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

/* Gallery item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    display: block;
}

/* Images */
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* Hover zoom */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Dark overlay */
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: 0.3s;
}

/* Icon */
.gallery-item::before {
    content: "";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #fff;
    font-size: 18px;
    z-index: 2;
    transition: 0.3s;
}

/* Hover effects */
.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover::before {
    transform: translate(-50%, -50%) scale(1);
}


.footer-container {
    background-color: #331e23;
	 padding: 3em 1em 3em 1em;
}
.footer-content-grid {
    display: grid;
    grid-template-columns: 0.4fr 0.3fr 0.3fr;
    gap: 20px;
    padding: 0em 0em 4em 0em;
}
.footer-title-container {
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    padding: 0em 2em 0em 0em;
}
.footer-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-list li {
    margin-bottom: 10px;
}.footer-quick-links-container {
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    padding: 0em 2em 0em 2em;
}

.footer-quick-links {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4em;
    letter-spacing: normal;
    color: var(--primary);
    transition: all 0.3s ease;
}
.footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    font-size: 16px;
    line-height: 1;
    background-color: #fdf9c9;
    color: #331e23;
    transition: all 0.3s ease;
}

.info-text {
    text-transform: none;
	color:white;
}

.info-text:hover{
	color: #fdf9c9 !important;
}
.footer-info,
text:hover {
    color: #fdf9c9 !important;

}

.location-security-section {
    /* padding: 80px 0; */
    background: #f9f7f3;
}

/* Heading */
.section-header h2 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Card */
.feature-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px);
}

/* Image */
.feature-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* Content */
.feature-content {
    text-align: center;
    padding: 30px;
    position: relative;
}

/* Icon circle */
.icon-circle {
    width: 60px;
    height: 60px;
    background: #331e23;
    color: #fdf9c9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -231px auto 15px;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Title */
.feature-content h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Text */
.feature-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.footer-quick-links:hover {
    color: #fdf9c9;
}

/* BUTTON */
.mandap-img {
    height: 414px;
    object-fit: cover;
    background-size: cover;
    background-repeat: no-repeat;

}

.modern-btn {
    background: #331e23;
    border: none;
    padding: 12px;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
}

.modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 991.98px) {
    .navbar .logo-container img {
        width: 82%;
    }
}
@media screen and (max-width: 767.98px) {
    .footer-content-grid {
        grid-template-columns: 1fr;
    }
}
