/* Home Page style */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,600;0,700;1,400;1,700&family=Jost:wght@300;400;500&display=swap');

:root {
    --blue-black:  #111518;
    --dark-blue:   #2D3238;
    --steel-grey:  #737D87;
    --ice-silver:  #C4CCD4;
    --cool-white:  #F0F4F7;
    --powder-blue: #6A9FBF;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--blue-black);
}

.section_label {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--powder-blue);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin: 0 0 14px 0;
}

/* <Hero Section> */
.hero {
    height: 92vh;
    background-image: url('/Recourses/Imgs/salon_hero_bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(17, 21, 24, 0.52);
}

.hero_content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.hero_logo {
    max-width: 340px;
    width: 50%;
}

.hero_cta {
    display: inline-flex;
    align-items: center;
    padding: 13px 34px;
    border: 1px solid rgba(196, 204, 212, 0.38);
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cool-white);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.hero_cta:hover {
    background: rgba(106, 159, 191, 0.18);
    border-color: rgba(106, 159, 191, 0.6);
}

/* <Intro Section> */
.intro_section {
    background-color: var(--dark-blue);
    border-top: 1px solid rgba(196, 204, 212, 0.06);
    padding: 96px 80px;
    box-sizing: border-box;
}

.intro_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Photo column */
.intro_photo {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.75s ease, transform 0.75s ease;
    border-radius: 12px;
    overflow: hidden;
}

.intro_photo.visible {
    opacity: 1;
    transform: translateY(0);
}

.intro_photo img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.intro_photo:hover img {
    transform: scale(1.03);
}

/* ── Text column ── */
.intro_text {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.75s ease 0.18s, transform 0.75s ease 0.18s;
}

.intro_text.visible {
    opacity: 1;
    transform: translateY(0);
}

.intro_text h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--cool-white);
    letter-spacing: 0.02em;
    margin: 0 0 24px 0;
    line-height: 1.1;
}

.intro_text h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background-color: var(--powder-blue);
    margin-top: 16px;
}

.intro_text p {
    font-family: 'Jost', sans-serif;
    font-size: 0.98rem;
    font-weight: 300;
    color: var(--steel-grey);
    line-height: 1.85;
    margin: 0 0 32px 0;
}

.intro_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--powder-blue);
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}

.intro_link:hover {
    color: var(--cool-white);
    gap: 14px;
}

/* <About Section> */
.about_section {
    background-color: var(--blue-black);
    border-top: 1px solid rgba(196, 204, 212, 0.08);
    padding: 96px 80px;
    box-sizing: border-box;
}

.about_inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Bio block */
.about_bio {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: start;
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.about_bio.visible {
    opacity: 1;
    transform: translateY(0);
}

.about_bio_text h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--cool-white);
    letter-spacing: 0.02em;
    margin: 0 0 28px 0;
    line-height: 1.1;
}

.about_bio_text h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--powder-blue);
}

.about_bio_text h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background-color: var(--powder-blue);
    margin-top: 16px;
}

.about_bio_text p {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--steel-grey);
    line-height: 1.85;
    margin: 0 0 18px 0;
}

/* Stats column */
.about_bio_stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 1px solid rgba(196, 204, 212, 0.12);
    padding-left: 48px;
    min-width: 180px;
    align-self: center;
}

.stat {
    display: flex;
    flex-direction: column;
    padding: 28px 0;
    border-bottom: 1px solid rgba(196, 204, 212, 0.08);
}

.stat:last-child {
    border-bottom: none;
}

.stat_number {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--cool-white);
    line-height: 1;
    margin-bottom: 6px;
}

.stat_label {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--steel-grey);
}

/* <Services Section> */
.services_section {
    background-color: var(--dark-blue);
    border-top: 1px solid rgba(196, 204, 212, 0.08);
    padding: 96px 80px;
    box-sizing: border-box;
}

.services_inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.services_header {
    text-align: center;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.services_header.visible {
    opacity: 1;
    transform: translateY(0);
}

.services_header h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--cool-white);
    letter-spacing: 0.02em;
    margin: 0 0 12px 0;
    line-height: 1.15;
}

.services_sub {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--steel-grey);
    line-height: 1.8;
    margin: 0;
}

/* Two-column layout */
.services_layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 72px;
    align-items: start;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.services_layout.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Price List */
.price_list h3 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cool-white);
    letter-spacing: 0.02em;
    margin: 0 0 8px 0;
}

.price_list h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--powder-blue);
    margin-top: 12px;
    margin-bottom: 32px;
}

.price_items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.price_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(196, 204, 212, 0.07);
    gap: 16px;
    transition: background-color 0.2s ease;
}

.price_item:first-child {
    border-top: 1px solid rgba(196, 204, 212, 0.07);
}

.price_name {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--ice-silver);
    letter-spacing: 0.04em;
    flex: 1;
}

.price_value {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--cool-white);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

/* Refill sub-row */
.price_item--refill {
    padding: 9px 0 9px 12px;
    border-bottom-style: dashed;
}

.price_item--refill .price_name {
    font-size: 0.82rem;
    color: var(--steel-grey);
    font-style: italic;
}

