:root {
    --ashram-ink: #161b22;
    --ashram-muted: #667085;
    --ashram-deep: #37173f;
    --ashram-maroon: #7c1f34;
    --ashram-gold: #d7a84b;
    --ashram-emerald: #0c6b58;
    --ashram-paper: #fffaf0;
    --ashram-line: rgba(22, 27, 34, 0.1);
    --shadow-soft: 0 24px 70px rgba(22, 27, 34, 0.14);
    --shadow-card: 0 18px 50px rgba(22, 27, 34, 0.09);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--ashram-ink);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
}

.site-shell {
    background:
        linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(255, 255, 255, 1) 36rem),
        #fff;
}

.navbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transition: background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-color: var(--ashram-line);
    box-shadow: 0 12px 28px rgba(22, 27, 34, 0.08);
    backdrop-filter: blur(16px);
}

.navbar-brand {
    align-items: center;
    display: inline-flex;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    gap: 0.75rem;
    letter-spacing: 0;
}

.brand-mark {
    align-items: center;
    background: linear-gradient(135deg, var(--ashram-gold), #fff2bd);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 0.45rem;
    box-shadow: 0 14px 30px rgba(215, 168, 75, 0.35);
    color: var(--ashram-deep);
    display: inline-flex;
    height: 2.35rem;
    justify-content: center;
    width: 2.35rem;
}

.nav-link {
    color: rgba(22, 27, 34, 0.76);
    font-weight: 700;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--ashram-maroon);
}

.btn {
    border-radius: 0.45rem;
    font-weight: 800;
    min-height: 2.75rem;
}

.btn-premium {
    background: linear-gradient(135deg, var(--ashram-maroon), var(--ashram-deep));
    border: 0;
    box-shadow: 0 18px 35px rgba(124, 31, 52, 0.25);
    color: #fff;
}

.btn-premium:hover,
.btn-premium:focus {
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-premium {
    border: 1px solid rgba(55, 23, 63, 0.22);
    color: var(--ashram-deep);
}

.btn-outline-premium:hover,
.btn-outline-premium:focus {
    background: var(--ashram-deep);
    color: #fff;
}

.hero {
    min-height: 92vh;
    padding: 8.5rem 0 4.5rem;
    position: relative;
}

.hero::before {
    background:
        linear-gradient(90deg, rgba(22, 27, 34, 0.78), rgba(55, 23, 63, 0.4) 48%, rgba(22, 27, 34, 0.05)),
        url("https://upload.wikimedia.org/wikipedia/commons/2/2d/Prem_Mandir%2C_Vrindavan_-_panoramio_%282%29.jpg") center / cover;
    content: "";
    inset: 0;
    position: absolute;
}

.hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fffaf0 92%);
    bottom: 0;
    content: "";
    height: 10rem;
    left: 0;
    position: absolute;
    right: 0;
}

.hero-content {
    color: #fff;
    position: relative;
    z-index: 1;
}

.eyebrow {
    align-items: center;
    color: var(--ashram-gold);
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 900;
    gap: 0.55rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.eyebrow::before {
    background: var(--ashram-gold);
    content: "";
    display: inline-block;
    height: 2px;
    width: 2.2rem;
}

.hero h1,
.section-title,
.admin-title {
    font-family: "Playfair Display", Georgia, serif;
    letter-spacing: 0;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 6.6rem);
    font-weight: 800;
    line-height: 0.94;
    margin: 1.1rem 0 1.25rem;
    max-width: 13ch;
}

.hero-lede {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.12rem;
    max-width: 42rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.hero-stat-panel {
    background: rgba(255, 255, 255, 0.93);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-soft);
    color: var(--ashram-ink);
    margin-top: 2.5rem;
    max-width: 58rem;
    padding: 1rem;
}

.stat-grid {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
}

.stat-item {
    background: rgba(255, 255, 255, 0.78);
    padding: 1rem;
}

.stat-value {
    color: var(--ashram-deep);
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    color: var(--ashram-muted);
    display: block;
    font-size: 0.84rem;
    font-weight: 700;
    margin-top: 0.35rem;
}

.section-padding {
    padding: 5.5rem 0;
}

.section-kicker {
    color: var(--ashram-maroon);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
}

.section-title {
    color: var(--ashram-deep);
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1;
    margin: 0.65rem 0 1rem;
}

.section-copy {
    color: var(--ashram-muted);
    font-size: 1.03rem;
    max-width: 44rem;
}

.feature-band {
    background: var(--ashram-paper);
    border-bottom: 1px solid var(--ashram-line);
    border-top: 1px solid var(--ashram-line);
}

