/* ==========================================================================
   Della Resorts Spa & Wellness - Main Style Sheet (Scoped & Isolated)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Pinyon+Script&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
#della-spa-page,
:root {
    --bg-cream: #F4EFE6;
    --bg-cream-light: #FAF7F2;
    --bg-dark: #0E0D0B;
    --bg-dark-card: #151412;
    --color-text-main: #2C2825;
    --color-text-muted: #666059;
    --color-gold: #D4AD68;
    --color-gold-light: #E4C88E;
    --color-gold-dark: #9A7736;
    --color-white: #FFFFFF;
    /* Typography Stack */
    --font-heading: "Figtree", "Playfair Display", sans-serif;
    --font-script: "Pinyon Script", cursive;
    --font-body: "Figtree", sans-serif;
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}


/* ==========================================================================
   Scoped Reset & Base Styles (Isolated to #della-spa-page)
   ========================================================================== */

#della-spa-page {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    position: relative;
}

#della-spa-page,
#della-spa-page *,
#della-spa-page *::before,
#della-spa-page *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#della-spa-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

#della-spa-page a {
    text-decoration: none;
    color: inherit;
}

#della-spa-page button {
    font-family: inherit;
    border: none;
    background: none;
    outline: none;
}


/* ==========================================================================
   Universal Scoped Icon Rules (Immune to External CSS Overwrites)
   ========================================================================== */

#della-spa-page svg.dspa-icon,
#della-spa-page .dspa-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    transition: all 0.3s ease;
}


/* --------------------------------------------------------------------------
   0. HERO SECTION (Video Background - Perfect Non-Distorted Aspect Ratio)
   -------------------------------------------------------------------------- */

#della-spa-page .dspa-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--color-white);
    background-color: var(--bg-dark);
}

#della-spa-page .dspa-hero-bg-video,
#della-spa-page .dspa-hero-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}


/* YouTube Hero Background Video Wrapper - Mathematical 16:9 Cover */

#della-spa-page .dspa-hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    background-color: var(--bg-dark);
}

#della-spa-page .dspa-hero-video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

#della-spa-page .dspa-hero-video-poster.hidden {
    opacity: 0;
}


/* Precise 16:9 aspect ratio calculation - No excessive zoom or cropping */

#della-spa-page .dspa-hero-video-wrapper iframe,
#della-spa-page .dspa-hero-video-wrapper #hero-youtube-player {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 100 * (9 / 16) */
    min-height: 100vh;
    min-width: 177.78vh;
    /* 100 * (16 / 9) */
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}


/* Unmute / Mute toggle button on hero video */

#della-spa-page .dspa-unmute-btn {
    position: absolute;
    bottom: 28px;
    right: 28px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 18px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    color: #FFFFFF !important;
    font-family: var(--font-body, sans-serif);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
    line-height: 1;
}

#della-spa-page .dspa-unmute-btn:hover {
    background: rgba(0, 0, 0, 0.65);
    border-color: rgba(255, 255, 255, 0.5);
}

#della-spa-page .dspa-unmute-btn .dspa-icon-unmute {
    width: 20px !important;
    height: 20px !important;
    fill: #FFFFFF !important;
    stroke: none !important;
    flex-shrink: 0;
}

#della-spa-page .dspa-hero-overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

#della-spa-page .dspa-hero-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(0deg, rgba(14, 13, 11, 0.88) 0%, rgba(14, 13, 11, 0.35) 60%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

#della-spa-page .dspa-hero-nav {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 40px;
}

#della-spa-page .dspa-hero-logo {
    width: 115px;
    height: auto;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.7));
}


/* Morphing Hamburger Menu */

#della-spa-page .dspa-hamburger-menu {
    position: absolute;
    right: 40px;
    top: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 7px;
    z-index: 1000001;
    padding: 5px;
    background: none;
    border: none;
    outline: none;
    transition: transform 0.3s ease;
}

#della-spa-page .dspa-hamburger-menu span {
    display: block;
    width: 32px;
    height: 2px;
    background-color: #FFFFFF;
    transition: transform 0.35s ease, opacity 0.35s ease, background-color 0.3s ease;
    transform-origin: center;
}

#della-spa-page .dspa-hamburger-menu:hover span {
    background-color: #D4AD68;
}


/* Open Morphing State (Turns to X) */

