/*
 * Ported from the legacy Angular app's global src/styles.css.
 * Floating action buttons (.myBtn), the fullscreen overlay (.overlay) used by the
 * chakra / gallery lightboxes, and smooth scrolling.
 */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.myBtn {
    display: none; /* toggled to block when scrolled / on contact button */
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #d4b12d;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    font-size: 18px;
    opacity: 0.6;
    padding-bottom: 9px;
}

.myBtn:hover {
    background-color: #555;
}

.overlay {
    width: 100%;
    height: 0;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    top: 0%;
    height: 100%;
    text-align: center;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    z-index: 101;
    cursor: pointer;
}

.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.overlay a:hover,
.overlay a:focus {
    color: #f1f1f1;
}

/* Inner content pages already sit below the fixed header zone; trim their large
   section top padding so they don't leave an oversized gap under the navbar.
   (The home hero is unaffected — it doesn't use .about-area / .contact-area.) */
.about-area.pt-80 {
    padding-top: 30px;
}
.contact-area.pt-125 {
    padding-top: 45px;
}

/* Keep the 10 nav items on one line (no mid-phrase wrap like "About Guru"). */
@media (min-width: 992px) {
    .navbar .navbar-nav .nav-item {
        margin-right: 16px;
    }
    .navbar .navbar-nav .nav-item:last-child {
        margin-right: 0;
    }
    .navbar .navbar-nav .nav-item a {
        white-space: nowrap;
        font-size: 14px;
    }
}
@media (min-width: 1200px) {
    .navbar .navbar-nav .nav-item a {
        font-size: 14px;
    }
}

/* Meditation on Twin Hearts CTA widget. */
.meditation-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 320px;
    max-width: calc(100vw - 40px);
    background: #fff;
    border: 1px solid #f0e2a8;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(212, 177, 45, 0.25);
    z-index: 98;
    overflow: hidden;
    transition: transform 0.5s ease;
}
/* Peeked: slide most of it off the left edge, leaving a small hover/tap handle. */
.meditation-notification.peeked {
    transform: translateX(calc(-100% + 46px));
    cursor: pointer;
}
.meditation-close-btn {
    position: absolute;
    top: 6px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    color: #999;
    cursor: pointer;
}
.meditation-close-btn:hover {
    color: #333;
}
.meditation-notification-content {
    padding: 18px 16px 16px;
    text-align: center;
}
.meditation-header {
    margin-bottom: 6px;
}
.meditation-heart {
    font-size: 26px;
}
.meditation-intro {
    font-size: 12px;
    color: #777;
    margin: 6px 0 0;
}
.meditation-title {
    color: #d4b12d;
    font-weight: 700;
    margin: 8px 0 6px;
    font-size: 18px;
}
.meditation-info-row {
    font-size: 14px;
    color: #555;
}
.meditation-highlight {
    font-size: 13px;
    color: #444;
    margin: 8px 0 12px;
}
.meditation-zoom-btn {
    display: block;
    background: #d4b12d;
    color: #fff !important;
    font-weight: 600;
    padding: 9px 12px;
    border-radius: 8px;
    text-decoration: none;
}
.meditation-zoom-btn:hover {
    background: #b9982a;
}
.meditation-donation {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #f0e2a8;
}
.meditation-donation-title {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin: 0 0 8px;
}
.meditation-give-btn {
    display: inline-block;
    background: #fff;
    border: 1px solid #d4b12d;
    color: #d4b12d !important;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 8px;
    text-decoration: none;
}
.meditation-give-btn:hover {
    background: #d4b12d;
    color: #fff !important;
}

@media (max-width: 991px) {
    .meditation-notification {
        bottom: 20px;
        left: 20px;
        right: 20px;
        width: auto;
    }
    /* On mobile, peek by sliding down off the bottom, leaving a small handle. */
    .meditation-notification.peeked {
        transform: translateY(calc(100% - 50px));
    }
}

/*
 * Chakra grid images gently rotate clockwise, then back anticlockwise,
 * continuously. Alternating start direction (even/odd) keeps neighbours
 * out of sync so the grid feels alive rather than uniform.
 */