.premium-card {
    background: #fff;
    border: 1px solid var(--ashram-line);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-card);
    height: 100%;
}

.feature-card {
    padding: 1.35rem;
}

.icon-box {
    align-items: center;
    background: rgba(12, 107, 88, 0.1);
    border-radius: 0.45rem;
    color: var(--ashram-emerald);
    display: inline-flex;
    font-size: 1.35rem;
    height: 3rem;
    justify-content: center;
    margin-bottom: 1rem;
    width: 3rem;
}

.feature-card h3,
.room-card h3 {
    color: var(--ashram-deep);
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 0.45rem;
}

.feature-card p,
.room-card p {
    color: var(--ashram-muted);
    margin-bottom: 0;
}

.room-card {
    overflow: hidden;
}

.room-media {
    aspect-ratio: 16 / 10;
    background-position: center;
    background-size: cover;
}

.room-media.family {
    background-image: url("https://images.unsplash.com/photo-1566665797739-1674de7a421a?auto=format&fit=crop&w=900&q=82");
}

.room-media.group {
    background-image: url("https://images.unsplash.com/photo-1593693397690-362cb9666fc2?auto=format&fit=crop&w=900&q=82");
}

.room-media.devotion {
    background-image: url("https://images.unsplash.com/photo-1599661046289-e31897846e41?auto=format&fit=crop&w=900&q=82");
}

.room-card-body {
    padding: 1.35rem;
}

.badge-soft {
    background: rgba(215, 168, 75, 0.18);
    border: 1px solid rgba(215, 168, 75, 0.28);
    color: #77500f;
    font-weight: 800;
}

.booking-wrap {
    background:
        linear-gradient(135deg, rgba(55, 23, 63, 0.96), rgba(124, 31, 52, 0.94)),
        url("https://images.unsplash.com/photo-1584551246679-0daf3d275d0f?auto=format&fit=crop&w=1800&q=85") center / cover;
    color: #fff;
}

.booking-panel {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0.5rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
    color: var(--ashram-ink);
    padding: 1.4rem;
}

.form-control,
.form-select {
    border-color: rgba(22, 27, 34, 0.14);
    border-radius: 0.42rem;
    min-height: 3rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--ashram-gold);
    box-shadow: 0 0 0 0.22rem rgba(215, 168, 75, 0.2);
}

.form-label {
    color: var(--ashram-deep);
    font-size: 0.86rem;
    font-weight: 850;
}

.contact-rail {
    display: grid;
    gap: 1rem;
}

.contact-tile {
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 0.5rem;
    display: flex;
    gap: 1rem;
    padding: 1rem;
}

.contact-tile span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.contact-tile i {
    color: var(--ashram-gold);
    font-size: 1.35rem;
}

.map-frame {
    border: 0;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-card);
    height: 28rem;
    width: 100%;
}

.nearby-list {
    display: grid;
    gap: 0.85rem;
    margin: 1.4rem 0 0;
    padding: 0;
}

.nearby-list li {
    align-items: center;
    background: #fff;
    border: 1px solid var(--ashram-line);
    border-radius: 0.45rem;
    display: flex;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
}

.nearby-list i {
    color: var(--ashram-maroon);
}

.faq-band {
    background: #fff;
}

.accordion-button {
    color: var(--ashram-deep);
    font-weight: 900;
}

.accordion-button:not(.collapsed) {
    background: rgba(215, 168, 75, 0.12);
    color: var(--ashram-deep);
}

.site-footer {
    background: var(--ashram-ink);
    color: rgba(255, 255, 255, 0.78);
    padding: 3rem 0;
}

.site-footer h2,
.site-footer h3 {
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
}

.footer-link {
    color: rgba(255, 255, 255, 0.78);
    display: inline-flex;
    text-decoration: none;
}

.footer-link:hover,
.footer-link:focus {
    color: var(--ashram-gold);
}

.footer-calendar {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
        radial-gradient(circle at top right, rgba(215, 168, 75, 0.22), transparent 12rem);
    border: 1px solid rgba(215, 168, 75, 0.2);
    border-radius: 0.5rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 42px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    padding: 0.68rem;
    position: relative;
}

.footer-calendar-head {
    align-items: center;
    display: flex;
    gap: 0.65rem;
    justify-content: space-between;
    margin-bottom: 0.42rem;
}

.footer-calendar-head span {
    color: #fff;
    font-size: 0.86rem;
    font-weight: 900;
}

