/* =========================
   GLOBAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #17120d;
    color: #ead9b5;
    font-family: "Libre Baskerville", serif;
}

/* =========================
   NAVIGATION
========================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    min-height: 78px;
    padding: 15px 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(8, 10, 8, 0.96);

    border-bottom: 1px solid #51452d;

    backdrop-filter: blur(12px);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: "Cinzel", serif;
    font-size: 12px;
    letter-spacing: 4px;
    color: #b99658;
}

.project-name {
    font-family: "Cinzel", serif;
    font-size: 16px;
    letter-spacing: 2px;
    color: #e0cf9d;
}

.navbar nav {
    display: flex;
    gap: 28px;
}

.navbar nav a {
    font-family: "Cinzel", serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #a89c83;

    transition: 0.3s ease;
}

.navbar nav a:hover {
    color: #d6b56d;
}

/* =========================
   HERO
========================= */

.hero {
    min-height: 720px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            rgba(18, 13, 8, 0.55),
            rgba(18, 13, 8, 0.88)
        ),
        url("https://images.unsplash.com/photo-1539650116574-75c0c6d73f6e?auto=format&fit=crop&w=2000&q=85");

    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at center,
            transparent 20%,
            rgba(0, 0, 0, 0.65) 100%
        );
}

.hero-content {
    position: relative;
    max-width: 900px;
    padding: 40px;
}

.hero-subtitle {
    font-family: "Cinzel", serif;
    color: #c7a45d;
    letter-spacing: 5px;
    font-size: 14px;
    margin-bottom: 25px;
}

.hero h1 {
    font-family: "Cinzel", serif;
    font-size: clamp(55px, 9vw, 110px);
    line-height: 0.95;
    letter-spacing: 8px;
    color: #f0dfb8;

    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.8);
}

.hero h1 span {
    display: block;
    color: #c39a52;
}

.ornament {
    margin: 30px 0;
    color: #b08a4d;
    font-size: 18px;
}

.hero-description {
    max-width: 650px;
    margin: auto;

    color: #d8c9a8;
    font-size: 17px;
    line-height: 1.9;
}

.hero-button {
    display: inline-block;

    margin-top: 35px;
    padding: 15px 30px;

    border: 1px solid #b08a4d;

    color: #e4c985;
    text-decoration: none;

    font-family: "Cinzel", serif;
    font-size: 13px;
    letter-spacing: 2px;

    transition: 0.3s;
}

.hero-button:hover {
    background: #b08a4d;
    color: #17120d;
}

/* =========================
   INTRODUCTION
========================= */

.introduction {
    max-width: 900px;
    margin: auto;
    padding: 110px 30px 70px;

    text-align: center;
}

.section-label {
    font-family: "Cinzel", serif;
    font-size: 12px;
    letter-spacing: 4px;
    color: #b08a4d;
}

.introduction h2 {
    margin-top: 18px;

    font-family: "Cinzel", serif;
    font-size: 42px;
    color: #e8d5ac;
}

.section-line {
    margin: 25px;
    color: #b08a4d;
}

.intro-text {
    max-width: 650px;
    margin: auto;

    line-height: 1.9;
    color: #bfb08f;
}

/* =========================
   FEATURE CARDS
========================= */

.features {
    width: 88%;
    max-width: 1200px;
    margin: 20px auto 110px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    padding: 40px 30px;

    text-align: center;

    background: #211910;

    border: 1px solid #5f4b2e;

    transition: 0.35s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #b08a4d;
}

.feature-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: "Cinzel", serif;
    font-size: 22px;
    color: #d7b56d;
    margin-bottom: 15px;
}

.feature-card p {
    color: #aa9b7b;
    line-height: 1.8;
    font-size: 14px;
}

.feature-card a {
    display: inline-block;
    margin-top: 22px;

    color: #c7a45d;
    text-decoration: none;

    font-family: "Cinzel", serif;
    font-size: 13px;
}

/* =========================
   QUOTE
========================= */

