/* ============================================================
   A+ Salon — Custom Stylesheet
   Colors: Dark #111  |  Cream #f5f0ea  |  Gold #c9a87a
   Fonts:  Cormorant Garamond (headings) | Montserrat (body)
   ============================================================ */

:root {
    --dark:    #111111;
    --dark-2:  #1a1a1a;
    --cream:   #f5f0ea;
    --light:   #faf8f5;
    --gold:    #c9a87a;
    --gold-dk: #a8855a;
    --white:   #ffffff;
    --text:    #333333;
    --text-lt: #888888;
    --font-head: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* ---- Section backgrounds ---- */
.section-dark  { background: var(--dark);  color: var(--white); }
.section-cream { background: var(--cream); }
.section-light { background: var(--light); }

/* ---- Typography helpers ---- */
.section-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.section-dark .section-label { color: var(--gold); }
.section-cream .section-label,
.section-light .section-label { color: var(--gold-dk); }

.section-heading {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.2rem;
}
.section-dark .section-heading { color: var(--white); }

.section-heading em,
.text-gold-italic {
    font-style: italic;
    color: var(--gold);
}

.text-gold { color: var(--gold) !important; }

/* ---- Buttons ---- */
.btn-gold {
    background: var(--gold);
    color: var(--dark);
    border: 1px solid var(--gold);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 0;
    transition: background .25s, color .25s;
}
.btn-gold:hover {
    background: var(--gold-dk);
    border-color: var(--gold-dk);
    color: var(--white);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 0;
    transition: background .25s, color .25s;
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--dark);
}

.btn-outline-light-custom {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 0;
    transition: background .25s, color .25s;
}
.btn-outline-light-custom:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-outline-gold-lg {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 0;
    transition: background .25s, color .25s;
}
.btn-outline-gold-lg:hover {
    background: var(--gold);
    color: var(--dark);
}

.btn-outline-dark-custom {
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--dark);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 20px;
    transition: background .25s, color .25s;
}
.btn-outline-dark-custom:hover {
    background: var(--dark);
    color: var(--white);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
    padding: 5px 0;
    background: transparent !important;
    transition: padding .3s, background .4s, box-shadow .3s;
}
#mainNav.scrolled {
    padding: 5px 0;
    background: #000 !important;
    box-shadow: 0 2px 20px rgba(0,0,0,.5);
}

.brand-logo {
    font-family: var(--font-head);
    font-size: 44px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}
.brand-logo sup {
    font-size: 22px;
    top: -10px;
}
.brand-text {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 8px;
    color: var(--white);
    display: block;
    margin-top: -4px;
}
.navbar-brand {
    line-height: 1;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.brand-logo-img {
    height: 100px;
    width: auto;
    transition: height .3s;
}
#mainNav.scrolled .brand-logo-img {
    height: 50px;
}