.footer-calendar-head strong {
    background: rgba(215, 168, 75, 0.14);
    border: 1px solid rgba(215, 168, 75, 0.24);
    border-radius: 999px;
    color: #f5d889;
    font-size: 0.68rem;
    padding: 0.18rem 0.42rem;
}

.footer-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    text-align: center;
}

.footer-calendar-grid {
    gap: 0.16rem;
}

.calendar-day {
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
    border: 1px solid rgba(255, 255, 255, 0.095);
    border-radius: 0.4rem;
    color: rgba(255, 255, 255, 0.82);
    display: inline-flex;
    flex-direction: column;
    font-size: 0.68rem;
    font-weight: 800;
    gap: 0.06rem;
    height: 1.88rem;
    justify-content: center;
    line-height: 1;
    min-width: 0;
}

.calendar-day-name {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.48rem;
    font-weight: 900;
    text-transform: uppercase;
}

.calendar-day-number {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 0.86rem;
    font-weight: 800;
}

.calendar-day.is-weekend {
    border-color: rgba(215, 168, 75, 0.19);
    color: #f4d891;
}

.calendar-day.is-today {
    background: linear-gradient(135deg, #ffe7a3, var(--ashram-gold));
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 8px 18px rgba(215, 168, 75, 0.28);
    color: var(--ashram-deep);
}

.calendar-day.is-today .calendar-day-name {
    color: rgba(55, 23, 63, 0.66);
}

.footer-calendar-note {
    align-items: center;
    color: rgba(255, 255, 255, 0.62);
    display: flex;
    font-size: 0.66rem;
    font-weight: 700;
    gap: 0.45rem;
    margin-top: 0.42rem;
    white-space: nowrap;
}

.calendar-signal {
    background: var(--ashram-gold);
    border-radius: 999px;
    box-shadow: 0 0 0 4px rgba(215, 168, 75, 0.12);
    display: inline-flex;
    height: 0.45rem;
    width: 0.45rem;
}

.floating-whatsapp {
    align-items: center;
    background: #18a957;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    bottom: 1.25rem;
    box-shadow: 0 18px 40px rgba(24, 169, 87, 0.36);
    color: #fff;
    display: inline-flex;
    font-weight: 900;
    gap: 0.55rem;
    min-height: 3.45rem;
    padding: 0.85rem 1.1rem;
    position: fixed;
    right: 1.25rem;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
    z-index: 1030;
}

.floating-whatsapp i {
    font-size: 1.35rem;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
    background: #118445;
    color: #fff;
    box-shadow: 0 22px 48px rgba(24, 169, 87, 0.42);
    transform: translateY(-2px);
}

.floating-whatsapp.is-placeholder {
    background: var(--ashram-maroon);
    box-shadow: 0 18px 40px rgba(124, 31, 52, 0.28);
}

.admin-page {
    background:
        radial-gradient(circle at top left, rgba(215, 168, 75, 0.24), transparent 32rem),
        linear-gradient(135deg, #fffaf0, #ffffff);
    min-height: 100vh;
    padding: 3rem 0;
}

.admin-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--ashram-line);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
}

.admin-title {
    color: var(--ashram-deep);
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
}

.alert {
    border-radius: 0.45rem;
}

@media (max-width: 991.98px) {
    .navbar {
        background: rgba(255, 255, 255, 0.96);
        border-color: var(--ashram-line);
    }

    .hero {
        min-height: auto;
        padding-top: 7.5rem;
    }

    .hero::before {
        background:
            linear-gradient(180deg, rgba(22, 27, 34, 0.82), rgba(55, 23, 63, 0.48)),
            url("https://upload.wikimedia.org/wikipedia/commons/2/2d/Prem_Mandir%2C_Vrindavan_-_panoramio_%282%29.jpg") center / cover;
    }

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

@media (max-width: 575.98px) {
    .section-padding > .container > .row,
    .booking-wrap > .container > .row,
    .site-footer > .container > .row {
        margin-left: 0;
        margin-right: 0;
    }

    .hero {
        padding-bottom: 3rem;
    }

    .hero h1 {
        font-size: 3.1rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

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

    .section-padding {
        padding: 4rem 0;
    }

    .booking-panel {
        padding: 1rem;
    }

    .map-frame {
        height: 20rem;
    }

    .floating-whatsapp {
        bottom: 0.85rem;
        min-height: 3.25rem;
        padding: 0.78rem 0.95rem;
        right: 0.85rem;
    }

    .floating-whatsapp span {
        display: none;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 2.65rem;
    }

    .navbar-brand {
        gap: 0.5rem;
    }

    .navbar-brand span:last-child {
        font-size: 1rem;
    }
}