@keyframes chakraSpinCW {
    0%   { transform: rotate(0deg); }
    50%  { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}
@keyframes chakraSpinCCW {
    0%   { transform: rotate(0deg); }
    50%  { transform: rotate(-360deg); }
    100% { transform: rotate(0deg); }
}
.chakra {
    transform-origin: center center;
    will-change: transform;
    animation: chakraSpinCW 10s ease-in-out infinite;
}
.chakra:nth-child(even),
.row > div:nth-child(even) .chakra {
    animation-name: chakraSpinCCW;
}
@media (prefers-reduced-motion: reduce) {
    .chakra {
        animation: none;
    }
}

/*
 * Footer: symmetric three-column layout (Brand · Essential Links · Get in Touch).
 * The legacy footer styles assume a two-column form layout, so a few overrides
 * keep the columns centred and balanced.
 */
.footer-brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.footer-brand-logos a {
    display: inline-flex;
}
/* Both logos render in an identical box so they share the same height + width,
   regardless of their different intrinsic aspect ratios. */
.footer-brand-logos img,
.footer-brand-logos a img {
    height: 90px;
    width: 150px;
    object-fit: contain;
}
/* Centre the social row (override legacy first-child indent). */
.footer-logo .footer-social {
    text-align: center;
}
.footer-logo .footer-social li:first-child {
    margin-left: 15px;
}
/* Get in Touch: centred icon + text rows. */
.footer-contact-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 12px;
    color: #646464;
    font-size: 16px;
}
.footer-contact-list li i {
    font-size: 18px;
    color: #d4b12d;
}
.footer-credit-links li a {
    font-size: 15px;
}

