/* =====================================================
   JAN DHAROHAR
   MAIN WEBSITE CSS
===================================================== */

:root {

    --green-dark: #123c2a;
    --green: #1f6b45;
    --green-light: #5d9f68;
    --green-soft: #edf5ef;

    --earth: #9a6b3f;
    --cream: #faf8f1;

    --dark: #17231d;
    --text: #536158;
    --white: #ffffff;

}


/* =====================================================
   GENERAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Noto Sans Devanagari", sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Noto Sans Devanagari", sans-serif;
    color: var(--dark);
    font-weight: 700;
}


a {
    text-decoration: none;
}


h1,
h2,
h3,
h4,
h5 {

    font-family: "Playfair Display", serif;

    color: var(--dark);

}


/* =====================================================
   NAVBAR
===================================================== */

.main-navbar {

    padding: 16px 0;

    background: rgba(10, 43, 29, 0.94);

    backdrop-filter: blur(12px);

}


.navbar-brand {

    display: flex;

    align-items: center;

    gap: 10px;

}


.brand-icon {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);

    color: #d7efbd;

    font-size: 20px;

}


.brand-text {

    display: flex;

    flex-direction: column;

}


.brand-text strong {

    color: white;

    font-family: "Playfair Display", serif;

    font-size: 21px;

    line-height: 1.1;

}


.brand-text small {

    color: #b9cdbf;

    font-size: 9px;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.navbar-nav .nav-link {

    color: #e2ebe5;

    font-size: 14px;

    margin-left: 14px;

    transition: 0.3s;

}


.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {

    color: #bce29b;

}


.nav-button {

    color: var(--green-dark) !important;

    border-radius: 30px;

    padding: 9px 18px;

    font-size: 13px;

}


/* =====================================================
   HERO
===================================================== */

/* =====================================================
   HERO SECTION
   Existing HTML को बदलने की जरूरत नहीं
===================================================== */

.hero-section {

    position: relative;

    min-height: 720px;

    height: 92vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    /* YOUR BANNER IMAGE */

    background-image: url("../images/hero-banner.jpg");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

}


/* =====================================================
   IMAGE OVERLAY
===================================================== */

.hero-overlay {

    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 1;

    background:
        linear-gradient(90deg,
            rgba(7, 35, 22, 0.92) 0%,
            rgba(10, 55, 34, 0.82) 35%,
            rgba(10, 55, 34, 0.55) 65%,
            rgba(7, 30, 20, 0.25) 100%);

}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {

    position: relative;

    z-index: 2;

    padding-top: 80px;

}


/* =====================================================
   SMALL LABEL
===================================================== */

.hero-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 8px 17px;

    margin-bottom: 25px;

    color: #ffffff;

    font-size: 14px;

    font-weight: 600;

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.10);

    backdrop-filter: blur(5px);

}


.hero-label i {

    color: #a9d98d;

    font-size: 16px;

}


/* =====================================================
   MAIN HEADING
===================================================== */

.hero-section h1 {

    margin: 0 0 25px 0;

    max-width: 850px;

    color: #ffffff;

    font-size: clamp(44px, 6vw, 78px);

    line-height: 1.25;

    font-weight: 700;

}


/* Highlighted heading */

.hero-section h1 span {

    display: block;

    color: #b9df9c;

}


/* =====================================================
   DESCRIPTION
===================================================== */

.hero-description {

    max-width: 700px;

    margin-bottom: 35px;

    color: rgba(255, 255, 255, 0.92);

    font-size: 18px;

    line-height: 1.9;

}


/* =====================================================
   BUTTON AREA
===================================================== */

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 15px;

}


/* =====================================================
   PRIMARY BUTTON
===================================================== */

.btn-primary-custom {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 13px 25px;

    color: #ffffff;

    background: #b8793d;

    border: 2px solid #b8793d;

    border-radius: 8px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;

}


.btn-primary-custom:hover {

    color: #ffffff;

    background: #99612e;

    border-color: #99612e;

    transform: translateY(-2px);

}


/* =====================================================
   OUTLINE BUTTON
===================================================== */

