/* ============================================================
   index.css – page-specific styles for Home (index.html)
   ============================================================ */

:root {
    --bg: #ece7e4;
    --section-bg: #f5f0eb;
}

/* Override nav box-shadow for home page (lighter border) */
nav {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 1px 0 rgba(168,129,91,0.12);
}

/* ── HERO ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    background: url('../images/home_banner.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Warm golden overlay matching the design (light at top, warm tan at bottom) */
.hero-overlay {
    position: absolute;
    inset: 0;
   /* background: linear-gradient(180deg, rgba(72,50,30,0.10) 0%, rgba(98,68,40,0.28) 55%, rgba(140,100,60,0.52) 100%);*/
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 clamp(20px,5vw,60px);
    max-width: 900px;
}

.hero-quote {
    font-family: var(--font-serif);
    font-size: clamp(34px,6vw,82px);
    font-weight: 400;
    color: #fff;
    line-height: 1.08;
    margin-bottom: clamp(14px,2.5vh,24px);
}

    .hero-quote em {
        font-style: italic;
        color: #e7d2b0;
    }
/* cream-gold italic line, per design */
.hero-sub {
    font-family: var(--font-sans);
    font-size: clamp(10px,1.1vw,13px);
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: clamp(26px,4vh,46px);
}

.hero-locations {
    display: flex;
    flex-direction: column;
    gap: clamp(10px,1.6vh,14px);
    align-items: center;
}
/* Pill-shaped serif buttons, width hugging the text – per design */
.hero-btn {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.85);
    border-radius: 999px;
    color: #fff;
    font-family: var(--font-serif);
    font-size: clamp(14px, 1.3vw, 17px);
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 9px clamp(26px, 3vw, 40px) 10px;
    max-width: 100%;
    text-decoration: none;
    text-align: center;
    background: rgba(255,255,255,0.02);
    transition: all 0.25s;
}

    .hero-btn:hover {
        background: rgba(255,255,255,0.18);
        border-color: #fff;
    }

/* ── TREATMENTS ── */
.treatments {
    background: var(--section-bg);
    padding: clamp(70px,9vw,130px) clamp(20px,5vw,80px);
}

.treatments-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px,6vw,100px);
    align-items: start;
}

.treatments-title {
    font-family: var(--font-serif);
    font-size: clamp(36px,4.5vw,62px);
    font-weight: 500;
    color: var(--gold-bright);
    line-height: 1.08;
    margin-bottom: clamp(28px,4vw,48px);
}

.treatment-item {
    border-top: 1px solid rgba(160,122,86,0.22);
    padding: clamp(18px,2.5vw,28px) 0;
}

    .treatment-item:last-of-type {
        border-bottom: 1px solid rgba(160,122,86,0.22);
    }

.treatment-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.treatment-name {
    font-family: var(--font-serif);
    font-size: clamp(16px,1.8vw,22px);
    font-weight: 700;
    color: var(--gold-bright);
    text-transform: capitalize;
}

.treatment-price {
    font-family: var(--font-serif);
    font-size: clamp(16px,1.8vw,22px);
    font-weight: 700;
    color: var(--gold-bright);
}

.treatment-desc {
    font-family: var(--font-sans);
    font-size: 12px;
    color: #666;
    line-height: 1.65;
    max-width: 340px;
}

.explore-btn {
    display: inline-block;
    margin-top: clamp(24px,3vw,40px);
    background: var(--gold-bright);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 13px 32px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.2s;
}

    .explore-btn:hover {
        background: #8a6442;
    }

.treatments-right img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}

/* ── COLLAGE (playful floating gallery, Paint Box style) ── */
.collage-section {
    background: var(--bg) url('../images/collage_bg.png') center/cover no-repeat;
    padding: clamp(30px,4vw,56px) clamp(20px,5vw,80px);
    overflow: hidden;
}

.collage-inner {
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    /* locks the whole composition to the same proportions as the reference
     design, so every piece's %-based position/size scales together
     instead of drifting apart at different viewport widths */
    aspect-ratio: 799 / 351;
}

.collage-piece {
    position: absolute;
    will-change: transform;
    transition: transform 0.35s ease, filter 0.35s ease;
    filter: drop-shadow(0 14px 24px rgba(90,67,45,0.16));
}

    .collage-piece:hover {
        filter: drop-shadow(0 20px 34px rgba(90,67,45,0.28)) brightness(1.04);
    }

    .collage-piece img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
        animation: collageFloat 7s ease-in-out infinite;
    }

/* Glossy shine sweep across the gold brush stroke — repeats every few
   seconds like light catching wet nail polish. */