.navbar-dark .navbar-nav .nav-link {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    padding: 6px 14px;
    transition: color .2s;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
    position: relative;
    background: var(--dark-2);
    min-height: 100vh;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(17,17,17,.95) 45%, rgba(17,17,17,.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-slogan {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-heading {
    font-family: var(--font-head);
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 18px;
}
.hero-heading em {
    font-style: italic;
    color: var(--gold);
}

.hero-divider {
    width: 42px;
    height: 2px;
    background: var(--gold);
    margin: 20px 0;
}

.hero-sub {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,.7);
    max-width: 380px;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-image-col {
    order: -1;
    width: 100%;
    padding-top: 78px;
    pointer-events: none;
}

.hero-model-img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(.92);
}

.hero-text {
    position: relative;
    z-index: 3;
}

@media (min-width: 768px) {
    .hero-image-col {
        position: absolute;
        right: 0;
        bottom: 0;
        top: 110px;
        width: 50%;
        padding-top: 0;
        order: 0;
        z-index: 1;
    }

    .hero-model-img {
        position: absolute;
        bottom: 0;
        right: -190px;
        height: 100%;
        width: auto;
    }
}


/* ============================================================
   ABOUT
   ============================================================ */
.about-section { padding: 100px 0; }

.about-img-wrap {
    position: relative;
}
.about-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.about-text {
    font-size: 13.5px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.about-signature {
    font-family: var(--font-head);
    font-style: italic;
    font-size: 22px;
    color: var(--dark);
    margin: 0;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-left: 20px;
    border-left: 1px solid rgba(0,0,0,.1);
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-feature-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold-dk);
    font-size: 15px;
}

.about-feature-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.5;
    color: var(--text);
    margin: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { padding: 90px 0; }

.services-col-heading {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 28px;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 0;
    /* border-bottom: 1px solid rgba(255,255,255,.06); */
    font-size: 12.5px;
}

.price-name { color: rgba(255,255,255,.8); white-space: nowrap; }
.price-dots { flex: 1; border-bottom: 1px dotted rgba(255,255,255,.2); margin: 0 6px; min-width: 20px; }
.price-cost  { color: var(--gold); font-weight: 600; white-space: nowrap; }

.services-logo-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.badge-aplus {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}
.badge-aplus sup { font-size: 14px; top: -4px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { padding: 90px 0; }

.gallery-strip {
    display: flex;
    gap: 8px;
    overflow: hidden;
    padding: 0 24px;
}
.gallery-item {
    flex: 1;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.gallery-item a { display: block; height: 100%; }
.gallery-item:hover img { transform: scale(1.04); cursor: pointer; }

.gallery-placeholder-item {
    aspect-ratio: 3 / 4;
    background: #e8e3dd;
}

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-section { padding: 90px 0; }

.why-icon-wrap {
    width: 62px;
    height: 62px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--white);
    font-size: 20px;
}

.why-title {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
}

.why-text {
    font-size: 12.5px;
    color: rgba(255,255,255,.55);
    line-height: 1.75;
    max-width: 190px;
    margin: 0 auto;
}

/* ============================================================
   MAP
   ============================================================ */
.map-section {
    line-height: 0;
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    height: 420px;
    display: block;
    filter: grayscale(20%);
}

@media (max-width: 767.98px) {
    .map-section iframe { height: 280px; }
}

/* ============================================================
   BOOK CTA
   ============================================================ */
.cta-section {
    position: relative;
    background: var(--dark-2);
    padding: 100px 0;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,122,.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-overlay { display: none; }

.cta-content { position: relative; z-index: 1; }

.cta-heading {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
}
.cta-heading em { font-style: italic; color: var(--gold); }

.cta-sub {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 90px 0; }

.testimonials-carousel-wrap {
    position: relative;
    padding: 0 56px;
}

.testimonial-card {
    background: var(--white);
    padding: 36px 28px;
    text-align: center;
    height: 100%;
}

.stars { color: var(--gold); font-size: 13px; letter-spacing: 4px; }

.testimonial-text {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.75;
    color: var(--dark);
    margin-bottom: 18px;
}

.testimonial-name {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-lt);
    margin: 0;
}

.tcarousel-prev,
.tcarousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 13px;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
    z-index: 10;
}
.tcarousel-prev { left: 0; }
.tcarousel-next { right: 0; }
.tcarousel-prev:hover,
.tcarousel-next:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-section { padding-top: 70px; }

.footer-col-pad { padding: 72px 48px 60px; }

.footer-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
}
.footer-brand-name {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 12.5px;
    color: rgba(255,255,255,.5);
    line-height: 1.7;
    max-width: 240px;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    font-size: 13px;
    text-decoration: none;
    transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col-title {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-contact-list li a,
.footer-contact-list li span {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255,255,255,.65);
    font-size: 12.5px;
    line-height: 1.6;
    text-decoration: none;
    transition: color .2s;
}
.footer-contact-list li a:hover { color: var(--gold); }
.footer-contact-list li i {
    color: var(--gold);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-map iframe {
    display: block;
    width: 100%;
    opacity: .8;
    filter: grayscale(40%) invert(90%) hue-rotate(180deg);
}

.footer-watermark {
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}
.footer-watermark-text {
    font-family: var(--font-head);
    font-size: 48px;
    font-weight: 700;
    color: rgba(255,255,255,.12);
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1;
    max-width: 100%;
    word-break: break-word;
}
.footer-wm-img {
    width: 220px;
    height: auto;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-bottom: 28px;
    font-size: 11px;
    color: rgba(255,255,255,.3);
    letter-spacing: 1px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .hero-section { min-height: 100svh; }
    .about-section { padding: 70px 0; }
    .about-features { padding-left: 0; border-left: none; border-top: 1px solid rgba(0,0,0,.1); padding-top: 28px; flex-direction: row; flex-wrap: wrap; gap: 20px; }
    .about-feature-item { flex: 1 1 130px; }
    .services-logo-badge { margin: 20px auto; }
    .testimonials-carousel-wrap { padding: 0 48px; }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section { min-height: 80vh; }
    .hero-section .min-vh-100 { min-height: 80vh !important; }
}

@media (max-width: 991.98px) {
    /* Gallery — tablet: 3 columns */
    .gallery-strip { flex-wrap: wrap; }
    .gallery-item { flex: 1 1 30%; }

    /* Footer — center all columns on tablet/mobile */
    .footer-section .col-lg-4 { text-align: center; }
    .footer-tagline { justify-self: center; }
    .footer-brand { align-items: center; }
    .footer-social { justify-content: center; }
    .footer-contact-list li a,
    .footer-contact-list li span { justify-content: center; }
}

@media (max-width: 767.98px) {
    /* Gallery — mobile: 2 columns */
    .gallery-item { flex: 1 1 45%; }

    .hero-heading { font-size: 2.2rem; }
    .services-col-heading { font-size: 1.5rem; }
    .testimonials-carousel-wrap { padding: 0 44px; }
    .testimonial-card { padding: 28px 20px; }

    /* Hero text — centered on mobile */
    .hero-text {
        text-align: center;
        padding: 24px 16px 40px;
    }
    .hero-divider { margin: 20px auto; }
    .hero-sub { margin: 0 auto; }
    .hero-btns { justify-content: center; }
    .hero-btns .btn { margin-right: 0 !important; }

    .brand-logo-img,
    #mainNav.scrolled .brand-logo-img { height: 70px; }
}