.history-quote {
    padding: 100px 30px;

    text-align: center;

    background: #0f0c09;
    border-top: 1px solid #4c3a23;
    border-bottom: 1px solid #4c3a23;
}

.quote-mark {
    font-size: 70px;
    color: #a57c3d;
    height: 60px;
}

.history-quote blockquote {
    max-width: 850px;
    margin: 20px auto;

    font-family: "Cinzel", serif;
    font-size: 25px;
    line-height: 1.7;

    color: #d8c69e;
}

.history-quote p {
    color: #a38b5e;
    font-style: italic;
}

/* =========================
   FOOTER
========================= */

footer {
    padding: 60px 20px;
    text-align: center;
    background: #0b0907;
    border-top: 1px solid #4c3a23;
}

.footer-logo {
    font-family: "Cinzel", serif;
    color: #c29a52;
    letter-spacing: 3px;
    font-size: 18px;
}

footer p {
    margin-top: 15px;
    color: #85775d;
    font-size: 13px;
}

.footer-line {
    width: 100px;
    height: 1px;
    margin: 25px auto;
    background: #725631;
}

/* Developer credit */
.developer {
    color: #c7b58f;
}

.developer strong {
    color: #c39a52;
    font-family: "Cinzel", serif;
}

/* Powered by */
.powered {
    margin-top: 8px;
}

.powered strong {
    color: #c39a52;
    font-family: "Cinzel", serif;
}

/* Copyright */
.copyright {
    margin-top: 18px !important;
    font-size: 11px !important;
    letter-spacing: 1px;
    color: #85775d;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 850px) {

    .navbar {
        height: auto;
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }

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

    .features {
        grid-template-columns: 1fr;
        width: 90%;
    }

    .hero {
        min-height: 650px;
    }

    .hero h1 {
        letter-spacing: 4px;
    }

    .hero-description {
        font-size: 15px;
    }
}


/* =========================================
   INDIA'S GOLDEN AGES
========================================= */

.india-feature {
    width: 88%;
    max-width: 1200px;

    margin: 70px auto 90px;

    padding: 75px 60px;

    position: relative;

    text-align: center;

    background:
        linear-gradient(
            rgba(35, 27, 17, 0.96),
            rgba(22, 17, 11, 0.98)
        );

    border: 1px solid #80683f;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35);

    overflow: hidden;
}


/* Inner decorative border */

.india-feature::before {
    content: "";

    position: absolute;

    inset: 10px;

    border: 1px solid #4c3a23;

    pointer-events: none;
}


/* Decorative glow */

.india-feature::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: -150px;
    right: -100px;

    background: rgba(195, 154, 82, 0.08);

    border-radius: 50%;

    pointer-events: none;
}


/* Content */

.india-feature-content {
    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: auto;
}


/* Small label */

.india-label {
    display: block;

    font-family: "Cinzel", serif;

    font-size: 11px;

    letter-spacing: 5px;

    color: #b08a4d;

    margin-bottom: 18px;
}


/* Main heading */

.india-feature h2 {
    font-family: "Cinzel", serif;

    font-size: clamp(38px, 5vw, 58px);

    color: #e8d5ac;

    letter-spacing: 2px;

    margin: 0;
}


/* Ornament */

.india-ornament {
    margin: 25px 0;

    color: #b08a4d;

    font-size: 15px;

    letter-spacing: 2px;
}


/* Description */

.india-feature p {
    max-width: 760px;

    margin: 15px auto;

    color: #bfb08f;

    font-size: 14px;

    line-height: 1.9;
}


/* North / South */

.india-regions {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 45px;

    margin: 30px 0;
}

.india-regions span {
    font-family: "Cinzel", serif;

    font-size: 11px;

    letter-spacing: 2px;

    color: #c39a52;
}


/* Explore button */