.price_item--refill .price_value {
    font-size: 0.92rem;
    color: var(--ice-silver);
    font-weight: 400;
}

.price_note {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--steel-grey);
    line-height: 1.7;
    margin: 20px 0 0 0;
    opacity: 0.7;
}

.price_note a {
    color: var(--powder-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.price_note a:hover {
    color: var(--cool-white);
}

/* Lashes Featured */
.lash_feature {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 24px;
    align-items: start;
}

/* Treatment list */
.lash_feature_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(196, 204, 212, 0.09);
    border-radius: 12px;
    overflow: hidden;
}

.lash_feature_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(196, 204, 212, 0.07);
    transition: background 0.2s ease, color 0.2s ease;
    position: relative;
}

.lash_feature_item:last-child {
    border-bottom: none;
}

.lash_feature_item span {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--steel-grey);
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
}

.lash_feature_item i {
    font-size: 0.65rem;
    color: var(--steel-grey);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.lash_feature_item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.lash_feature_item:hover span {
    color: var(--ice-silver);
}

.lash_feature_item:hover i {
    opacity: 0.5;
}

.lash_feature_item.active {
    background: rgba(106, 159, 191, 0.08);
    border-left: 2px solid var(--powder-blue);
}

.lash_feature_item.active span {
    font-weight: 500;
    color: var(--cool-white);
}

.lash_feature_item.active i {
    opacity: 1;
    color: var(--powder-blue);
    transform: translateX(2px);
}

/* Feature panel */
.lash_feature_panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lash_feature_img_wrap {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(196, 204, 212, 0.09);
}

.lash_feature_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% 45%;
    display: block;
    transition: opacity 0.25s ease;
}

.lash_feature_img.fading {
    opacity: 0;
}

.lash_feature_name {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cool-white);
    letter-spacing: 0.02em;
    margin: 0;
}

.lash_feature_desc {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--steel-grey);
    line-height: 1.8;
    margin: 0;
}


/* <Testimonials Section> */
.testimonials_section {
    background-color: var(--blue-black);
    border-top: 1px solid rgba(196, 204, 212, 0.08);
    padding: 96px 80px;
    box-sizing: border-box;
}

.testimonials_inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

/* Header */
.testimonials_header {
    text-align: center;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.testimonials_header.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonials_header h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--cool-white);
    letter-spacing: 0.02em;
    margin: 0 0 16px 0;
    line-height: 1.15;
}

.testimonials_header h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--powder-blue);
}

.testimonials_header h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background-color: var(--powder-blue);
    margin: 16px auto 0;
}

.testimonials_sub {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--steel-grey);
    line-height: 1.8;
    margin: 0 auto;
    max-width: 560px;
}

/* 3-column */
.testimonials_grid {
    columns: 3;
    column-gap: 24px;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.testimonials_grid.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Individual card */
.testimonial_card {
    break-inside: avoid;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(196, 204, 212, 0.09);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.35);
    border-color: rgba(106, 159, 191, 0.22);
}

/* Opening quote mark */
.testimonial_quote_icon {
    font-size: 1.5rem;
    color: var(--powder-blue);
    opacity: 0.35;
    line-height: 1;
}

/* Review body */
.testimonial_text {
    font-family: 'Jost', sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--ice-silver);
    line-height: 1.85;
    margin: 0;
    flex: 1;
}

/* Footer — stars + author */
.testimonial_footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(196, 204, 212, 0.07);
}

/* Star row */
.testimonial_stars {
    display: flex;
    gap: 4px;
}

.testimonial_stars i {
    font-size: 0.76rem;
    color: #D4A843;
}

/* Author row */
.testimonial_author {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.testimonial_name {
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--cool-white);
    letter-spacing: 0.03em;
}



/* <Booking Call to action> */
.booking_cta_section {
    background-color: var(--dark-blue);
    border-top: 1px solid rgba(196, 204, 212, 0.08);
    padding: 96px 80px;
    box-sizing: border-box;
    text-align: center;
}

.booking_cta_inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.booking_cta_inner h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--cool-white);
    letter-spacing: 0.02em;
    margin: 0;
    line-height: 1.15;
}

.booking_cta_inner h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--powder-blue);
}

.booking_cta_inner h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background-color: var(--powder-blue);
    margin: 16px auto 0;
}

.booking_cta_inner p {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--steel-grey);
    line-height: 1.8;
    margin: 0;
}

.booking_cta_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    margin-top: 8px;
    border: 1px solid var(--powder-blue);
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--powder-blue);
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.booking_cta_btn:hover {
    background: var(--powder-blue);
    color: var(--blue-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(106, 159, 191, 0.25);
}

/* <Hero Scroll Cue> */
.hero_scroll {
    position: absolute;
    bottom: 52px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: var(--ice-silver);
    font-size: 1.5rem;
    opacity: 0.55;
    text-decoration: none;
    animation: scrollBounce 2s ease-in-out infinite;
    transition: opacity 0.25s ease, color 0.25s ease;
}

.hero_scroll:hover {
    opacity: 0.9;
    color: var(--powder-blue);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(9px); }
}