#della-spa-page .dspa-hamburger-menu.dspa-open {
    position: fixed;
    top: 30px;
    right: 40px;
}

#della-spa-page .dspa-hamburger-menu.dspa-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: #D4AD68;
}

#della-spa-page .dspa-hamburger-menu.dspa-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

#della-spa-page .dspa-hamburger-menu.dspa-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: #D4AD68;
}

#della-spa-page .dspa-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px 45px;
    text-align: center;
}

#della-spa-page .dspa-hero-main-title {
    font-family: var(--font-body);
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 10px;
    line-height: 1.2;
}

#della-spa-page .dspa-hero-sub-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 20px;
}

#della-spa-page .dspa-hero-paragraph {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    max-width: 920px;
    margin: 0 auto 25px;
}

#della-spa-page .dspa-hero-script-tagline {
    font-family: var(--font-script);
    font-size: 56px;
    color: #D4AD68;
    letter-spacing: 1px;
    line-height: 1.1;
    font-weight: 400;
}


/* --------------------------------------------------------------------------
   Section Container & Script Headers
   -------------------------------------------------------------------------- */

#della-spa-page .dspa-section-script-divider {
    text-align: center;
    padding: 0px;
    background-color: var(--bg-cream);
    overflow: hidden;
}

#della-spa-page .dspa-script-title {
    font-family: var(--font-script);
    font-size: 60px;
    color: #D4AD68;
    display: inline-block;
    position: relative;
    padding: 0 35px;
    letter-spacing: 0px;
    line-height: 67px;
    font-weight: 400;
}

#della-spa-page .dspa-script-title::before,
#della-spa-page .dspa-script-title::after {
    content: '';
    position: absolute;
    top: 55%;
    width: 140px;
    height: 1px;
    background-color: #D4AD68;
    opacity: 0.85;
}

#della-spa-page .dspa-script-title::before {
    right: 100%;
}

#della-spa-page .dspa-script-title::after {
    left: 100%;
}


/* --------------------------------------------------------------------------
   1. WHY Section
   -------------------------------------------------------------------------- */

#della-spa-page .dspa-why-section {
    background-color: var(--bg-cream);
    padding: 60px 20px 70px;
    text-align: center;
}

#della-spa-page .dspa-why-container {
    max-width: 920px;
    margin: 0 auto;
}

#della-spa-page .dspa-why-script-divider {
    display: inline-block;
    position: relative;
    margin-bottom: -5px;
}

#della-spa-page .dspa-why-script-top {
    font-family: var(--font-script);
    font-size: 60px;
    color: #D4AD68;
    margin-bottom: -5px;
    display: inline-block;
    position: relative;
    padding: 0 35px;
}

#della-spa-page .dspa-why-script-top::before,
#della-spa-page .dspa-why-script-top::after {
    content: '';
    position: absolute;
    top: 55%;
    width: 140px;
    height: 1px;
    background-color: #D4AD68;
    opacity: 0.85;
}

#della-spa-page .dspa-why-script-top::before {
    right: 100%;
}

#della-spa-page .dspa-why-script-top::after {
    left: 100%;
}

#della-spa-page .dspa-why-title {
    font-family: var(--font-body);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #1a1918;
    margin-bottom: 8px;
    text-transform: uppercase;
}

#della-spa-page .dspa-why-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1a1918;
    margin-top: 15px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

#della-spa-page .dspa-why-tagline {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1918;
    margin-bottom: 30px;
}

#della-spa-page .dspa-why-description {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--color-text-muted);
    font-weight: 400;
    line-height: 1.8;
    max-width: 860px;
    margin: 0 auto;
}

#della-spa-page .dspa-why-description p {
    margin-bottom: 20px;
}

#della-spa-page .dspa-why-description p:last-child {
    margin-bottom: 0;
}


/* --------------------------------------------------------------------------
   2. Feature Cards (Medical Wellness & Wellness Experiences) - CSS GRID
   -------------------------------------------------------------------------- */

#della-spa-page .dspa-cards-container {
    background-color: var(--bg-cream);
    padding: 0px 0 0px;
}

#della-spa-page .dspa-feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0px;
    max-width: 100%;
    background-color: var(--bg-cream);
    padding: 0 0px;
}

#della-spa-page .dspa-feature-card.dspa-reverse .dspa-feature-content {
    grid-column: 2;
    grid-row: 1;
}

