/* ==================================================
BASE SALON & MASSAGE
LUXURY STYLESHEET
PART 1
================================================== */

/* ==================================================
ROOT VARIABLES
================================================== */

:root {

  --bg: #f8f5f0;
  --white: #ffffff;
  --black: #111111;
  --text: #555555;

  --gold: #c7a76c;
  --gold-light: #d9bc88;

  --border: rgba(0, 0, 0, .08);

  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 40px;

  --shadow-sm:
    0 10px 30px rgba(0, 0, 0, .04);

  --shadow-md:
    0 20px 60px rgba(0, 0, 0, .08);

  --transition:
    .45s cubic-bezier(.19, 1, .22, 1);

  --container:
    1400px;

}


.accordion-header,
.accordion-header:link,
.accordion-header:visited,
.accordion-header:active,
.accordion-header:focus {

    color: #111 !important;

    text-decoration: none;

    -webkit-tap-highlight-color: transparent;

}

.accordion-header span{

    color: var(--gold) !important;

}



/* ==================================================
RESET
================================================== */

*{
    -webkit-tap-highlight-color: transparent;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {

  font-family: 'Inter', sans-serif;

  background: var(--bg);

  color: var(--black);

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
}

section {
  position: relative;
}

/* ==================================================
TYPOGRAPHY
================================================== */

h1,
h2,
h3,
h4 {

  font-family:
    'Cormorant Garamond',
    serif;

  font-weight: 600;

  line-height: 1.05;

}

.section-heading {

  text-align: center;

  margin-bottom: 90px;

}

.section-heading span {

  display: block;

  color: var(--gold);

  text-transform: uppercase;

  letter-spacing: 3px;

  margin-bottom: 12px;

  font-size: .85rem;

}

.section-heading h2 {

    font-size:
    clamp(2.2rem, 4vw, 4.2rem);

    line-height: 1.15;

    max-width: 900px;

    margin: 0 auto;

}

/* ==================================================
PRELOADER
================================================== */

#preloader {

  position: fixed;

  inset: 0;

  background: #090909;

  display: flex;

  justify-content: center;
  align-items: center;

  z-index: 99999;

}

.preloader-inner {

  text-align: center;

}

.preloader-inner h1 {

  color: white;

  font-size: 7rem;

  letter-spacing: 10px;

}

.preloader-inner span {

  display: block;

  width: 220px;
  height: 1px;

  background: var(--gold);

  margin: 20px auto;

}

.preloader-inner p {

  color: white;

  letter-spacing: 4px;

}




/* ==================================================
CURSOR
================================================== */

.cursor {

  position: fixed;

  width: 24px;
  height: 24px;

  border-radius: 50%;

  border:
    1px solid rgba(199, 167, 108, .7);

  background:
    rgba(199, 167, 108, .08);

  backdrop-filter: blur(4px);

  pointer-events: none;

  z-index: 9999;

  transform:
    translate(-50%, -50%);

}

/* ==================================================
PROGRESS BAR
================================================== */

.progress-bar {

  position: fixed;

  top: 0;
  left: 0;

  width: 0%;

  height: 3px;

  background: var(--gold);

  z-index: 9999;

}

/* ==================================================
WHATSAPP BUTTON
================================================== */

.whatsapp-btn {

  position: fixed;

  right: 30px;
  bottom: 30px;

  z-index: 900;

  width: 65px;
  height: 65px;

  border-radius: 50%;

  background: var(--gold);

  color: white;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: .75rem;

  font-weight: 600;

  box-shadow:
    0 15px 40px rgba(0, 0, 0, .15);

  transition: var(--transition);

}

.whatsapp-btn:hover {

  transform:
    translateY(-6px);

}

/* ==================================================
HEADER
================================================== */

.header {

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  padding: 28px 7%;

  display: flex;

  justify-content: space-between;
  align-items: center;

  z-index: 1000;

  transition: .4s;

  color: white;

}

.header.scrolled {

  background:
    rgba(255, 255, 255, .75);

  backdrop-filter:
    blur(20px);

  color: var(--black);

  border-bottom:
    1px solid rgba(0, 0, 0, .05);

}

.logo {

  font-size: 2.2rem;

  letter-spacing: 2px;

}

/* ==================================================
DESKTOP NAVIGATION
================================================== */

.desktop-nav {

  display: flex;

  gap: 50px;

}