.collage-brush-gold {
    position: absolute;
    overflow: hidden;
}

    .collage-brush-gold::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.55) 46%, rgba(255,255,255,0.15) 54%, transparent 70%);
        background-size: 260% 100%;
        background-position: 140% 0;
        mix-blend-mode: screen;
        pointer-events: none;
        animation: collageShine 4.5s ease-in-out infinite;
        animation-delay: 1.2s;
    }

@keyframes collageShine {
    0%, 40% {
        background-position: 140% 0;
    }

    70%, 100% {
        background-position: -40% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .collage-brush-gold::after {
        animation: none;
    }
}

.collage-brush-bronze {
    left: 4%;
    top: 15%;
    width: 22%;
    aspect-ratio: 262 / 123;
    z-index: 1;
}

    .collage-brush-bronze img {
        animation-delay: 0.4s;
    }

.collage-brush-gold {
    left: 13%;
    top: 5%;
    width: 25%;
    aspect-ratio: 322 / 137;
    z-index: 2;
}

    .collage-brush-gold img {
        animation-delay: 0.4s;
    }

.collage-hand-center {
    left: 28%;
    top: 5%;
    width: 31%;
    aspect-ratio: 374 / 370;
    z-index: 4;
}

    .collage-hand-center img {
        animation-delay: 0.2s;
    }

.collage-hand-topright {
    left: 65%;
    top: 4%;
    width: 27%;
    aspect-ratio: 272 / 262;
    z-index: 3;
}

    .collage-hand-topright img {
        animation-delay: 0.9s;
    }

.collage-hand-bottomleft {
    left: 3%;
    top: 46%;
    width: 19%;
    aspect-ratio: 181 / 232;
    z-index: 3;
}

    .collage-hand-bottomleft img {
        animation-delay: 1.4s;
    }

.collage-drop {
    left: 40%;
    top: 54%;
    width: 27%;
    aspect-ratio: 277 / 161;
    z-index: 5;
}

    .collage-drop img {
        animation-delay: 1.7s;
    }

@keyframes collageFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .collage-piece img {
        animation: none;
    }
}

@media (max-width: 600px) {
    /* Composition gets busy at very narrow widths — nudge pieces to overlap
     less instead of shrinking below legibility */
    .collage-hand-topright {
        width: 34%;
    }

    .collage-hand-bottomleft {
        width: 24%;
    }
}


.social-section {
    background: var(--bg);
    padding: clamp(70px,9vw,120px) clamp(20px,5vw,80px);
}

.social-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px,6vw,100px);
    align-items: start;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 4px;
}

.gallery-cell {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--gold-light);
}

    .gallery-cell img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

    .gallery-cell:hover img {
        transform: scale(1.07);
    }

.gallery-handle {
    margin-top: 10px;
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--text);
}

.follow-title {
    font-family: var(--font-serif);
    font-size: clamp(30px,4vw,54px);
    font-weight: 500;
    color: var(--gold-bright);
    line-height: 1.1;
    margin-bottom: clamp(26px,3.5vw,42px);
}

.follow-label {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 5px;
}

.follow-name {
    font-family: var(--font-serif);
    text-decoration: none;
    font-size: clamp(18px,2vw,26px);
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}
    .follow-name a {
        text-decoration: none;
        color: #1a1a1a;
    }
    .follow-divider {
        width: 80px;
        height: 1px;
        background: rgba(160,122,86,0.3);
        margin: 22px 0;
    }

.hours-title {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 14px;
}

.hours-text {
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--text);
    line-height: 2.1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ── REVIEWS ── */
.reviews {
    background: var(--section-bg);
    padding: clamp(70px,9vw,110px) clamp(20px,5vw,80px);
    text-align: center;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: clamp(22px,3vw,34px);
}

.star {
    font-size: clamp(28px,4vw,48px);
    color: var(--gold-bright);
}

.review-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(20px,2.6vw,32px);
    font-weight: 500;
    color: var(--text);
    max-width: 680px;
    margin: 0 auto clamp(18px,2.5vw,28px);
    line-height: 1.4;
}

.reviewer-name {
    font-family: var(--font-serif);
    font-size: clamp(16px,1.8vw,24px);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.review-date {
    font-family: var(--font-sans);
    font-size: 11px;
    color: var(--gold-bright);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.review-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d9d9d9;
    cursor: pointer;
}

    .dot.active {
        width: 11px;
        height: 11px;
        background: var(--gold-bright);
    }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .treatments-inner {
        grid-template-columns: 1fr;
    }

    .treatments-right {
        order: -1;
    }

        .treatments-right img {
            aspect-ratio: 4/3;
        }

    .social-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 560px;
    }

    .hero-btn {
        font-size: 13px;
        letter-spacing: 0.12em;
        padding: 8px 22px 9px;
    }

    .hero-sub {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}
