/* Ayurvedic Spa Specific Styles */

/* --- EXTRACTED FROM wellness.css --- */

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--ivory-white);
}

h1 {
    font-family: 'Poiret One', sans-serif;
    font-weight: 300;
}

h1 {
    font-size: var(--fs-hero-h1) !important;
    font-weight: bold;
}

h2 {
    font-size: var(--fs-section-h2) !important;
}

h2,
h3 {
    font-family: 'Poiret One', sans-serif;
    font-weight: 300;
}

/* Hero Setup */
.hero-mini-refined {
    margin-top: 0;
    background-color: #2e2318;
    background-image: url('../Resource/wellness%20copy%202/spa/Shirodhara.jpg');
    /* Spa specific image */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    height: 60vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-mini-refined h1,
.hero-mini-refined p {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* Brand Grid & Text */
.brand-section {
    padding: 80px 5%;
}

.brand-gold-text {
    color: var(--gold-brand);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-h2 {
    font-family: 'Poiret One', cursive;
    font-size: var(--fs-section-h2);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--deep-bg);
}

/* Modal Styles */
.therapy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.therapy-modal-content {
    background: linear-gradient(145deg, #fff 0%, #f9f9f9 100%);
    border-radius: 20px;
    padding: 50px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.therapy-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 3rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.therapy-modal-close:hover {
    color: #c9a63c;
    transform: rotate(90deg);
}

.modal-image-container {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-therapy-image {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal-title {
    font-family: 'Poiret One', cursive;
    font-size: var(--fs-page-h1);
    color: #2E2318;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-divider {
    width: 80px;
    height: 3px;
    background: #c9a63c;
    margin: 0 0 25px 0;
}

.modal-description {
    font-family: 'Poppins', sans-serif;
    font-size: var(--fs-lead-p);
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.modal-benefits-title {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-lead-p);
    color: #2E2318;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.modal-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.modal-benefits-list li {
    font-family: 'Quicksand', sans-serif;
    font-size: var(--fs-body-p);
    color: var(--deep-bg);
    padding: 12px 0 12px 30px;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.modal-benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c9a63c;
    font-weight: bold;
    font-size: 1.2rem;
}

.modal-book-btn {
    width: 100%;
    padding: 15px 30px;
    background-color: #c9a63c;
    color: #2E2318;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: var(--fs-btn-text);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 15px rgba(201, 166, 60, 0.3);
}

/* --- WELLNESS DASHBOARD SYSTEM --- */
.wellness-explorer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px auto;
    padding: 10px;
    border-bottom: 1px solid rgba(201, 166, 60, 0.2);
    max-width: 1200px;
    position: sticky;
    top: 0;
    background: var(--ivory-white);
    z-index: 100;
}

.explorer-tab {
    font-family: 'Poiret One', cursive;
    font-size: var(--fs-lead-p);
    color: var(--deep-bg);
    cursor: pointer;
    background: none;
    border: none;
    padding-bottom: 15px;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0.7;
    font-weight: 600;
}

.explorer-tab.active {
    opacity: 1;
    color: var(--deep-bg);
}

.explorer-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-brand);
}

.wellness-content-panel {
    display: none;
    animation: fadeInPanel 0.8s ease forwards;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.wellness-content-panel.active {
    display: block;
}

@keyframes fadeInPanel {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wellness-feature-row {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 80px;
}

.feature-arch-frame {
    flex: 1;
    height: 450px;
    border-radius: 180px 180px 20px 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(46, 35, 24, 0.12);
}

.feature-arch-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-info {
    flex: 0.9;
}

.feature-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-section-topper);
    letter-spacing: 3px;
    color: var(--gold-brand);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.feature-title {
    font-family: 'Poiret One', cursive;
    font-size: var(--fs-page-h1);
    color: var(--deep-bg);
    margin: 0 0 20px;
}

.feature-desc {
    font-family: 'Poppins', sans-serif;
    font-size: var(--fs-lead-p);
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.feature-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.dash-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-btn-text);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.global-enquire-btn {
    background: var(--deep-bg);
    color: white;
    box-shadow: 0 5px 15px rgba(46, 35, 24, 0.2);
}

.know-more-btn {
    background: transparent;
    border: 2px solid var(--deep-bg);
    color: var(--deep-bg);
}

.rituals-compact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.ritual-item {
    background: white;
    padding: 15px 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 1px solid rgba(201, 166, 60, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 100px;
    justify-content: center;
}

.ritual-item.active {
    color: white;
    border-color: var(--gold-brand);
    box-shadow: 0 5px 15px rgba(201, 166, 60, 0.3);
    background: transparent;
}

.ritual-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gold-brand);
    z-index: 0;
    animation: pillFillLoader 6s linear forwards;
}

@keyframes pillFillLoader {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.ritual-meta {
    position: relative;
    z-index: 1;
}

.ritual-meta h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-body-p);
    margin: 0;
    color: var(--deep-bg);
    transition: color 0.4s ease;
    font-weight: 500;
}

.ritual-item.active h4 {
    color: black;
    font-weight: 600;
}

/* Accordion Styles */
.accordion-item {
    margin-top: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    color: var(--deep-bg);
    font-weight: 600;
    font-size: var(--fs-section-topper);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

/* Scroll Reveal */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .wellness-explorer-nav {
        gap: 10px;
        flex-wrap: wrap;
    }

    .explorer-tab {
        font-size: var(--fs-lead-p);
        padding: 10px;
    }

    .wellness-feature-row {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 50px;
    }

    .feature-arch-frame {
        width: 100%;
        height: 350px;
        border-radius: 120px 120px 15px 15px;
    }

    .feature-title {
        font-size: var(--fs-section-h2);
        text-align: center;
    }

    .feature-desc {
        text-align: center;
    }

    .feature-info {
        text-align: center;
        width: 100%;
    }
}