.btn-outline-light-custom {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 13px 25px;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.06);

    border: 2px solid rgba(255, 255, 255, 0.75);

    border-radius: 8px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;

}


.btn-outline-light-custom:hover {

    color: #17472f;

    background: #ffffff;

    border-color: #ffffff;

    transform: translateY(-2px);

}


/* =====================================================
   BOTTOM SCROLL INDICATOR
===================================================== */

.hero-bottom {

    position: absolute;

    left: 0;
    bottom: 25px;

    width: 100%;

    z-index: 2;

}


.scroll-indicator {

    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 13px;

}


.scroll-indicator span {

    width: 32px;

    height: 1px;

    display: block;

    background: rgba(255, 255, 255, 0.65);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .hero-section {

        min-height: 680px;

        height: auto;

        padding: 130px 0 100px;

        background-position: center center;

    }


    .hero-overlay {

        background:
            linear-gradient(90deg,
                rgba(7, 35, 22, 0.93),
                rgba(7, 35, 22, 0.70));

    }


    .hero-content {

        padding-top: 0;

    }


    .hero-section h1 {

        font-size: 50px;

    }


    .hero-description {

        font-size: 17px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575px) {

    .hero-section {

        min-height: 650px;

        padding: 120px 0 100px;

        background-position: 60% center;

    }


    .hero-section h1 {

        font-size: 40px;

        line-height: 1.3;

    }


    .hero-label {

        font-size: 12px;

        padding: 7px 12px;

    }


    .hero-description {

        font-size: 16px;

        line-height: 1.8;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .btn-primary-custom,
    .btn-outline-light-custom {

        width: 100%;

    }


    .hero-bottom {

        bottom: 18px;

    }

}

/* =====================================================
   COMMON SECTIONS
===================================================== */

.intro-section,
.tribes-section,
.culture-section,
.community-section {

    padding: 100px 0;

}


.section-label {

    display: inline-block;

    color: var(--green);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 12px;

}


.section-heading h2,
.intro-section h2 {

    font-size: 44px;

    line-height: 1.2;

}


.section-heading p {

    max-width: 620px;

    margin: 15px auto 0;

}


.text-link {

    color: var(--green);

    font-weight: 600;

}


.text-link i {

    margin-left: 7px;

}


/* =====================================================
   PURPOSE CARD
===================================================== */

.purpose-card {

    background: white;

    padding: 45px;

    border-radius: 18px;

    box-shadow: 0 20px 50px rgba(27, 63, 43, 0.08);

    border: 1px solid #e8eee9;

}


.purpose-icon {

    width: 65px;

    height: 65px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--green-soft);

    color: var(--green);

    font-size: 25px;

    margin-bottom: 25px;

}


.purpose-card h4 {

    font-size: 25px;

}


/* =====================================================
   STATISTICS
===================================================== */

.stats-section {

    background: var(--green-dark);

}


.stat-box {

    padding: 38px 20px;

    text-align: center;

    border-right: 1px solid rgba(255, 255, 255, 0.1);

}


.stat-box i {

    color: #b8d897;

    font-size: 22px;

    display: block;

    margin-bottom: 10px;

}


.stat-box strong {

    display: block;

    color: white;

    font-family: "Playfair Display", serif;

    font-size: 38px;

}


.stat-box span {

    color: #b9cbbf;

    font-size: 13px;

}


/* =====================================================
   TRIBES
===================================================== */

.tribes-section {

    background: #f4f6ef;

}


.tribe-card {

    position: relative;

    display: block;

    min-height: 280px;

    padding: 30px;

    background: white;

    border-radius: 15px;

    border: 1px solid #e5ebe4;

    transition: 0.35s;

}


.tribe-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(20, 64, 42, 0.1);

}


.tribe-card>i {

    font-size: 30px;

    color: var(--green);

    margin: 35px 0 15px;

}


.tribe-card h4 {

    font-size: 25px;

}


.tribe-card p {

    color: #6a756e;

    font-size: 13px;

}


.tribe-card span {

    color: var(--green);

    font-size: 13px;

    font-weight: 600;

}


.tribe-card span i {

    margin-left: 5px;

}