#della-spa-page .dspa-feature-card.dspa-reverse .dspa-feature-image-wrapper {
    grid-column: 1;
    grid-row: 1;
}

#della-spa-page .dspa-feature-image-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
    border-radius: 4px;
    width: 100%;
    aspect-ratio: 1920 / 920;
    min-height: auto;
    background-color: #0E0D0B;
    touch-action: pan-y pinch-zoom;
    isolation: isolate;
    cursor: pointer;
}


/* Cinematic Video Lens Overlay (Ambient Vignette & Depth) */

#della-spa-page .dspa-video-lens-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 3;
    pointer-events: none;
}


/* Cinematic Anamorphic Light Flare Sweep */

#della-spa-page .dspa-video-flare-sweep {
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 173, 104, 0.15), rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-25deg);
    z-index: 4;
    pointer-events: none;
    transition: none;
}

#della-spa-page .dspa-feature-image-wrapper.flaring .dspa-video-flare-sweep {
    left: 220%;
    transition: left 1.1s cubic-bezier(0.2, 0.8, 0.35, 1);
}


/* Video Stage - Stacked Cross-Dissolve Video Clips */

#della-spa-page .dspa-slider-stage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


/* Individual Video Clip Slide */

#della-spa-page .dspa-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity 1.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.3s ease;
    overflow: hidden;
}

#della-spa-page .dspa-slide-item.dspa-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}


/* Cinematic Dynamic Camera Motions */

#della-spa-page .dspa-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transform: none;
    transition: opacity 1.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}


/* Motions - set to none so text/images never crop */

#della-spa-page .dspa-slide-item:nth-child(1).dspa-active img {
    transform: none;
}

#della-spa-page .dspa-slide-item:nth-child(2).dspa-active img {
    transform: none;
}

#della-spa-page .dspa-slide-item:nth-child(3).dspa-active img {
    transform: none;
}

#della-spa-page .dspa-slide-item:nth-child(4).dspa-active img {
    transform: none;
}


/* Video-Reel Progress Bar (at top of image) */

#della-spa-page .dspa-slider-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 7;
    overflow: hidden;
}

#della-spa-page .dspa-slider-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #D4AD68, #FFFFFF);
    transition: width 0.05s linear;
}


/* Play / Pause Center Button Indicator */

#della-spa-page .dspa-video-play-pause-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(14, 13, 11, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 173, 104, 0.6);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.2, 0.8, 0.4, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

#della-spa-page .dspa-feature-image-wrapper.is-paused .dspa-video-play-pause-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

#della-spa-page .dspa-feature-content {
    display: grid;
    grid-template-rows: auto auto auto;
    align-content: center;
    gap: 20px;
    padding: 40px 50px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}


/* Slider Controls Overlay inside Image */

#della-spa-page .dspa-slider-overlay-controls {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 2px;
    z-index: 6;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.35) 60%, transparent 100%);
    padding: 25px 25px 14px;
    user-select: none;
}

#della-spa-page .dspa-pagination-numbers {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

#della-spa-page .dspa-pagination-numbers span.dspa-num-item {
    cursor: pointer;
    padding: 4px 6px;
    font-size: 0.8rem;
    transition: color 0.3s, font-weight 0.3s;
}

#della-spa-page .dspa-pagination-numbers span.dspa-num-item:hover {
    color: var(--color-gold-light);
}

#della-spa-page .dspa-pagination-numbers span.dspa-num-item.dspa-active {
    color: #FFFFFF;
    font-weight: 700;
    position: relative;
}

#della-spa-page .dspa-pagination-numbers span.dspa-num-item.dspa-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-gold-light);
}

#della-spa-page .dspa-pagination-dash {
    color: var(--color-gold);
    opacity: 0.8;
    letter-spacing: -1px;
    font-weight: 400;
}


/* Slider Arrow Buttons with Isolated SVG Icons */

#della-spa-page .dspa-slider-arrows {
    display: flex;
    align-items: center;
    gap: 12px;
}

#della-spa-page .dspa-slider-arrow {
    opacity: 0.85;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    padding: 0;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

#della-spa-page .dspa-slider-arrow .dspa-arrow-icon {
    width: 16px !important;
    height: 16px !important;
    stroke: currentColor !important;
    fill: none !important;
    stroke-width: 2 !important;
}