.india-explore {
    display: inline-block;

    margin-top: 10px;

    padding: 15px 32px;

    border: 1px solid #b08a4d;

    color: #e4c985;

    text-decoration: none;

    font-family: "Cinzel", serif;

    font-size: 12px;

    letter-spacing: 2px;

    transition: 0.3s;
}


.india-explore:hover {
    background: #b08a4d;

    color: #17120d;

    transform: translateY(-2px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .india-feature {
        width: 92%;

        padding: 55px 25px;
    }

    .india-regions {
        flex-direction: column;

        gap: 15px;
    }

}


/* =====================================================
   RELIGIONS SECTION
===================================================== */

.religions-section {

    position: relative;

    padding: 130px 5% 140px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(176, 138, 77, 0.08),
            transparent 45%
        ),
        #110d09;

    overflow: hidden;
}


/* =========================
   HEADING
========================= */

.religions-heading {

    max-width: 850px;

    margin: 0 auto 70px;

    text-align: center;
}

.religions-heading h2 {

    margin-top: 15px;

    font-family: "Cinzel", serif;

    font-size: clamp(35px, 5vw, 55px);

    color: #e5d0a2;

    letter-spacing: 1px;
}

.religion-ornament {

    margin: 25px 0;

    color: #b08a4d;

    font-size: 16px;

    letter-spacing: 3px;
}

.religions-heading > p:last-child {

    max-width: 700px;

    margin: auto;

    color: #a99a7e;

    line-height: 1.9;

    font-size: 14px;
}


/* =====================================================
   CARDS
===================================================== */

.religion-cards {

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 28px;
}


/* =========================
   CARD
========================= */

.religion-card {

    position: relative;

    min-height: 560px;

    padding: 55px 35px 40px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #251b12,
            #17100b
        );

    border: 1px solid #5c4729;

    overflow: hidden;

    opacity: 0;

    transform:
        translateY(80px)
        scale(0.94);

    animation:
        religionReveal 1s
        cubic-bezier(.16,1,.3,1)
        forwards;

    transition:
        transform 0.5s ease,
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}


/* staggered entrance */

.religion-card:nth-child(1) {
    animation-delay: 0.15s;
}

.religion-card:nth-child(2) {
    animation-delay: 0.35s;
}

.religion-card:nth-child(3) {
    animation-delay: 0.55s;
}


/* =========================
   REVEAL ANIMATION
========================= */

@keyframes religionReveal {

    0% {

        opacity: 0;

        transform:
            translateY(100px)
            scale(0.88);

        filter:
            blur(8px);

    }

    70% {

        opacity: 1;

        transform:
            translateY(-8px)
            scale(1.015);

        filter:
            blur(0);

    }

    100% {

        opacity: 1;

        transform:
            translateY(0)
            scale(1);

    }

}


/* =========================
   GOLDEN LIGHT
========================= */

.religion-card::before {

    content: "";

    position: absolute;

    top: -100%;

    left: -40%;

    width: 70%;

    height: 300%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(218, 180, 105, 0.12),
            transparent
        );

    transform: rotate(25deg);

    transition:
        left 0.8s ease;
}

.religion-card:hover::before {

    left: 120%;
}


/* =========================
   CARD HOVER
========================= */

.religion-card:hover {

    transform:
        translateY(-14px)
        scale(1.02);

    border-color: #c49a52;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.55),
        0 0 35px rgba(176, 138, 77, 0.08);
}


/* =========================
   NUMBER
========================= */

.religion-number {

    position: absolute;

    top: 20px;
    left: 25px;

    font-family: "Cinzel", serif;

    font-size: 12px;

    letter-spacing: 3px;

    color: #80643a;

}


/* =========================
   SYMBOL
========================= */

.religion-symbol {

    width: 85px;
    height: 85px;

    margin: 10px auto 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #80633b;

    border-radius: 50%;

    font-size: 40px;

    color: #d5b16c;

    background:
        radial-gradient(
            circle,
            rgba(193, 154, 82, 0.12),
            transparent 70%
        );

    transition:
        transform 0.6s ease,
        box-shadow 0.6s ease;
}