.desktop-nav a {

  position: relative;

  text-transform: uppercase;

  font-size: .9rem;

  letter-spacing: 1px;

}

.desktop-nav a::after {

  content: '';

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0;
  height: 1px;

  background: var(--gold);

  transition: .3s;

}

.desktop-nav a:hover::after {

  width: 100%;

}

/* ==================================================
BURGER
================================================== */

.burger {

  width: 42px;
  height: 42px;

  background: none;
  border: none;

  position: relative;

  cursor: pointer;

  display: none;

  z-index: 2000;

}

.burger span {

  position: absolute;

  width: 28px;
  height: 2px;

  background: white;

  left: 7px;

  transition: .4s;

}

.header.scrolled .burger span{

    background:#111;

}

.burger span:nth-child(1) {
  top: 12px;
}

.burger span:nth-child(2) {
  top: 20px;
}

.burger span:nth-child(3) {
  top: 28px;
}

/* ==================================================
BURGER ACTIVE STATE
================================================== */

.burger.active span:nth-child(1) {

  transform:
    rotate(45deg);

  top: 20px;

}

.burger.active span:nth-child(2) {

  opacity: 0;

}

.burger.active span:nth-child(3) {

  transform:
    rotate(-45deg);

  top: 20px;

}


/* ==================================================
MOBILE MENU
================================================== */

.mobile-menu {

  position: fixed;

  inset: 0;

  background: #111111;

  z-index: 1500;

  transform:
    translateY(-100%);

  transition:
    .8s cubic-bezier(.19, 1, .22, 1);

  display: flex;

  justify-content: center;
  align-items: center;

}

.mobile-menu.active {

  transform:
    translateY(0);

}

.mobile-inner {

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 25px;

}

.mobile-inner a {

  color: white;

  font-size: 3rem;

  font-family:
    'Cormorant Garamond',
    serif;

}

.mobile-contact {

  margin-top: 50px;

  text-align: center;

  color: var(--gold);

}

/* ==================================================
HERO
================================================== */

/* ==================================================
NEW HERO
================================================== */

.hero {

    min-height: 100vh;

    background:
    linear-gradient(
        135deg,
        #050505 0%,
        #0f0f0f 40%,
        #161616 100%
    );

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    padding:120px 8%;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(
        circle at top right,
        rgba(199,167,108,.12),
        transparent 35%
    );

}

.hero-container{

    width:100%;

    max-width:1600px;

    margin:auto;

    display:grid;

    grid-template-columns:
    1.1fr .9fr;

    gap:100px;

    align-items:center;

    position:relative;

    z-index:2;

}

.hero-tag{

    display:block;

    color:var(--gold);

    letter-spacing:6px;

    margin-bottom:35px;

    font-size:.85rem;

}

.hero-logo{

    color:white;

    font-size:
    clamp(7rem,12vw,12rem);

    line-height:.8;

    letter-spacing:4px;

}

.hero-line{

    width:120px;

    height:1px;

    background:var(--gold);

    margin:40px 0;

}

.hero-subtitle{

    color:white;

    font-size:2.3rem;

    margin-bottom:25px;

}

.hero-description{

    color:
    rgba(255,255,255,.65);

    max-width:550px;

    line-height:2;

    font-size:1.05rem;

    margin-bottom:45px;

}

.hero-buttons{

    justify-content:flex-start;
}

.hero-image{

    height:780px;

    border-radius:30px;

    overflow:hidden;

    position:relative;

    box-shadow:
    0 30px 100px rgba(0,0,0,.5);

}

.hero-image::after{

    content:'';

    position:absolute;

    inset:20px;

    border:
    1px solid rgba(199,167,108,.35);

    border-radius:20px;

}

.hero-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    filter:
    brightness(.92)
    contrast(1.05);

}



.eyebrow {

  text-transform: uppercase;

  letter-spacing: 4px;

  color: var(--gold);

  margin-bottom: 20px;

}



.hero-title span {

  display: block;

  font-size:
    clamp(1.4rem, 3vw, 2.3rem);

  font-weight: 300;

  margin-top: 15px;

}


/* ==================================================
BUTTONS
================================================== */

.hero-buttons {

  display: flex;

  justify-content: flex-start;

  align-items: center;

  gap: 20px;

  flex-wrap: wrap;

}

.btn {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 18px 38px;

  border-radius: 999px;

  background: var(--gold);

  color: white;

  transition: var(--transition);

  font-weight: 500;

}