#della-spa-page .dspa-slider-arrow:hover {
    opacity: 1;
    color: #0E0D0B;
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    transform: scale(1.1);
}

#della-spa-page .dspa-feature-title {
    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -0.99px;
    color: #1a1918;
    text-transform: uppercase;
    line-height: 38.8px;
}

#della-spa-page .dspa-feature-text {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.85;
    margin-bottom: 15px;
    font-weight: 400;
}

#della-spa-page .dspa-btn-outline {
    display: inline-block;
    justify-self: start;
    padding: 13px 30px;
    border: 1px solid rgba(0, 0, 0, 0.35);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--color-text-main);
    text-transform: uppercase;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 2px;
}

#della-spa-page .dspa-btn-outline:hover {
    background-color: #1a1918;
    color: var(--color-white);
    border-color: #1a1918;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}


/* --------------------------------------------------------------------------
   3. FAMILY WELLNESS Section
   -------------------------------------------------------------------------- */

#della-spa-page .dspa-family-wellness-section {
    position: relative;
    background: url('../assets/images/family-wellness-banner-bg.png') no-repeat center top / cover;
    padding: 90px 20px 80px;
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
}

#della-spa-page .dspa-family-wellness-content {
    position: relative;
    z-index: 2;
    max-width: 1150px;
    margin: 0 auto;
}

#della-spa-page .dspa-family-title {
    font-family: var(--font-body);
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

#della-spa-page .dspa-family-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 820px;
    margin: 0 auto 50px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
}

#della-spa-page .dspa-family-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 1050px;
    margin: 0 auto;
    margin-top: 13rem;
}

#della-spa-page .dspa-family-gallery-card {
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#della-spa-page .dspa-family-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.7);
}

#della-spa-page .dspa-family-gallery-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}


/* --------------------------------------------------------------------------
   4. SALON Section
   -------------------------------------------------------------------------- */

#della-spa-page .dspa-salon-section {
    position: relative;
    background: url('../assets/images/salon-bg.webp') no-repeat center center / cover;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#della-spa-page .dspa-salon-card-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
}

#della-spa-page .dspa-salon-title {
    font-family: var(--font-body);
    font-size: 2.8rem;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

#della-spa-page .dspa-salon-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.75;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.88);
    max-width: 820px;
    margin: 0 auto 24px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

#della-spa-page .dspa-btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 32px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--color-white) !important;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 2px;
}

#della-spa-page .dspa-btn-outline-white .dspa-btn-icon {
    width: 16px !important;
    height: 16px !important;
    fill: currentColor !important;
    stroke: none !important;
    flex-shrink: 0;
}

#della-spa-page .dspa-btn-outline-white:hover {
    background-color: var(--color-white);
    color: #1a1918 !important;
    border-color: var(--color-white);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

#della-spa-page .dspa-btn-outline-white:hover .dspa-btn-icon {
    fill: #1a1918 !important;
}


/* --------------------------------------------------------------------------
   5. RESERVE YOUR RITUAL Section
   -------------------------------------------------------------------------- */

#della-spa-page .dspa-reserve-section {
    background-color: #151513;
    color: var(--color-white);
    padding: 85px 20px 65px;
    text-align: center;
    position: relative;
}

#della-spa-page .dspa-reserve-container {
    max-width: 900px;
    margin: 0 auto;
}

#della-spa-page .dspa-reserve-logo {
    width: 95px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

#della-spa-page .dspa-reserve-title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 35px;
    color: #FFFFFF;
}

#della-spa-page .dspa-reserve-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

#della-spa-page .dspa-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    background-color: #D4AD68;
    border: 1px solid #D4AD68;
    color: #121212 !important;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: all 0.3s ease;
    text-decoration: none;
}

#della-spa-page .dspa-contact-btn:hover {
    background-color: #e4be79;
    border-color: #e4be79;
    box-shadow: 0 0 20px rgba(212, 173, 104, 0.4);
    transform: translateY(-2px);
}

#della-spa-page .dspa-contact-btn .dspa-contact-icon {
    width: 16px !important;
    height: 16px !important;
    fill: #121212 !important;
    stroke: none !important;
    flex-shrink: 0;
}

#della-spa-page .dspa-reserve-script-footer {
    font-family: var(--font-script);
    font-size: 58px;
    color: #D4AD68;
    margin-top: 15px;
    line-height: 1.1;
}


