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

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

html {
    scroll-behavior: smooth;
}

body {
    background: #fffdf9;
    color: #2d241f;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}



/* =====================================================
   SIDE ADVERTISEMENTS
   ===================================================== */

.side-ad {
    position: fixed;

    top: 120px;

    width: 160px;
    min-height: 300px;

    z-index: 900;
}

.side-ad-left {
    left: 12px;
}

.side-ad-right {
    right: 12px;
}

.ad-placeholder {
    width: 160px;
    min-height: 300px;

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

    border: 1px dashed #d8cec0;

    background: #fffdf9;

    color: #a69a8d;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;
}



/* =====================================================
   HEADER
   ===================================================== */

.site-header {
    position: sticky;
    top: 0;

    z-index: 1000;

    height: 80px;

    background: rgba(255, 253, 249, 0.96);

    border-bottom: 1px solid #e8dfd4;

    backdrop-filter: blur(10px);
}

.header-inner {
    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}



/* =====================================================
   LOGO
   ===================================================== */

.logo {
    display: flex;

    align-items: center;

    gap: 10px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;

    font-weight: 700;

    white-space: nowrap;
}

.logo-icon {
    font-size: 25px;
}



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

.main-nav {
    display: flex;

    align-items: center;

    gap: 30px;
}

.main-nav a {
    position: relative;

    font-size: 14px;

    color: #403732;

    transition: color 0.25s ease;
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 1px;

    background: #b86120;

    transition: width 0.25s ease;
}

.main-nav a:hover {
    color: #b86120;
}

.main-nav a:hover::after {
    width: 100%;
}



/* =====================================================
   SEARCH
   ===================================================== */

.search {
    position: relative;
}

.search summary {
    width: 42px;
    height: 42px;

    display: flex;

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

    border: 1px solid #ddd3c7;

    border-radius: 50%;

    cursor: pointer;

    list-style: none;

    font-size: 17px;

    background: #fffdf9;
}

.search summary::-webkit-details-marker {
    display: none;
}

.search form {
    position: absolute;

    top: 54px;

    right: 0;

    width: 280px;

    display: flex;

    gap: 8px;

    padding: 12px;

    background: #ffffff;

    border: 1px solid #e2d8cc;

    box-shadow: 0 15px 35px rgba(45, 36, 31, 0.12);

    border-radius: 8px;
}

.search input[type="search"] {
    width: 100%;

    padding: 10px 12px;

    border: 1px solid #d9cec1;

    border-radius: 5px;

    outline: none;

    font-size: 13px;
}

.search input[type="search"]:focus {
    border-color: #b86120;
}

.search button {
    padding: 10px 13px;

    border: none;

    border-radius: 5px;

    background: #b86120;

    color: white;

    cursor: pointer;
}



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

.hero-section {
    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            #fffdf9 0%,
            #f5ecdf 70%,
            #eee2d1 100%
        );
}

.hero-content {
    padding: 90px 0;
}

.eyebrow {
    margin-bottom: 25px;

    color: #b86120;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 4px;
}

.hero-section h1 {
    max-width: 850px;

    margin: 0 auto 28px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(54px, 7vw, 88px);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -3px;

    color: #2d241f;
}

.hero-section p {
    max-width: 680px;

    margin: 0 auto 35px;

    font-size: 17px;

    line-height: 1.8;

    color: #675c54;
}



/* =====================================================
   BUTTONS
   ===================================================== */

.primary-button {
    display: inline-block;

    padding: 15px 28px;

    background: #b86120;

    color: #ffffff;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.primary-button:hover {
    background: #994d18;

    transform: translateY(-2px);
}