/*===========================
   Our Team
=============================*/
.team-section {
    padding: 90px 0 110px;
}
.team-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 55px;
}
.team-heading__eyebrow {
    display: inline-block;
    font-family: "Hind", sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
    color: #d4b12d;
    margin-bottom: 10px;
}
.team-heading__title {
    font-family: "Quattrocento", serif;
    font-size: 40px;
    line-height: 1.1;
    color: #1a1a1a;
    margin: 0 0 14px;
}
.team-heading__title::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin: 16px auto 0;
    background: #d4b12d;
    border-radius: 3px;
}
.team-heading__sub {
    font-family: "Hind", sans-serif;
    font-size: 16px;
    color: #6b6b6b;
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    align-items: stretch;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1px solid #f0ece0;
    border-radius: 18px;
    padding: 34px 26px 28px;
    box-shadow: 0 10px 30px rgba(60, 50, 10, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(60, 50, 10, 0.12);
    border-color: #e6d9a8;
}

.team-card__avatar {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    flex: 0 0 auto;
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px #e9dca6;
    background: linear-gradient(135deg, #f7edcf, #efe0b0);
}
.team-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.team-card__initials {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-family: "Quattrocento", serif;
    font-size: 34px;
    font-weight: 700;
    color: #b8952a;
    letter-spacing: 1px;
}

.team-card__name {
    font-family: "Quattrocento", serif;
    font-size: 21px;
    color: #1a1a1a;
    margin: 0 0 5px;
}
.team-card__role {
    font-family: "Hind", sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #d4b12d;
    margin: 0;
    line-height: 1.45;
}
.team-card__rule {
    display: block;
    width: 42px;
    height: 2px;
    background: #eadfb8;
    border-radius: 2px;
    margin: 16px 0 16px;
}

.team-card__bio {
    position: relative;
    font-family: "Hind", sans-serif;
    font-size: 14.5px;
    line-height: 1.7;
    color: #5f5f5f;
    text-align: left;
    width: 100%;
    max-height: 9.5em;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.team-card__bio.is-expanded {
    max-height: 200em;
}
.team-card__bio:not(.is-expanded)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3em;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
    pointer-events: none;
}
.team-card__journey {
    margin: 0 0 10px;
}
.team-card__quote {
    margin: 0;
    font-style: italic;
    color: #77716a;
}

.team-card__more {
    margin-top: 14px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: "Hind", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #b8952a;
    transition: color 0.2s ease;
}
.team-card__more:hover {
    color: #8f7013;
}

.team-cta {
    text-align: center;
    margin-top: 64px;
}
.team-cta__title {
    font-family: "Quattrocento", serif;
    font-size: 24px;
    color: #1a1a1a;
    margin: 0 0 22px;
}

@media (max-width: 767px) {
    .team-section {
        padding: 60px 0 80px;
    }
    .team-heading__title {
        font-size: 30px;
    }
    .team-grid {
        gap: 22px;
    }
}

/*===========================
   Our Team — bio modal (desktop)
=============================*/
.team-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(30, 24, 6, 0.55);
    backdrop-filter: blur(4px);
    animation: teamModalFade 0.22s ease;
}
@keyframes teamModalFade {
    from { opacity: 0; }
    to { opacity: 1; }
}
.team-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 22px;
    padding: 44px 44px 40px;
    box-shadow: 0 30px 80px rgba(30, 24, 6, 0.4);
    animation: teamModalPop 0.28s cubic-bezier(0.2, 0.8, 0.25, 1);
}
@keyframes teamModalPop {
    from { opacity: 0; transform: translateY(18px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.team-modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #f6f1e3;
    color: #8f7013;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.team-modal__close:hover {
    background: #ecdfb6;
    color: #5f4a0a;
}
.team-modal__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 26px;
}
.team-modal__avatar {
    width: 130px;
    height: 130px;
    margin-bottom: 18px;
}
.team-modal__avatar .team-card__initials {
    font-size: 40px;
}
.team-modal__body {
    text-align: left;
}
.team-modal__label {
    font-family: "Hind", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 600;
    color: #d4b12d;
    margin: 22px 0 8px;
}
.team-modal__label:first-child {
    margin-top: 0;
}
.team-modal__text {
    font-family: "Hind", sans-serif;
    font-size: 15.5px;
    line-height: 1.8;
    color: #565656;
    margin: 0;
}
.team-modal__text--quote {
    font-style: italic;
    color: #726c64;
    padding-left: 16px;
    border-left: 3px solid #ecdfb6;
}

/*===========================
   What's On — classes, workshops & camps
=============================*/
.whatson-block {
    margin-top: 46px;
}
.whatson-block__title {
    font-family: "Quattrocento", serif;
    font-size: 24px;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 6px;
}
.whatson-block__title::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin: 12px auto 0;
    background: #d4b12d;
    border-radius: 3px;
}

.whatson-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 26px;
    margin-top: 34px;
}

.whatson-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    background: #fff;
    border: 1px solid #f0ece0;
    border-radius: 16px;
    padding: 26px 26px 24px;
    box-shadow: 0 10px 30px rgba(60, 50, 10, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.whatson-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(60, 50, 10, 0.12);
    border-color: #e6d9a8;
}

.whatson-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.whatson-card__tag {
    display: inline-block;
    font-family: "Hind", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 999px;
    color: #a9821c;
    background: #f7edcf;
}
.whatson-card__tag--free {
    color: #067a53;
    background: #d9f5e8;
}

.whatson-card__title {
    font-family: "Quattrocento", serif;
    font-size: 19px;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0 0 14px;
}

.whatson-card__meta {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.whatson-card__meta li {
    font-family: "Hind", sans-serif;
    font-size: 14px;
    color: #6b6b6b;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    line-height: 1.5;
}
.whatson-card__meta li i {
    color: #d4b12d;
    font-size: 15px;
    margin-top: 2px;
    width: 15px;
    text-align: center;
    flex: 0 0 auto;
}

.whatson-card__desc {
    font-family: "Hind", sans-serif;
    font-size: 14.5px;
    line-height: 1.7;
    color: #5f5f5f;
    margin: 0 0 20px;
    flex-grow: 1;
}

.whatson-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
}