/* --------------------------------------------------------------------------
   6. FAQ Section - CSS GRID
   -------------------------------------------------------------------------- */

#della-spa-page .dspa-faq-section {
    background-color: var(--bg-cream);
    padding: 100px 20px 120px;
}

#della-spa-page .dspa-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
}

#della-spa-page .dspa-faq-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.25;
    color: #1a1918;
}

#della-spa-page .dspa-faq-accordion {
    display: flex;
    flex-direction: column;
}

#della-spa-page .dspa-faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding: 24px 0;
}

#della-spa-page .dspa-faq-item:first-child {
    padding-top: 0;
}

#della-spa-page .dspa-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-main);
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
}

#della-spa-page .dspa-faq-question:hover {
    color: var(--color-gold-dark);
}

#della-spa-page .dspa-faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
    text-align: center;
    line-height: 1;
    flex-shrink: 0;
}

#della-spa-page .dspa-faq-icon .dspa-faq-plus-icon {
    width: 18px !important;
    height: 18px !important;
    stroke: currentColor !important;
    fill: none !important;
    stroke-width: 2 !important;
}

#della-spa-page .dspa-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.75;
}

#della-spa-page .dspa-faq-item.dspa-active .dspa-faq-answer {
    max-height: 200px;
    padding-top: 15px;
}

#della-spa-page .dspa-faq-item.dspa-active .dspa-faq-icon {
    transform: rotate(45deg);
    color: var(--color-gold-dark);
}


/* ==========================================================================
   Header.php Sidebar Overlay Integration & Styling
   ========================================================================== */

#overlay.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, rgba(14, 13, 11, 0.98) 0%, rgba(21, 20, 18, 0.98) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

#overlay.overlay::-webkit-scrollbar,
#overlay .overlay-menu::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
    width: 0;
    height: 0;
}

#overlay.overlay.open,
#overlay.overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#overlay .overlay-menu {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#overlay .comman-container {
    width: 100%;
}

#overlay .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 40px;
    list-style: none;
}

#overlay .menu-drop-list {
    list-style: none;
    margin: 0 0 16px 0;
    padding: 0;
}

#overlay .drop-list-head {
    margin: 0;
    padding: 0;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.35;
    font-family: var(--font-body, "Figtree", sans-serif);
}

#overlay .drop-list-head a {
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    position: relative;
    padding: 4px 0;
}

#overlay .drop-list-head a:hover {
    color: #D4AD68;
    transform: translateX(6px);
}

#overlay .drop-list-head a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #D4AD68;
    transition: width 0.3s ease;
}

#overlay .drop-list-head a:hover::after {
    width: 100%;
}


/* Dedicated Sidebar Overlay Close Button */

.dspa-overlay-close,
#dspa-overlay-close {
    position: fixed;
    top: 30px;
    right: 40px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 173, 104, 0.5);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000005;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    outline: none;
    padding: 0;
    text-decoration: none;
}

.dspa-overlay-close:hover,
#dspa-overlay-close:hover {
    background: rgba(212, 173, 104, 0.25);
    border-color: #D4AD68;
    box-shadow: 0 0 22px rgba(212, 173, 104, 0.5);
    transform: rotate(90deg) scale(1.1);
}

.dspa-overlay-close svg,
#dspa-overlay-close svg {
    width: 20px !important;
    height: 20px !important;
    stroke: #D4AD68 !important;
    fill: none !important;
    stroke-width: 2.5 !important;
    transition: stroke 0.3s ease;
    display: block;
}

.dspa-overlay-close:hover svg,
#dspa-overlay-close:hover svg {
    stroke: #FFFFFF !important;
}


/* Hide header.php default top navbar on spa.php */

body .navbar.bg-primary,
body nav.navbar {
    display: none !important;
}