.tribe-number {

    position: absolute;

    top: 22px;

    right: 25px;

    color: #d6ded6;

    font-family: "Playfair Display", serif;

    font-size: 25px;

}


/* =====================================================
   ARCHIVE
===================================================== */

.archive-section {

    padding: 110px 0;

    background:

        linear-gradient(120deg,
            #123c2a,
            #245c3d);

}


.archive-section h2 {

    color: white;

    font-size: 46px;

}


.archive-section p {

    color: #cbdad0;

    max-width: 580px;

    margin: 20px 0 30px;

}


.section-label.light {

    color: #bddd9f;

}


.archive-button {

    color: var(--green-dark);

    border-radius: 30px;

    padding: 12px 22px;

}


.song-player-card {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 22px;

    background: rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 15px;

    color: white;

}


.song-icon {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #d6e8b7;

    color: var(--green-dark);

    border-radius: 12px;

    font-size: 22px;

}


.song-player-card small {

    color: #bddd9f;

    font-size: 9px;

    letter-spacing: 1px;

}


.song-player-card h5 {

    color: white;

    margin: 4px 0;

    font-family: "DM Sans", sans-serif;

}


.song-player-card p {

    margin: 0;

    color: #b7c9bd;

    font-size: 12px;

}


.play-button {

    margin-left: auto;

    width: 45px;

    height: 45px;

    border-radius: 50%;

    border: none;

    background: white;

    color: var(--green-dark);

}


/* =====================================================
   CULTURE CARDS
===================================================== */

.culture-card {

    padding: 35px;

    background: white;

    border-radius: 15px;

    border: 1px solid #e6ebe5;

    height: 100%;

}


.culture-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--green-soft);

    color: var(--green);

    border-radius: 12px;

    font-size: 20px;

    margin-bottom: 20px;

}


.culture-card h4 {

    font-size: 23px;

}


.culture-card p {

    font-size: 14px;

}


.culture-card a {

    color: var(--green);

    font-size: 13px;

    font-weight: 600;

}


/* =====================================================
   COMMUNITY
===================================================== */

.community-box {

    padding: 60px;

    background: #e8f0df;

    border-radius: 20px;

}


.community-box h2 {

    font-size: 40px;

}


.community-box p {

    max-width: 650px;

}


/* =====================================================
   FOOTER
===================================================== */

.main-footer {

    padding: 70px 0 25px;

    background: #0d291d;

    color: #aebfb3;

}


.footer-brand {

    color: white;

    font-family: "Playfair Display", serif;

    font-size: 25px;

    margin-bottom: 15px;

}


.footer-brand i {

    color: #bddd9f;

}


.main-footer p {

    max-width: 430px;

    font-size: 13px;

}


.main-footer h5 {

    color: white;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;

    margin-bottom: 20px;

}


.main-footer a {

    display: block;

    color: #aebfb3;

    font-size: 13px;

    margin-bottom: 9px;

}


.main-footer a:hover {

    color: #d2e8b9;

}


.footer-social {

    display: flex;

    gap: 10px;

    margin-top: 20px;

}


.footer-social a {

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255, 255, 255, 0.08);

    border-radius: 50%;

}


.main-footer hr {

    border-color: rgba(255, 255, 255, 0.1);

    margin: 45px 0 20px;

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    font-size: 11px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .navbar-nav {

        padding: 20px 0;

    }


    .navbar-nav .nav-link {

        margin-left: 0;

        padding: 9px 0;

    }


    .nav-button {

        display: inline-block;

        margin-top: 10px;

    }


    .hero-section {

        min-height: 650px;

    }


    .intro-section h2,
    .section-heading h2 {

        font-size: 36px;

    }

}


@media (max-width: 576px) {

    .hero-section {

        min-height: 650px;

    }


    .hero-section h1 {

        font-size: 45px;

    }


    .hero-description {

        font-size: 15px;

    }


    .intro-section,
    .tribes-section,
    .culture-section,
    .community-section {

        padding: 70px 0;

    }


    .community-box {

        padding: 35px 25px;

    }


    .community-box h2 {

        font-size: 32px;

    }


    .footer-bottom {

        flex-direction: column;

    }

}