.outline-button {
    display: inline-block;

    padding: 13px 25px;

    border: 1px solid rgba(255, 255, 255, 0.45);

    border-radius: 30px;

    color: white;

    font-size: 14px;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.outline-button:hover {
    background: white;

    color: #2d241f;
}



/* =====================================================
   GENERAL SECTION
   ===================================================== */

.today-section,
.explore-section,
.featured-section {
    padding: 100px 0;
}

.section-heading {
    margin-bottom: 55px;

    text-align: center;
}

.section-label {
    display: block;

    margin-bottom: 12px;

    color: #b86120;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;
}

.section-heading h2 {
    margin-bottom: 15px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 48px;

    font-weight: 400;

    line-height: 1.1;
}

.section-heading p {
    max-width: 600px;

    margin: 0 auto;

    color: #766b62;

    font-size: 15px;
}



/* =====================================================
   TODAY'S BHAKTI
   ===================================================== */

.today-section {
    background: #fffdf9;
}

.today-grid {
    display: grid;

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

    gap: 22px;
}

.today-card {
    padding: 35px;

    background: #ffffff;

    border: 1px solid #e8ded2;

    border-radius: 12px;

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

.today-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px
        rgba(45, 36, 31, 0.08);
}

.card-icon {
    width: 52px;
    height: 52px;

    display: flex;

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

    margin-bottom: 25px;

    border-radius: 50%;

    background: #f5eadc;

    color: #b86120;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;
}

.card-label {
    display: block;

    margin-bottom: 8px;

    color: #b86120;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.today-card h3 {
    margin-bottom: 12px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;

    font-weight: 400;
}

.today-card p {
    margin-bottom: 20px;

    color: #766b62;

    font-size: 14px;
}

.today-card a {
    color: #b86120;

    font-size: 13px;

    font-weight: 700;
}



/* =====================================================
   DISCOVER
   ===================================================== */

.explore-section {
    background: #f7f0e7;
}

.explore-grid {
    display: grid;

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

    gap: 18px;
}

.explore-card {
    position: relative;

    padding: 35px 28px;

    min-height: 280px;

    background: #fffdf9;

    border: 1px solid #e4d9cc;

    border-radius: 10px;

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

.explore-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px
        rgba(45, 36, 31, 0.08);
}

.explore-number {
    position: absolute;

    top: 20px;

    right: 22px;

    color: #c8b9a9;

    font-size: 11px;

    letter-spacing: 1px;
}

.explore-icon {
    margin-bottom: 30px;

    font-size: 34px;
}

.explore-card h3 {
    margin-bottom: 10px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;

    font-weight: 400;
}

.explore-card p {
    margin-bottom: 22px;

    color: #766b62;

    font-size: 13px;
}

.explore-link {
    color: #b86120;

    font-size: 12px;

    font-weight: 700;
}



/* =====================================================
   KNOWLEDGE
   ===================================================== */

.knowledge-section {
    background: #2d241f;

    color: #ffffff;
}

.knowledge-inner {
    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 80px;
}

.knowledge-content {
    max-width: 650px;
}

.light-label {
    color: #d98a48;
}

.knowledge-content h2 {
    margin-bottom: 25px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(45px, 5vw, 68px);

    font-weight: 400;

    line-height: 1.05;
}

.knowledge-content p {
    max-width: 550px;

    margin-bottom: 30px;

    color: #cfc2b6;

    font-size: 16px;

    line-height: 1.8;
}

.knowledge-symbol {
    width: 260px;
    height: 260px;

    display: flex;

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

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 50%;

    color: rgba(255, 255, 255, 0.15);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 130px;
}



/* =====================================================
   FEATURED
   ===================================================== */

.featured-section {
    background: #fffdf9;
}

.featured-grid {
    display: grid;

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

    gap: 25px;
}

.featured-card {
    overflow: hidden;

    display: grid;

    grid-template-columns: 180px 1fr;

    background: #ffffff;

    border: 1px solid #e8ded2;

    border-radius: 10px;
}

.featured-image {
    min-height: 230px;

    display: flex;

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

    background: #f4e8da;

    font-size: 55px;
}

.featured-content {
    padding: 30px;
}

.featured-content > span {
    display: block;

    margin-bottom: 10px;

    color: #b86120;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.featured-content h3 {
    margin-bottom: 12px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;

    font-weight: 400;

    line-height: 1.2;
}

.featured-content p {
    margin-bottom: 18px;

    color: #766b62;

    font-size: 13px;
}

.featured-content a {
    color: #b86120;

    font-size: 12px;

    font-weight: 700;
}



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

.site-footer {
    background: #241d19;

    color: #ffffff;
}

.footer-inner {
    min-height: 180px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.footer-logo {
    margin-bottom: 8px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 22px;

    font-weight: 700;
}

.footer-brand p {
    color: #a99c91;

    font-size: 13px;
}

.footer-links {
    display: flex;

    flex-wrap: wrap;

    gap: 20px;
}

.footer-links a {
    color: #c8bcb2;

    font-size: 12px;

    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding: 18px 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    text-align: center;

    color: #8f8278;

    font-size: 11px;
}



/* =====================================================
   SIDE ADS - CONTENT SPACE
   ===================================================== */

/*
   Keep the advertisements visible on wide screens.
   Give the website breathing room so the ads don't
   cover the main content.
*/

@media (min-width: 1200px) {

    body {
        padding-left: 175px;
        padding-right: 175px;
    }

    .side-ad-left {
        left: 10px;
    }

    .side-ad-right {
        right: 10px;
    }

}



/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 1000px) {

    .side-ad {
        display: none;
    }

    .main-nav {
        gap: 18px;
    }

    .today-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .explore-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .knowledge-inner {
        padding: 80px 0;
    }

}



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

@media (max-width: 800px) {

    .container {
        width: min(
            100% - 32px,
            650px
        );
    }

    .site-header {
        height: auto;
    }

    .header-inner {
        min-height: 75px;

        flex-wrap: wrap;

        padding: 15px 0;
    }

    .main-nav {
        order: 3;

        width: 100%;

        justify-content: center;

        overflow-x: auto;

        padding-bottom: 5px;
    }

    .main-nav a {
        white-space: nowrap;
    }

    .hero-section {
        min-height: 600px;
    }

    .hero-section h1 {
        font-size: 55px;

        letter-spacing: -2px;
    }

    .section-heading h2 {
        font-size: 40px;
    }

    .knowledge-inner {
        flex-direction: column;

        align-items: flex-start;

        padding: 90px 0;
    }

    .knowledge-symbol {
        width: 180px;
        height: 180px;

        font-size: 90px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;

        align-items: flex-start;

        padding: 50px 0;
    }

}



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

@media (max-width: 480px) {

    .logo {
        font-size: 21px;
    }

    .logo-icon {
        font-size: 21px;
    }

    .main-nav {
        gap: 16px;
    }

    .main-nav a {
        font-size: 12px;
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero-section h1 {
        font-size: 43px;

        letter-spacing: -1.5px;
    }

    .hero-section p {
        font-size: 15px;
    }

    .today-section,
    .explore-section,
    .featured-section {
        padding: 70px 0;
    }

    .today-grid,
    .explore-grid {
        grid-template-columns: 1fr;
    }

    .featured-card {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 170px;
    }

    .search form {
        right: -10px;

        width: 260px;
    }

}


/* =====================================================
   AARTI PAGE
   ===================================================== */


/* -----------------------------------------------------
   AARTI PAGE HERO
   ----------------------------------------------------- */

.aarti-page-hero {
    min-height: 430px;

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

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            #fffdf9 0%,
            #f5ecdf 65%,
            #eee2d1 100%
        );

    border-bottom: 1px solid #e8ded2;
}

.aarti-page-hero-content {
    max-width: 720px;

    margin: 0 auto;

    padding: 80px 0;
}

.aarti-page-hero h1 {
    margin-bottom: 20px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(58px, 7vw, 82px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -2px;

    color: #2d241f;
}

.aarti-page-hero p {
    max-width: 620px;

    margin: 0 auto;

    color: #766b62;

    font-size: 16px;

    line-height: 1.8;
}



/* -----------------------------------------------------
   AARTI DIRECTORY
   ----------------------------------------------------- */

.aarti-directory {
    padding: 100px 0;

    background: #fffdf9;
}

.aarti-directory-grid {
    display: grid;

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

    gap: 20px;
}



/* -----------------------------------------------------
   AARTI CARD
   ----------------------------------------------------- */

.aarti-directory-card {
    position: relative;

    min-height: 310px;

    display: flex;

    flex-direction: column;

    padding: 32px 28px;

    background: #ffffff;

    border: 1px solid #e7ddd2;

    border-radius: 12px;

    overflow: hidden;

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

.aarti-directory-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #b86120;

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.3s ease;
}

.aarti-directory-card:hover {
    transform: translateY(-7px);

    border-color: #d8c5b2;

    box-shadow:
        0 18px 40px
        rgba(45, 36, 31, 0.10);
}

.aarti-directory-card:hover::before {
    transform: scaleX(1);
}



/* -----------------------------------------------------
   AARTI ICON
   ----------------------------------------------------- */

.aarti-directory-icon {
    width: 62px;
    height: 62px;

    display: flex;

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

    margin-bottom: 25px;

    border-radius: 50%;

    background: #f6ecdf;

    font-size: 31px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.aarti-directory-card:hover
.aarti-directory-icon {
    transform: scale(1.08);

    background: #f1dfcc;
}



/* -----------------------------------------------------
   CARD NUMBER
   ----------------------------------------------------- */

.aarti-directory-number {
    position: absolute;

    top: 25px;
    right: 25px;

    color: #c8b9a9;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1px;
}



/* -----------------------------------------------------
   CARD CONTENT
   ----------------------------------------------------- */

.aarti-directory-card .card-label {
    margin-bottom: 8px;
}

.aarti-directory-card h3 {
    margin-bottom: 12px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 26px;

    font-weight: 400;

    line-height: 1.2;

    color: #2d241f;
}

.aarti-directory-card p {
    margin-bottom: 22px;

    color: #766b62;

    font-size: 13px;

    line-height: 1.7;
}

.aarti-directory-link {
    margin-top: auto;

    color: #b86120;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.2px;
}



/* -----------------------------------------------------
   COMING SOON CARDS
   ----------------------------------------------------- */

.aarti-directory-card.coming-soon {
    background: #faf7f2;

    border-style: dashed;

    cursor: default;
}

.aarti-directory-card.coming-soon::before {
    display: none;
}

.aarti-directory-card.coming-soon
.aarti-directory-icon {
    opacity: 0.65;
}

.aarti-directory-card.coming-soon
.aarti-directory-link {
    color: #a99c91;

    font-weight: 600;
}



/* -----------------------------------------------------
   AARTI MESSAGE
   ----------------------------------------------------- */

.aarti-message {
    padding: 110px 0;

    background: #2d241f;

    color: #ffffff;

    text-align: center;
}

.aarti-message-content {
    max-width: 700px;

    margin: 0 auto;
}

.aarti-message-content .section-label {
    color: #d98a48;
}

.aarti-message-content h2 {
    margin-bottom: 22px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 5vw, 62px);

    font-weight: 400;

    line-height: 1.1;
}

.aarti-message-content p {
    max-width: 570px;

    margin: 0 auto;

    color: #cfc2b6;

    font-size: 16px;

    line-height: 1.8;
}



/* =====================================================
   AARTI PAGE RESPONSIVE
   ===================================================== */


/* -----------------------------------------------------
   TABLET
   ----------------------------------------------------- */

@media (max-width: 1000px) {

    .aarti-directory-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}



/* -----------------------------------------------------
   MOBILE
   ----------------------------------------------------- */

@media (max-width: 600px) {

    .aarti-page-hero {
        min-height: 380px;
    }

    .aarti-page-hero-content {
        padding: 70px 0;
    }

    .aarti-page-hero h1 {
        font-size: 55px;

        letter-spacing: -1px;
    }

    .aarti-page-hero p {
        font-size: 14px;
    }

    .aarti-directory {
        padding: 70px 0;
    }

    .aarti-directory-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .aarti-directory-card {
        min-height: 280px;
    }

    .aarti-message {
        padding: 80px 0;
    }

}

/* =====================================================
   GANESH AARTI COLLECTION PAGE
   ===================================================== */


/* -----------------------------------------------------
   HERO
   ----------------------------------------------------- */

.ganesh-page-hero {
    min-height: 440px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 50% 40%,
            #fffdf9 0%,
            #f6ecdf 62%,
            #eee0ce 100%
        );

    border-bottom: 1px solid #e8ded2;
}

.ganesh-page-hero .container {
    width: min(1120px, calc(100% - 48px));
}


.ganesh-hero-content {
    max-width: 720px;

    margin: 0 auto;

    padding: 55px 0 75px;

    text-align: center;
}


.ganesh-hero-icon {
    width: 76px;
    height: 76px;

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

    margin: 0 auto 24px;

    border-radius: 50%;

    background: #f4e5d3;

    font-size: 38px;

    box-shadow:
        0 8px 25px
        rgba(45, 36, 31, 0.06);
}


.ganesh-hero-content h1 {
    margin-bottom: 18px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(55px, 7vw, 82px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -2px;

    color: #2d241f;
}


.ganesh-hero-content p {
    max-width: 560px;

    margin: 0 auto;

    color: #766b62;

    font-size: 16px;

    line-height: 1.8;
}



/* -----------------------------------------------------
   BREADCRUMB
   ----------------------------------------------------- */

.breadcrumb {
    display: flex;

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

    gap: 9px;

    padding-top: 28px;

    color: #a2968b;

    font-size: 11px;
}


.breadcrumb a {
    color: #8d7e70;

    transition: color 0.2s ease;
}


.breadcrumb a:hover {
    color: #b86120;
}



/* -----------------------------------------------------
   GANESH AARTI SECTION
   ----------------------------------------------------- */

.ganesh-aarti-section {
    padding: 100px 0;

    background: #fffdf9;
}


.ganesh-aarti-section .section-heading {
    margin-bottom: 55px;
}



/* -----------------------------------------------------
   AARTI GRID
   ----------------------------------------------------- */

.ganesh-aarti-grid {
    display: grid;

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

    gap: 22px;
}



/* -----------------------------------------------------
   AARTI CARD
   ----------------------------------------------------- */

.ganesh-aarti-card {
    position: relative;

    min-height: 330px;

    display: flex;

    flex-direction: column;

    padding: 32px;

    background: #ffffff;

    border: 1px solid #e7ddd2;

    border-radius: 13px;

    overflow: hidden;

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


.ganesh-aarti-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #b86120;

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.3s ease;
}


.ganesh-aarti-card:hover {
    transform: translateY(-7px);

    border-color: #d8c5b2;

    box-shadow:
        0 20px 45px
        rgba(45, 36, 31, 0.10);
}


.ganesh-aarti-card:hover::before {
    transform: scaleX(1);
}



/* -----------------------------------------------------
   CARD TOP
   ----------------------------------------------------- */

.ganesh-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 28px;
}


.ganesh-card-icon {
    width: 60px;
    height: 60px;

    display: flex;

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

    border-radius: 50%;

    background: #f5eadc;

    font-size: 29px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.ganesh-aarti-card:hover
.ganesh-card-icon {
    transform: scale(1.08);

    background: #f0dfcc;
}


.ganesh-card-number {
    color: #c8b9a9;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}



/* -----------------------------------------------------
   CARD CONTENT
   ----------------------------------------------------- */

.ganesh-aarti-card .card-label {
    margin-bottom: 9px;
}


.ganesh-aarti-card h3 {
    margin-bottom: 13px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;

    font-weight: 400;

    line-height: 1.2;

    color: #2d241f;
}


.ganesh-aarti-card p {
    margin-bottom: 24px;

    color: #766b62;

    font-size: 13px;

    line-height: 1.75;
}


.ganesh-card-link {
    margin-top: auto;

    color: #b86120;

    font-size: 12px;

    font-weight: 700;

    transition: letter-spacing 0.2s ease;
}


.ganesh-aarti-card:hover
.ganesh-card-link {
    letter-spacing: 0.3px;
}



/* -----------------------------------------------------
   COMING SOON
   ----------------------------------------------------- */

.ganesh-aarti-card.coming-soon {
    background: #faf7f2;

    border-style: dashed;

    cursor: default;
}


.ganesh-aarti-card.coming-soon::before {
    display: none;
}


.ganesh-aarti-card.coming-soon:hover {
    transform: none;

    box-shadow: none;

    border-color: #e7ddd2;
}


.ganesh-aarti-card.coming-soon
.ganesh-card-icon {
    opacity: 0.65;
}


.ganesh-aarti-card.coming-soon
.ganesh-card-link {
    color: #a99c91;

    letter-spacing: 0;
}



/* -----------------------------------------------------
   ABOUT GANESHA
   ----------------------------------------------------- */

.ganesh-about-section {
    padding: 105px 0;

    background: #f7f0e7;
}


.ganesh-about {
    max-width: 760px;

    margin: 0 auto;

    text-align: center;
}


.ganesh-about h2 {
    margin-bottom: 22px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 5vw, 62px);

    font-weight: 400;

    line-height: 1.1;

    color: #2d241f;
}


.ganesh-about p {
    max-width: 650px;

    margin: 0 auto;

    color: #766b62;

    font-size: 16px;

    line-height: 1.9;
}



/* -----------------------------------------------------
   BACK TO AARTI
   ----------------------------------------------------- */

.aarti-back-section {
    padding: 65px 0;

    background: #fffdf9;

    text-align: center;
}



/* =====================================================
   GANESH PAGE RESPONSIVE
   ===================================================== */


/* -----------------------------------------------------
   TABLET
   ----------------------------------------------------- */

@media (max-width: 1000px) {

    .ganesh-aarti-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}



/* -----------------------------------------------------
   MOBILE
   ----------------------------------------------------- */

@media (max-width: 600px) {

    .ganesh-page-hero {
        min-height: 400px;
    }


    .ganesh-hero-content {
        padding: 45px 0 65px;
    }


    .ganesh-hero-icon {
        width: 68px;
        height: 68px;

        font-size: 33px;
    }


    .ganesh-hero-content h1 {
        font-size: 55px;

        letter-spacing: -1px;
    }


    .ganesh-hero-content p {
        font-size: 14px;
    }


    .breadcrumb {
        padding-top: 22px;

        font-size: 10px;
    }


    .ganesh-aarti-section {
        padding: 70px 0;
    }


    .ganesh-aarti-grid {
        grid-template-columns: 1fr;

        gap: 17px;
    }


    .ganesh-aarti-card {
        min-height: 300px;

        padding: 28px;
    }


    .ganesh-about-section {
        padding: 80px 0;
    }


    .aarti-back-section {
        padding: 50px 0;
    }

}

/* =====================================================
   PREMIUM AARTI POPUP
   ===================================================== */

.aarti-modal {
    position: fixed;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: min(760px, calc(100% - 30px));

    height: min(820px, calc(100vh - 60px));

    max-width: 760px;
    max-height: calc(100vh - 60px);

    margin: 0;

    padding: 0;

    border: none;

    border-radius: 20px;

    background: transparent;

    overflow: hidden;
}


/* DARK BACKGROUND */

.aarti-modal::backdrop {

    background: rgba(25, 19, 15, 0.82);

    backdrop-filter: blur(8px);
}



/* =====================================================
   POPUP BOX
   ===================================================== */

.aarti-modal-box {

    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

    background: #fffdf9;

    border: 1px solid #dfd0c0;

    border-radius: 20px;

    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.35);

    overflow: hidden;
}



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

.aarti-modal-close {

    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 10;

    width: 42px;
    height: 42px;

    display: flex;

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

    border: 1px solid #dfd1c3;

    border-radius: 50%;

    background: #fffaf4;

    color: #5e4c3d;

    font-size: 26px;

    line-height: 1;

    cursor: pointer;

    transition: all 0.2s ease;
}


.aarti-modal-close:hover {

    background: #f1e4d5;

    transform: scale(1.05);
}



/* =====================================================
   HEADER
   ===================================================== */

.aarti-reading-header {

    flex-shrink: 0;

    padding: 38px 70px 25px;

    text-align: center;

    background:
        linear-gradient(
            to bottom,
            #fffdf9,
            #fbf4eb
        );

    border-bottom: 1px solid #eadfd4;
}


.aarti-modal-icon {

    width: 58px;
    height: 58px;

    display: flex;

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

    margin: 0 auto 12px;

    border-radius: 50%;

    background: #f3e6d7;

    font-size: 29px;
}


.aarti-reading-label {

    display: block;

    margin-bottom: 7px;

    color: #a85c24;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;
}


.aarti-reading-header h2 {

    margin: 0;

    color: #2e251f;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 36px;

    font-weight: 400;

    line-height: 1.2;
}



/* =====================================================
   DIVIDER
   ===================================================== */

.aarti-divider {

    width: 100%;

    margin-top: 18px;

    display: flex;

    align-items: center;

    gap: 12px;

    color: #ad6229;

    font-size: 12px;
}


.aarti-divider::before,
.aarti-divider::after {

    content: "";

    flex: 1;

    height: 1px;

    background: #e2d5c8;
}



/* =====================================================
   AARTI TEXT
   ===================================================== */

.aarti-text {

    flex: 1;

    min-height: 0;

    overflow-y: auto;

    padding: 45px 70px 50px;

    color: #3d3027;

    font-family:
        "Noto Serif Devanagari",
        "Nirmala UI",
        "Mangal",
        serif;

    /* BIG LETTERS */

    font-size: 26px;

    font-weight: 500;

    line-height: 2.05;

    text-align: center;
}


.aarti-text p {

    margin: 0 0 18px;
}



/* =====================================================
   REFRAIN
   ===================================================== */

.aarti-refrain {

    margin: 30px 0;

    padding: 18px 10px;

    border-top: 1px solid #e8ddd3;

    border-bottom: 1px solid #e8ddd3;

    color: #914d1b;

    font-weight: 600;
}


.aarti-refrain p {

    margin-bottom: 5px;
}



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

.aarti-reading-footer {

    flex-shrink: 0;

    min-height: 70px;

    padding: 15px 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background: #fbf4eb;

    border-top: 1px solid #eadfd4;
}


.aarti-reading-footer > span {

    color: #9b8877;

    font-family:
        "Noto Serif Devanagari",
        "Nirmala UI",
        "Mangal",
        serif;

    font-size: 14px;
}


.aarti-close-button {

    padding: 10px 24px;

    border: 1px solid #d6c3b1;

    border-radius: 30px;

    background: #fffdf9;

    color: #704b2d;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;
}


.aarti-close-button:hover {

    background: #f1e4d5;
}



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

@media (max-width: 600px) {

    .aarti-modal {

        width: calc(100% - 18px);

        height: calc(100vh - 30px);

        max-height: calc(100vh - 30px);

        border-radius: 16px;
    }


    .aarti-modal-box {

        border-radius: 16px;
    }


    .aarti-reading-header {

        padding: 30px 45px 20px;
    }


    .aarti-modal-icon {

        width: 48px;
        height: 48px;

        font-size: 24px;
    }


    .aarti-reading-label {

        font-size: 9px;

        letter-spacing: 2px;
    }


    .aarti-reading-header h2 {

        font-size: 28px;
    }


    .aarti-text {

        padding: 35px 18px 40px;

        /* BIG MOBILE TEXT */

        font-size: 22px;

        line-height: 2;

        text-align: center;
    }


    .aarti-text p {

        margin-bottom: 16px;
    }


    .aarti-refrain {

        margin: 25px 0;

        padding: 15px 5px;
    }


    .aarti-reading-footer {

        justify-content: center;

        padding: 12px 20px;
    }


    .aarti-reading-footer > span {

        display: none;
    }


    .aarti-modal-close {

        top: 10px;
        right: 10px;

        width: 36px;
        height: 36px;

        font-size: 22px;
    }

}