.btn:hover {

  background:
    var(--gold-light);

  transform:
    translateY(-4px);

}

.btn-outline {

  background: transparent;

  border:
    1px solid rgba(255, 255, 255, .4);

}

.btn-outline:hover {

  background: white;

  color: black;

}

/* ==================================================
ORB EFFECTS
================================================== */

.orb {

  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(90px);

  z-index: 1;

}



/* ==================================================
SCROLL INDICATOR
================================================== */


.scroll-indicator::before {

  content: '';

  position: absolute;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: white;

  left: 50%;

  transform:
    translateX(-50%);

  animation:
    scrollIndicator 2s infinite;

}

@keyframes scrollIndicator {

  0% {
    top: 10px;
    opacity: 1;
  }

  100% {
    top: 30px;
    opacity: 0;
  }

}

/* ==================================================
ABOUT
================================================== */

.about {

  padding:
    180px 8%;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 100px;

  align-items: center;

}

.about-image {

  overflow: hidden;

  border-radius:
    var(--radius-lg);

}

.about-image img {

  height: 700px;

  object-fit: cover;

  transition: 1s;

}

.about-image:hover img {

  transform: scale(1.08);

}

.section-tag {

  display: inline-block;

  color: var(--gold);

  text-transform: uppercase;

  letter-spacing: 2px;

  margin-bottom: 20px;

}

.about-content h2 {

  font-size:
    clamp(3rem, 6vw, 5rem);

  margin-bottom: 30px;

}

.about-content p {

  line-height: 2;

  font-size: 1.1rem;

  color: var(--text);

  max-width: 650px;

}

/* ==================================================
SERVICES
================================================== */

.services {

  padding: 180px 8%;

  background: var(--white);

}

.service-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:35px;

}

.service-card {

  position: relative;

  overflow: hidden;

  background:
    linear-gradient(145deg,
      #ffffff,
      #f4f1eb);

  border-radius: 32px;

  padding: 40px;

  box-shadow:
    0 15px 50px rgba(0, 0, 0, .05);

  transition: var(--transition);

}

.service-card:hover {

  transform:
    translateY(-10px);

}

.service-number {

  position: absolute;

  right: 30px;
  top: 10px;

  font-size: 5rem;

  color:
    rgba(199, 167, 108, .15);

}

.service-card h3 {

  font-size: 2.2rem;

  margin-bottom: 30px;

}

.service-card ul {

  display: flex;

  flex-direction: column;

  gap: 14px;

}

.service-card li {

  padding-bottom: 14px;

  border-bottom:
    1px solid rgba(0, 0, 0, .05);

}

/* ==================================================
HORIZONTAL SHOWCASE
================================================== */



/* ==================================================
STATEMENT
================================================== */



/* ==================================================
PRICING
================================================== */

.pricing {

  padding: 180px 8%;

  background: var(--white);

}

.accordion {

  max-width: 1100px;

  margin: auto;

}

.accordion-item {

  overflow: hidden;

  border-radius: 24px;

  background: white;

  margin-bottom: 20px;

  box-shadow:
    0 15px 50px rgba(0, 0, 0, .05);

}

.accordion-header {

  width: 100%;

  background: white;

  border: none;

  display: flex;

  justify-content: space-between;
  align-items: center;

  padding: 30px;

  cursor: pointer;

  font-size: 1.2rem;

  font-weight: 600;

}

.accordion-header span {

  font-size: 2rem;

  color: var(--gold);

  transition: .4s;

}

.accordion-item.active .accordion-header span {

  transform:
    rotate(45deg);

}

.accordion-content {

  max-height: 0;

  overflow: hidden;

  transition:
    max-height .6s ease;

}

.accordion-item.active .accordion-content {

  max-height: 3000px;

}

.price-row {

  display: flex;

  justify-content: space-between;

  padding: 22px 30px;

  border-top:
    1px solid rgba(0, 0, 0, .05);

}



/* ==================================================
TESTIMONIALS
================================================== */

.testimonials {

  padding: 180px 0;

  background: #111;

  overflow: hidden;

}

.testimonials .section-heading h2 {

  color: white;

}

.testimonial-track {

  display: flex;

  gap: 40px;

  width: max-content;

  padding-left: 8%;

}

.testimonial-card {

  width: 450px;

  padding: 50px;

  background:
    rgba(255, 255, 255, .06);

  border:
    1px solid rgba(255, 255, 255, .08);

  backdrop-filter:
    blur(20px);

  border-radius: 30px;

}

.testimonial-card p {

  color: white;

  line-height: 1.9;

  margin-bottom: 20px;

}

.testimonial-card h4 {

  color: var(--gold);

}

/* ==================================================
GALLERY
================================================== */

/* ==================================================
GALLERY
================================================== */

.gallery{

    padding:180px 8%;
    background:var(--white);

}

.gallery-grid{

    columns:3;
    column-gap:24px;

}

.gallery-grid div{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    margin-bottom:24px;

    cursor:pointer;

    break-inside:avoid;

    background:#f5f5f5;

}

.gallery-grid img{

    width:100%;

    display:block;

    transition:
    transform 1.2s ease,
    filter .8s ease;

    transform:scale(1.08);

}

.gallery-grid div:hover img{

    transform:scale(1.15);

}

.gallery-grid div::after{

    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.18),
        transparent 60%
    );

    opacity:0;

    transition:.4s;

}