.religion-card:hover .religion-symbol {

    transform:
        rotateY(360deg)
        scale(1.12);

    box-shadow:
        0 0 30px rgba(193, 154, 82, 0.15);
}


/* =========================
   CATEGORY
========================= */

.religion-category {

    font-family: "Cinzel", serif;

    font-size: 9px;

    letter-spacing: 3px;

    color: #997541;
}


/* =========================
   TITLE
========================= */

.religion-card h3 {

    margin: 15px 0;

    font-family: "Cinzel", serif;

    font-size: 29px;

    color: #e1c58e;
}


/* =========================
   DESCRIPTION
========================= */

.religion-card > p {

    color: #a99a7e;

    font-size: 13px;

    line-height: 1.9;

    min-height: 125px;
}


/* =========================
   TOPICS
========================= */

.religion-topics {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;

    margin: 25px 0;
}

.religion-topics span {

    padding: 7px 11px;

    border: 1px solid #4d3a23;

    color: #9d865e;

    font-family: "Cinzel", serif;

    font-size: 9px;

    letter-spacing: 1px;

    transition: 0.3s;
}

.religion-card:hover
.religion-topics span {

    border-color: #80633b;

    color: #c8a665;
}


/* =========================
   BUTTON
========================= */

.religion-button {

    display: inline-block;

    margin-top: 12px;

    padding: 13px 22px;

    border: 1px solid #80633b;

    color: #c8a665;

    text-decoration: none;

    font-family: "Cinzel", serif;

    font-size: 10px;

    letter-spacing: 2px;

    transition: 0.35s;
}

.religion-button:hover {

    background: #b08a4d;

    color: #17100b;

    border-color: #b08a4d;
}


/* =========================
   BOTTOM NOTE
========================= */

.religions-note {

    max-width: 800px;

    margin: 65px auto 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    text-align: center;

    color: #75664e;

    font-size: 11px;

    line-height: 1.7;
}

.religions-note span {

    color: #9a753c;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 950px) {

    .religion-cards {

        grid-template-columns: 1fr;

        max-width: 600px;
    }

    .religion-card {

        min-height: auto;
    }

}


@media (max-width: 600px) {

    .religions-section {

        padding: 90px 20px;
    }

    .religion-card {

        padding: 45px 25px 35px;
    }

    .religions-note {

        flex-direction: column;

        gap: 8px;
    }

}

/* =========================================================
   EDUCATIONAL DISCLAIMER
   ========================================================= */

.disclaimer-section {
    padding: 90px 6%;

    background:
        linear-gradient(
            180deg,
            #0b0a08,
            #11100c
        );

    border-top: 1px solid #3d3020;
}


.disclaimer-card {
    max-width: 950px;

    margin: auto;

    padding: 45px 50px;

    background:
        linear-gradient(
            145deg,
            #19160f,
            #100f0b
        );

    border: 1px solid #51432b;

    text-align: center;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.28);
}


.disclaimer-label {
    font-family: "Cinzel", serif;

    font-size: 10px;

    letter-spacing: 4px;

    color: #a98248;
}


.disclaimer-card h2 {
    margin: 14px 0 22px;

    font-family: "Cinzel", serif;

    font-size: 27px;

    color: #ddc99a;
}


.disclaimer-card p {
    max-width: 800px;

    margin: 0 auto 18px;

    color: #958a76;

    font-size: 12px;

    line-height: 1.9;
}


.disclaimer-card .disclaimer-note {
    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #403522;

    color: #b49a68;

    font-size: 11px;
}


/* =========================================================
   DISCLAIMER RESPONSIVE
   ========================================================= */

@media (max-width: 700px) {

    .disclaimer-section {
        padding: 65px 5%;
    }

    .disclaimer-card {
        padding: 32px 22px;
    }

    .disclaimer-card h2 {
        font-size: 22px;
    }

    .disclaimer-card p {
        font-size: 11px;
    }
}