/* <Responsive Breakpoints> */

/* Extra Large (≥1600px) */
@media (min-width: 1600px) {
    .intro_section {
        padding: 120px 120px;
    }

    .intro_inner {
        gap: 100px;
    }

    .about_section,
    .services_section {
        padding: 120px 120px;
    }

    .intro_text h2 {
        font-size: 3.4rem;
    }

    .about_bio_text h2,
    .services_header h2 {
        font-size: 3.2rem;
    }

    .stat_number {
        font-size: 2.8rem;
    }

    .lash_feature_item {
        padding: 18px 24px;
    }

    .testimonials_section,
    .booking_cta_section {
        padding: 120px 120px;
    }

    .testimonials_header h2,
    .booking_cta_inner h2 {
        font-size: 3.2rem;
    }
}

/* Tablet Landscape (≤1024px) */
@media (max-width: 1024px) {
    .intro_section {
        padding: 72px 48px;
    }

    .intro_inner {
        gap: 56px;
    }

    .about_section,
    .services_section {
        padding: 72px 48px;
    }

    .about_inner {
        gap: 64px;
    }

    .intro_text h2 {
        font-size: 2.6rem;
    }

    .about_bio_text h2,
    .services_header h2 {
        font-size: 2.4rem;
    }

    .services_layout {
        gap: 48px;
    }

    .lash_feature {
        gap: 16px;
    }

    .testimonials_section,
    .booking_cta_section {
        padding: 72px 48px;
    }

    .testimonials_header h2,
    .booking_cta_inner h2 {
        font-size: 2.4rem;
    }
}

/* Tablet Portrait / Large Mobile (≤768px) */
@media (max-width: 768px) {
    /* Intro — stack photo above text */
    .intro_section {
        padding: 64px 32px;
    }

    .intro_inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro_photo img {
        aspect-ratio: 4 / 3;
    }

    .intro_text h2 {
        font-size: 2.2rem;
    }

    /* About */
    .about_section,
    .services_section {
        padding: 64px 32px;
    }

    .about_inner {
        gap: 56px;
    }

    .about_bio {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about_bio_text h2 {
        font-size: 2rem;
    }

    /* Stats — horizontal row below bio text */
    .about_bio_stats {
        flex-direction: row;
        justify-content: space-around;
        border-left: none;
        border-top: 1px solid rgba(196, 204, 212, 0.12);
        padding-left: 0;
        padding-top: 32px;
        margin-top: 32px;
        min-width: unset;
        gap: 0;
    }

    .stat {
        flex: 1;
        align-items: center;
        text-align: center;
        padding: 0 16px;
        border-bottom: none;
        border-right: 1px solid rgba(196, 204, 212, 0.08);
    }

    .stat:last-child {
        border-right: none;
    }

    /* Testimonials + booking Call to action */
    .testimonials_section,
    .booking_cta_section {
        padding: 64px 32px;
    }

    .testimonials_inner {
        gap: 48px;
    }

    .testimonials_header h2,
    .booking_cta_inner h2 {
        font-size: 2.2rem;
    }

    .testimonials_grid {
        columns: 2;
        column-gap: 20px;
    }

    /* Services header */
    .services_header h2 {
        font-size: 2rem;
    }

    /* Services layout */
    .services_inner {
        gap: 56px;
    }

    .services_layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Lashes Feature */
    .lash_feature {
        grid-template-columns: 1fr;
    }

    .lash_feature_panel {
        order: -1;
    }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
    .intro_section {
        padding: 48px 24px;
    }

    .intro_inner {
        gap: 32px;
    }

    .intro_text h2 {
        font-size: 2rem;
    }

    .about_section,
    .services_section {
        padding: 48px 24px;
    }

    .about_bio_text h2 {
        font-size: 1.9rem;
    }

    .services_header h2 {
        font-size: 1.9rem;
    }

    /* Stats */
    .about_bio_stats {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 0;
        margin-top: 0;
        border-top: none;
    }

    .stat {
        align-items: flex-start;
        text-align: left;
        padding: 18px 0;
        border-right: none;
        border-bottom: 1px solid rgba(196, 204, 212, 0.07);
    }

    .stat:first-child {
        border-top: 1px solid rgba(196, 204, 212, 0.12);
        margin-top: 24px;
    }

    .stat_number {
        font-size: 2rem;
    }

    /* Hero logo slightly smaller */
    .hero_logo {
        max-width: 260px;
        width: 72%;
    }

    .about_inner {
        gap: 48px;
    }

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

    .services_inner {
        gap: 40px;
    }

    /* Lashes feature */
    .lash_feature_panel {
        gap: 12px;
    }

    .lash_feature_name {
        font-size: 1.05rem;
    }

    /* Testimonials + booking Call to action */
    .testimonials_section,
    .booking_cta_section {
        padding: 48px 24px;
    }

    .testimonials_header h2,
    .booking_cta_inner h2 {
        font-size: 2rem;
    }

    .testimonials_grid {
        columns: 1;
    }

    .testimonial_card {
        padding: 24px;
        margin-bottom: 16px;
    }

}