.gallery-grid div:hover::after{

    opacity:1;

}
/* ==================================================
CTA
================================================== */

.cta {

  padding: 220px 8%;

  text-align: center;

  background: #111;

  color: white;

}

.cta h2 {

  font-size:
    clamp(3rem, 8vw, 7rem);

  margin-bottom: 20px;

}

.cta p {

  max-width: 700px;

  margin: auto;

  margin-bottom: 40px;

  line-height: 1.9;

  color:
    rgba(255, 255, 255, .8);

}

/* ==================================================
CONTACT
================================================== */

.contact {

  padding: 180px 8%;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 80px;

  background: white;

}

.contact-info h2 {

  font-size:
    clamp(3rem, 6vw, 5rem);

  margin-bottom: 30px;

}

.contact-info p {

  margin-bottom: 15px;

  font-size: 1.1rem;

}

.contact form {

  display: flex;

  flex-direction: column;

}

.contact input,
.contact textarea {

  border: none;

  background: #f3f3f3;

  padding: 20px;

  border-radius: 18px;

  margin-bottom: 20px;

  font-size: 1rem;

  font-family: 'Inter', sans-serif;

}

.contact textarea {

  resize: none;

  height: 180px;

}

/* ==================================================
FOOTER
================================================== */

footer {

  background: #111;

  color: white;

  padding: 140px 8% 50px;

}

.footer-grid {

  display: grid;

  grid-template-columns:
    2fr 1fr 1fr 1fr;

  gap: 60px;

  padding-bottom: 80px;

}

.footer-grid h3 {

  font-size: 3rem;

  margin-bottom: 20px;

}

.footer-grid h4 {

  color: var(--gold);

  margin-bottom: 25px;

}

.footer-grid a {

  display: block;

  margin-bottom: 12px;

  color: #d1d1d1;

  transition: .3s;

}

.footer-grid a:hover {

  color: var(--gold);

  padding-left: 6px;

}

.footer-grid p {

  color: #bcbcbc;

  line-height: 1.8;

}

.footer-bottom {

  border-top:
    1px solid rgba(255, 255, 255, .08);

  padding-top: 40px;

  display: flex;

  justify-content: space-between;
  align-items: center;

  color: #888;

}

/* ==================================================
UTILITY CLASSES
================================================== */

.reveal {

  opacity: 0;

  transform:
    translateY(60px);

}

.glass {

  background:
    rgba(255, 255, 255, .08);

  backdrop-filter:
    blur(20px);

  border:
    1px solid rgba(255, 255, 255, .08);

}

.gold-text {

  color: var(--gold);

}

.center {

  text-align: center;

}

/* ==================================================
SELECTION
================================================== */

::selection {

  background:
    var(--gold);

  color: white;

}

/* ==================================================
SCROLLBAR
================================================== */

::-webkit-scrollbar {

  width: 10px;

}

::-webkit-scrollbar-track {

  background: #f0ece5;

}

::-webkit-scrollbar-thumb {

  background: var(--gold);

  border-radius: 50px;

}

::-webkit-scrollbar-thumb:hover {

  background:
    var(--gold-light);

}

/* ==================================================
BUTTON RIPPLE
================================================== */

.btn {
  position: relative;
  overflow: hidden;
  
}