/* --------------------------------------------------------------------------
   Responsive Layout Styles
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    #della-spa-page .dspa-feature-card,
    #della-spa-page .dspa-feature-card.dspa-reverse {
        display: flex;
        flex-direction: column;
        gap: 0;
        min-height: auto;
    }
    #della-spa-page .dspa-feature-image-wrapper {
        order: 1;
        width: 100%;
    }
    #della-spa-page .dspa-feature-content {
        order: 2;
        width: 100%;
        padding: 30px 20px;
    }
    #della-spa-page .dspa-family-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 3rem;
    }
    #della-spa-page .dspa-faq-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    #overlay .row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 30px;
    }
    #overlay .drop-list-head {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    /* Hero Section Mobile (Video in 16:9 Full View + Text Underneath) */
    #della-spa-page .dspa-hero-section {
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        background-color: var(--bg-dark);
        position: relative;
    }
    #della-spa-page .dspa-hero-video-wrapper {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        background-color: var(--bg-dark);
    }
    #della-spa-page .dspa-hero-video-wrapper iframe,
    #della-spa-page .dspa-hero-video-wrapper #hero-youtube-player {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 100%;
        min-width: 100%;
        transform: none;
    }
    #della-spa-page .dspa-hero-video-poster {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #della-spa-page .dspa-hero-overlay-top,
    #della-spa-page .dspa-hero-overlay-bottom {
        display: none;
    }
    #della-spa-page .dspa-hero-nav {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10;
        padding: 15px 20px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
    }
    #della-spa-page .dspa-hero-logo {
        width: 85px;
    }
    #della-spa-page .dspa-hamburger-menu {
        right: 20px;
        top: 15px;
    }
    #della-spa-page .dspa-hamburger-menu span {
        width: 26px;
    }
    #della-spa-page .dspa-hamburger-menu.dspa-open {
        top: 15px;
        right: 20px;
    }
    #della-spa-page .dspa-hamburger-menu.dspa-open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    #della-spa-page .dspa-hamburger-menu.dspa-open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    #della-spa-page .dspa-hero-content {
        position: relative;
        z-index: 2;
        background-color: var(--bg-dark);
        padding: 30px 20px 40px;
        text-align: center;
    }
    #della-spa-page .dspa-hero-main-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    #della-spa-page .dspa-hero-sub-title {
        font-size: 0.75rem;
        letter-spacing: 1px;
        margin-bottom: 15px;
        color: rgba(255, 255, 255, 0.85);
    }
    #della-spa-page .dspa-hero-paragraph {
        font-size: 0.85rem;
        line-height: 1.65;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.8);
    }
    #della-spa-page .dspa-hero-script-tagline {
        font-size: 32px;
        line-height: 1.2;
    }
    /* WHY Section Mobile */
    #della-spa-page .dspa-why-section {
        padding: 40px 15px 50px;
    }
    #della-spa-page .dspa-why-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    #della-spa-page .dspa-script-title,
    #della-spa-page .dspa-why-script-top {
        font-size: 38px;
        line-height: 45px;
        padding: 0 10px;
    }
    #della-spa-page .dspa-script-title::before,
    #della-spa-page .dspa-script-title::after,
    #della-spa-page .dspa-why-script-top::before,
    #della-spa-page .dspa-why-script-top::after {
        width: 40px;
    }
    #della-spa-page .dspa-why-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    #della-spa-page .dspa-why-tagline {
        font-size: 0.88rem;
        margin-bottom: 20px;
    }
    #della-spa-page .dspa-why-description {
        font-size: 0.85rem;
        line-height: 1.65;
    }
    /* Feature Cards Mobile */
    #della-spa-page .dspa-feature-image-wrapper {
        min-height: auto;
        aspect-ratio: 1920 / 920;
        width: 100%;
    }
    #della-spa-page .dspa-feature-image-wrapper img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }
    #della-spa-page .dspa-feature-content {
        padding: 25px 15px;
    }
    #della-spa-page .dspa-feature-title {
        font-size: 19px;
        line-height: 28px;
        letter-spacing: 0;
    }
    #della-spa-page .dspa-feature-text {
        font-size: 0.85rem;
        line-height: 1.65;
        margin-bottom: 20px;
    }
    #della-spa-page .dspa-btn-outline {
        padding: 10px 22px;
        font-size: 0.7rem;
    }
    #della-spa-page .dspa-video-play-pause-btn {
        width: 46px;
        height: 46px;
    }
    #della-spa-page .dspa-video-play-pause-btn svg {
        width: 18px;
        height: 18px;
    }
    #della-spa-page .dspa-slider-overlay-controls {
        left: 0px;
        right: 0px;
        bottom: 0px;
        padding: 16px 12px 8px;
        font-size: 0.65rem;
    }
    #della-spa-page .dspa-pagination-numbers {
        gap: 6px;
        overflow-x: auto;
        max-width: 70%;
        white-space: nowrap;
    }
    #della-spa-page .dspa-pagination-numbers span.dspa-num-item {
        padding: 2px 4px;
        font-size: 0.72rem;
    }
    #della-spa-page .dspa-slider-arrows {
        gap: 8px;
    }
    #della-spa-page .dspa-slider-arrow {
        width: 28px;
        height: 28px;
    }
    #della-spa-page .dspa-slider-arrow .dspa-arrow-icon {
        width: 14px !important;
        height: 14px !important;
    }
    #della-spa-page .dspa-pagination-numbers::-webkit-scrollbar {
        display: none;
    }
    /* Family Wellness Mobile */
    #della-spa-page .dspa-family-wellness-section {
        padding: 60px 15px 50px;
        min-height: auto;
    }
    #della-spa-page .dspa-family-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    #della-spa-page .dspa-family-subtitle {
        font-size: 0.82rem;
        margin-bottom: 25px;
    }
    #della-spa-page .dspa-family-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 1.5rem;
    }
    #della-spa-page .dspa-family-gallery-card img {
        height: 220px;
    }
    /* Salon Section Mobile */
    #della-spa-page .dspa-salon-section {
        height: 380px;
    }
    #della-spa-page .dspa-salon-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    #della-spa-page .dspa-btn-outline-white {
        padding: 9px 24px;
        font-size: 0.7rem;
    }
    /* Reserve Section Mobile */
    #della-spa-page .dspa-reserve-section {
        padding: 50px 15px 40px;
    }
    #della-spa-page .dspa-reserve-title {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    #della-spa-page .dspa-reserve-contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 30px;
    }
    #della-spa-page .dspa-contact-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        font-size: 0.75rem;
        padding: 11px 20px;
    }
    #della-spa-page .dspa-reserve-script-footer {
        font-size: 38px;
    }
    /* FAQ Section Mobile */
    #della-spa-page .dspa-faq-section {
        padding: 60px 15px 70px;
    }
    #della-spa-page .dspa-faq-title {
        font-size: 2rem;
        text-align: center;
    }
    #della-spa-page .dspa-faq-question {
        font-size: 0.88rem;
    }
    #della-spa-page .dspa-faq-answer {
        font-size: 0.82rem;
    }
    /* Overlay Mobile (Clean & Compact with Hidden Scrollbar) */
    #overlay.overlay {
        align-items: flex-start;
        padding: 55px 18px 25px !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    #overlay.overlay::-webkit-scrollbar,
    #overlay .overlay-menu::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    #overlay .comman-container {
        padding: 0 !important;
        margin: 0 !important;
    }
    #overlay .row {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        margin: 0 !important;
    }
    #overlay .col-lg-4,
    #overlay .col-md-4,
    #overlay .col-sm-4,
    #overlay .col-12 {
        padding: 0 !important;
        margin: 0 !important;
    }
    #overlay .menu-drop-list {
        margin: 0 0 5px 0 !important;
        padding: 0 !important;
    }
    #overlay .drop-list-head {
        font-size: 0.92rem !important;
        line-height: 1.2 !important;
        margin: 0 !important;
    }
    #overlay .drop-list-head a {
        padding: 3px 0 !important;
        font-size: 0.92rem !important;
        letter-spacing: 0.5px !important;
    }
    .dspa-overlay-close,
    #dspa-overlay-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }
    .dspa-overlay-close svg,
    #dspa-overlay-close svg {
        width: 16px !important;
        height: 16px !important;
    }
}

@media (max-width: 480px) {
    #della-spa-page .dspa-hero-main-title {
        font-size: 1.35rem;
    }
    #della-spa-page .dspa-hero-script-tagline {
        font-size: 28px;
    }
    #della-spa-page .dspa-script-title,
    #della-spa-page .dspa-why-script-top {
        font-size: 30px;
        line-height: 36px;
    }
    #della-spa-page .dspa-script-title::before,
    #della-spa-page .dspa-script-title::after,
    #della-spa-page .dspa-why-script-top::before,
    #della-spa-page .dspa-why-script-top::after {
        display: none;
    }
    #della-spa-page .dspa-feature-title {
        font-size: 17px;
        line-height: 24px;
    }
    #della-spa-page .dspa-reserve-script-footer {
        font-size: 32px;
    }
}