.whatson-btn,
a.join {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Hind", sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.whatson-btn--primary,
a.join {
    background: #d4b12d;
    color: #fff;
    border: 1px solid #d4b12d;
}
.whatson-btn--primary:hover,
a.join:hover {
    background: #bd9c22;
    border-color: #bd9c22;
    color: #fff;
}
.whatson-btn--ghost {
    background: transparent;
    color: #a9821c;
    border: 1px solid #e0cf8f;
}
.whatson-btn--ghost:hover {
    background: #f7edcf;
    color: #8f7013;
}

/* Classes schedule table */
.whatson-table-wrap {
    margin-top: 30px;
    overflow-x: auto;
    border: 1px solid #f0ece0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(60, 50, 10, 0.05);
}
.whatson-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Hind", sans-serif;
    background: #fff;
    min-width: 520px;
}
.whatson-table thead th {
    background: #faf6ea;
    color: #a9821c;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: left;
    padding: 14px 20px;
    border-bottom: 1px solid #eee3c4;
}
.whatson-table tbody td {
    padding: 15px 20px;
    font-size: 14.5px;
    color: #4f4f4f;
    border-bottom: 1px solid #f2f2f2;
    vertical-align: top;
}
.whatson-table tbody tr:last-child td {
    border-bottom: none;
}
.whatson-table tbody tr:hover {
    background: #fcfaf3;
}
.whatson-table__by {
    color: #9a9a9a;
}
.whatson-free {
    color: #067a53;
    font-weight: 600;
}

@media (max-width: 767px) {
    .whatson-grid {
        gap: 20px;
    }
    .whatson-block__title {
        font-size: 21px;
    }
}

/*===========================
   Healing testimonials
=============================*/
.healing-section {
    margin: 20px 0 60px;
}
.healing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 26px;
    margin-top: 34px;
}
.healing-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #f0ece0;
    border-radius: 16px;
    padding: 26px 26px 22px;
    box-shadow: 0 10px 30px rgba(60, 50, 10, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.healing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(60, 50, 10, 0.12);
    border-color: #e6d9a8;
}
.healing-card__issue {
    align-self: flex-start;
    font-family: "Hind", sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.5;
    color: #a9821c;
    background: #f7edcf;
    border-radius: 10px;
    padding: 7px 13px;
    margin-bottom: 16px;
}
.healing-card__patient {
    position: relative;
    font-family: "Hind", sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #4f4f4f;
    margin: 0 0 16px;
    padding-left: 30px;
}
.healing-card__quote {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #e0c766;
}
.healing-card__healer {
    font-family: "Hind", sans-serif;
    font-size: 13.5px;
    line-height: 1.7;
    color: #6e6a63;
    background: #faf7ee;
    border-left: 3px solid #e6d9a8;
    border-radius: 0 10px 10px 0;
    padding: 12px 16px;
    margin: 0 0 18px;
}
.healing-card__healer-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #b8952a;
    margin-bottom: 5px;
}
.healing-card__by {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f2ecd9;
    font-family: "Quattrocento", serif;
    font-size: 16px;
    color: #1a1a1a;
}
.healing-card__age {
    font-family: "Hind", sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    color: #9a9a9a;
}

@media (max-width: 767px) {
    .healing-grid {
        gap: 20px;
    }
}

.healing-disclaimer {
    max-width: 760px;
    margin: 34px auto 0;
    text-align: center;
    font-family: "Hind", sans-serif;
    font-size: 13px;
    font-style: italic;
    line-height: 1.7;
    color: #9a9488;
}

/*===========================
   Photo testimonials
=============================*/
.photo-testimonials {
    margin: 40px 0 30px;
}
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 22px;
    margin-top: 30px;
}
.photo-card {
    margin: 0;
    background: #fff;
    border: 1px solid #f0ece0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(60, 50, 10, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.photo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(60, 50, 10, 0.12);
    border-color: #e6d9a8;
}
.photo-card img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
}
.photo-card figcaption {
    padding: 13px 15px;
    font-family: "Hind", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #5f5f5f;
    text-align: center;
}