.ripple {

  position: absolute;

  border-radius: 50%;

  transform: scale(0);

  animation: ripple .6s linear;

  background:
    rgba(255, 255, 255, .35);

  pointer-events: none;

}

@keyframes ripple {

  to {

    transform: scale(4);

    opacity: 0;

  }

}

h1,
h2,
h3{

    text-wrap: balance;

}

.experience{

    padding:80px 8%;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.experience-content{

    max-width:600px;

}

.experience-content h2{

    font-size:
    clamp(2.5rem,5vw,4.8rem);

    line-height:1.1;

    margin-bottom:25px;

}

.experience-content p{

    margin-bottom:35px;

    line-height:1.9;

    color:var(--text);

}

.experience-list{

    display:flex;

    flex-direction:column;

    gap:14px;

    margin-bottom:35px;

}

.experience-image{

    border-radius:30px;

    overflow:hidden;

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);

}

.experience-image img{

    width:100%;

    height:500px;

    object-fit:cover;

    display:block;

}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.4),
        0 0 30px rgba(212,175,55,0.08);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;

    /* Luxury dark effect */
    filter:
        grayscale(100%)
        brightness(0.65)
        contrast(1.15)
        saturate(0);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;

    background: rgba(15,15,15,0.9);
    color: #d4af37;

    padding: 10px 18px;
    border-radius: 999px;

    border: 1px solid rgba(212,175,55,0.3);

    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.map-address {
    text-align: center;
    padding-top: 24px;
}

.pin {
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.map-address h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.map-address p {
    color: rgba(255,255,255,0.7);
    line-height: 1.9;
    letter-spacing: 0.5px;
}

.footer-credit {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-credit a {
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-credit a:hover {
    color: #f5d76e;
    text-shadow: 0 0 10px rgba(212,175,55,0.5);
}

/* ==========================================
CONTACT INFO UPGRADE
========================================== */

.contact-info h2{

    margin-bottom:40px;

}

.contact-service{

    display:flex;

    align-items:center;

    gap:20px;

    padding:25px;

    margin-bottom:20px;

    border-radius:24px;

    background:white;

    box-shadow:
    0 10px 40px rgba(0,0,0,.05);

    transition:.3s;

}

.contact-service:hover{

    transform:translateY(-4px);

}

.service-icon{

    width:70px;
    height:70px;

    border-radius:50%;

    background:
    rgba(199,167,108,.12);

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:1.5rem;

    color:var(--gold);

}

.contact-service h3{

    margin-bottom:8px;

    font-size:1.5rem;

}

.contact-number{

    color:var(--gold);

    font-size:1.3rem;

    font-weight:600;

}

.contact-details{

    margin-top:35px;

    color:#666;

    line-height:1.9;

}

/* ==================================================
FAQ SECTION
================================================== */

.faq-section{
    padding:180px 8%;
    background:linear-gradient(
        180deg,
        #ffffff,
        #f8f5f0
    );

    position:relative;
    z-index:999;
}

.faq-container{
    max-width:1000px;
    margin:80px auto 0;
    position:relative;
    z-index:999;
}

.faq-item{
    background:#fff;
    margin-bottom:20px;
    border-radius:24px;
    overflow:hidden;

    box-shadow:
    0 10px 40px rgba(0,0,0,.05);

    transition:
    box-shadow .3s ease;
}

.faq-item:hover{
    box-shadow:
    0 20px 60px rgba(0,0,0,.08);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    outline:none;
    cursor:pointer;

    padding:30px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    text-align:left;
    color:#111;

    position:relative;
    z-index:1000;

    pointer-events:auto;

    -webkit-appearance:none;
    appearance:none;
}

.faq-question span:first-child{
    font-size:1.15rem;
    font-weight:600;
    line-height:1.5;
}

.faq-icon{
    width:42px;
    height:42px;

    min-width:42px;

    border-radius:50%;

    background:rgba(199,167,108,.12);

    color:var(--gold);

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:1.5rem;

    transition:transform .3s ease;

    pointer-events:none;
}

.faq-answer{
    max-height:0;
    overflow:hidden;

    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 30px 30px;
    line-height:1.9;
    color:#666;
    margin:0;
}

.faq-item.active .faq-icon{
    transform:rotate(45deg);
}

/* DESKTOP */

@media(min-width:769px){

    .faq-question{
        padding:35px;
    }

    .faq-answer p{
        padding:0 35px 35px;
    }

}