/* Salon World Theme - Main CSS v1.1.0 (Fixed & Cleaned) */

:root{
  --gold:#C9A84C;
  --gold-light:#E8C97A;
  --dark:#0A0A0A;
  --dark2:#111111;
  --dark3:#1A1A1A;
  --dark4:#222222;
  --muted:#888888;
  --light:#CCCCCC;
  --white:#FFFFFF
}

/* ── BASE ── */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;text-size-adjust:100%}

body{
  background:var(--dark);
  color:var(--light);
  font-family:'Outfit',sans-serif;
  font-weight:300;
  overflow-x:hidden;
  font-size:16px;
  line-height:1.6;
  width:100%;
  max-width:100vw
}

body::before{
  content:'';
  position:fixed;
  inset:0;
  z-index:-1;
  background:
    repeating-linear-gradient(180deg,transparent 0px,transparent 2px,rgba(255,255,255,.018) 2px,rgba(255,255,255,.018) 3px),
    repeating-linear-gradient(179deg,transparent 0px,transparent 8px,rgba(255,255,255,.009) 8px,rgba(255,255,255,.009) 9px),
    linear-gradient(180deg,#080808 0%,#0a0a0a 50%,#060606 100%);
  pointer-events:none
}

::-webkit-scrollbar{width:4px}
::-webkit-scrollbar-track{background:var(--dark2)}
::-webkit-scrollbar-thumb{background:var(--gold);border-radius:2px}

h1,h2,h3,h4,h5,h6{
  font-family:'Cormorant Garamond',serif;
  font-weight:300;
  color:var(--white);
  line-height:1.1;
  word-wrap:break-word;
  overflow-wrap:break-word
}

a{color:var(--gold);text-decoration:none;transition:color .3s}
a:hover{color:var(--gold-light)}

p{color:var(--light);margin-bottom:1rem}

img{max-width:100%;height:auto;display:block}

/* ── NAV ── */
#mainNav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  padding:1.1rem 0;
  transition:background .4s,padding .4s
}

#mainNav.scrolled{
  background:rgba(8,8,8,.95);
  backdrop-filter:blur(20px);
  padding:.65rem 0;
  border-bottom:1px solid rgba(201,168,76,.18)
}

.nav-logo img{height:42px;width:auto;object-fit:contain;filter:brightness(0) invert(1)}

/* ── HERO ── */
#home{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  text-align:center;
  width:100%
}

.hero-photo{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center top;
  background-repeat:no-repeat
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.72) 0%,rgba(0,0,0,.55) 40%,rgba(0,0,0,.82) 100%)
}

.hero-glow{
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse 70% 50% at 50% 100%,rgba(201,168,76,.12) 0%,transparent 70%);
  pointer-events:none
}

.hero-content{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

/* Eyebrow (single clean version) */
.hero-eyebrow{
  font-family:'Outfit',sans-serif;
  font-size:clamp(.78rem,1.8vw,.95rem);
  font-weight:400;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:rgba(220,220,220,.9);
  margin-bottom:1.25rem;
  opacity:0;
  animation:fadeUp .8s ease .2s forwards
}

/* Title */
.hero-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.6rem,10vw,8.5rem);
  font-weight:300;
  line-height:.95;
  color:var(--white);
  margin-bottom:.8rem;
  opacity:0;
  animation:fadeUp .8s ease .5s forwards
}

.hero-sub{
  font-size:clamp(.78rem,1.8vw,.95rem);
  letter-spacing:.1em;
  color:rgba(220,220,220,.85);
  text-transform:uppercase;
  margin-bottom:2.5rem;
  opacity:0;
  animation:fadeUp .8s ease .68s forwards
}

.hero-tagline{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:clamp(1rem,2.4vw,1.3rem);
  color:rgba(230,230,230,.92);
  margin-bottom:.5rem;
  opacity:0;
  animation:fadeUp .8s ease .58s forwards
}

.hero-distributor{
  font-size:clamp(.72rem,1.6vw,.85rem);
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:2.25rem;
  opacity:0;
  animation:fadeUp .8s ease .7s forwards
}

/* Buttons */
.hero-actions{
  display:flex;
  justify-content:center;
  gap:.75rem;
  flex-wrap:wrap;
  opacity:0;
  animation:fadeUp .8s ease .85s forwards
}

.btn-hero{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  padding:.85rem 1.75rem;
  white-space:nowrap
}

.btn-hero-primary{
  background:var(--gold);
  color:var(--dark)
}

.btn-hero-outline{
  border:1px solid rgba(255,255,255,.35);
  color:var(--white);
  background:transparent
}

/* ── SECTIONS ── */
section{padding:6.5rem 0;width:100%}

/* ── ANIMATION ── */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(22px)}
  to{opacity:1;transform:translateY(0)}
}

/* ── BEAUTY GARAGE LOGO (centered, wrap fills full hero width) ── */
.bgl-wrap{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:0 auto 1.6rem;
  opacity:0;
  animation:fadeUp .8s ease .35s forwards;
}
.bgl-wrap img{
  display:block;
  height:34px;
  width:auto;
  max-width:180px;
  margin:0 auto;
  padding:.5rem 1.1rem;
  background:#ffffff;
  border-radius:3px;
  box-sizing:content-box;
  filter:none;
  object-fit:contain;
}

/* ── SCROLL REVEAL ── */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}
.reveal.d1{transition-delay:.05s}
.reveal.d2{transition-delay:.15s}
.reveal.d3{transition-delay:.25s}
.reveal.d4{transition-delay:.35s}

@media (prefers-reduced-motion: reduce){
  .reveal,.hero-eyebrow,.hero-title,.hero-sub,.hero-actions,.bgl-wrap{
    animation:none !important;
    transition:none !important;
    opacity:1 !important;
    transform:none !important;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════ */

/* Large desktops / wide screens */
@media(min-width:1400px){
  .hero-title{font-size:clamp(3rem,9vw,9rem)}
}

/* Laptops / small desktops */
@media(max-width:1199px){
  section{padding:5.5rem 0}
}

/* Tablets (landscape) */
@media(max-width:991px){
  section{padding:4.5rem 0}
  .hero-title{font-size:clamp(2.4rem,9vw,6rem)}
  .btn-app{width:100%;max-width:320px}
}

/* Tablets (portrait) / large phones */
@media(max-width:767px){
  section{padding:3.75rem 0}
  .hero-eyebrow{letter-spacing:.18em}
  .hero-title{font-size:clamp(2.2rem,10vw,4.5rem);margin-bottom:.6rem}
  .hero-sub{margin-bottom:1.75rem}
  .hero-actions{
    flex-direction:column;
    width:100%;
    align-items:center;
  }
  .btn-hero{width:100%;max-width:300px}
  .bgl-wrap img{height:36px;max-width:190px}
  .section-title{font-size:clamp(1.8rem,7vw,2.6rem)}
}

/* Mobile phones */
@media(max-width:575px){
  body{font-size:15px}
  #mainNav{padding:.85rem 0}
  .nav-logo img{height:34px}
  .hero-content{padding:0 .5rem}
  .hero-eyebrow{font-size:.68rem;letter-spacing:.14em;margin-bottom:1rem}
  .bgl-wrap img{height:30px;max-width:160px;padding:.4rem .85rem}
  .hero-title{font-size:clamp(1.9rem,11vw,3.4rem);line-height:1.02}
  .hero-tagline,.hero-distributor{font-size:.82rem}
  section{padding:3rem 0}
  .benefit-card,.product-card,.testimonial-card{padding:1.35rem}
}

/* Very small phones */
@media(max-width:359px){
  .hero-title{font-size:1.7rem}
  .btn-hero{font-size:.66rem;padding:.75rem 1.25rem}
}

/* Landscape phones (short viewport height) */
@media(max-height:480px) and (orientation:landscape){
  #home{min-height:auto;padding:6.5rem 0 3rem}
  .hero-content{min-height:auto}
}

/* ══════════════════════════════════════
   HERO DECORATIVE RINGS
   ══════════════════════════════════════ */
.hero-ring{
  position:absolute;
  border:1px solid rgba(201,168,76,.15);
  border-radius:50%;
  pointer-events:none;
  left:50%;
  top:50%;
}
.hero-ring.r1{width:600px;height:600px;transform:translate(-50%,-50%)}
.hero-ring.r2{width:900px;height:900px;transform:translate(-50%,-50%);border-color:rgba(201,168,76,.08)}
.hero-ring.r3{width:1250px;height:1250px;transform:translate(-50%,-50%);border-color:rgba(201,168,76,.04)}
@media(max-width:767px){
  .hero-ring.r1{width:380px;height:380px}
  .hero-ring.r2{width:560px;height:560px}
  .hero-ring.r3{width:760px;height:760px}
}

.scroll-hint{
  position:absolute;
  bottom:2rem;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.5rem;
  opacity:0;
  animation:fadeUp .8s ease 1.1s forwards;
}
.scroll-line{
  width:1px;
  height:36px;
  background:linear-gradient(180deg,var(--gold),transparent);
}
.scroll-hint span{
  font-size:.62rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:rgba(220,220,220,.6);
}
@media(max-width:575px){
  .scroll-hint{display:none}
}

/* ══════════════════════════════════════
   SECTION HEADERS
   ══════════════════════════════════════ */
.section-eyebrow{
  font-size:.72rem;
  font-weight:500;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:.6rem;
}
.section-title{
  font-size:clamp(2rem,4.5vw,3.2rem);
  font-weight:300;
  margin-bottom:1rem;
}
.section-subtitle{
  font-size:.98rem;
  line-height:1.75;
  color:var(--muted);
  max-width:520px;
}
.section-subtitle.mx-auto{margin-left:auto;margin-right:auto}
.divider-gold{
  width:56px;
  height:2px;
  background:var(--gold);
  margin:1.1rem 0;
}
.divider-gold.mx-auto{margin-left:auto;margin-right:auto}
.section-line{
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(201,168,76,.2),transparent);
  width:100%;
}

/* ══════════════════════════════════════
   BENEFIT CARDS
   ══════════════════════════════════════ */
.benefit-card{
  background:var(--dark3);
  border:1px solid rgba(201,168,76,.12);
  padding:2rem 1.75rem;
  position:relative;
  transition:border-color .35s,transform .35s,box-shadow .35s;
}
.benefit-card:hover{
  border-color:rgba(201,168,76,.4);
  transform:translateY(-6px);
  box-shadow:0 20px 45px rgba(0,0,0,.35);
}
.benefit-num{
  position:absolute;
  top:1.25rem;
  right:1.5rem;
  font-family:'Cormorant Garamond',serif;
  font-size:2rem;
  color:rgba(201,168,76,.18);
  line-height:1;
}
.benefit-icon{
  width:46px;
  height:46px;
  border:1px solid rgba(201,168,76,.3);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:1.4rem;
}
.benefit-icon svg{
  width:20px;
  height:20px;
  stroke:var(--gold);
  fill:none;
  stroke-width:1.5;
}
.benefit-title{
  font-family:'Cormorant Garamond',serif;
  font-size:1.25rem;
  font-weight:500;
  color:var(--white);
  margin-bottom:.6rem;
}
.benefit-text{
  font-size:.88rem;
  line-height:1.75;
  color:var(--muted);
  margin:0;
}

/* ══════════════════════════════════════
   PRODUCT CARDS
   ══════════════════════════════════════ */
.product-card{
  background:var(--dark3);
  border:1px solid rgba(201,168,76,.15);
  padding:2.25rem 1.75rem;
  text-align:center;
  position:relative;
  transition:border-color .35s,transform .35s,box-shadow .35s;
}
.product-card:hover{
  border-color:rgba(201,168,76,.4);
  transform:translateY(-6px);
  box-shadow:0 20px 45px rgba(0,0,0,.35);
}
.product-card.featured{
  border-color:rgba(201,168,76,.5);
  background:linear-gradient(180deg,rgba(201,168,76,.06) 0%,var(--dark3) 100%);
}
.featured-tag{
  position:absolute;
  top:0;
  left:50%;
  transform:translate(-50%,-50%);
  background:var(--gold);
  color:var(--dark);
  font-size:.62rem;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:.3rem .9rem;
  white-space:nowrap;
}
.product-img-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  height:200px;
  margin-bottom:1.25rem;
}
.product-img-wrap img{
  max-height:100%;
  width:auto;
  filter:drop-shadow(0 18px 34px rgba(0,0,0,.4));
}
.product-size{
  font-family:'Cormorant Garamond',serif;
  font-size:2.6rem;
  font-weight:300;
  color:var(--gold);
  line-height:1;
}
.product-size small{
  font-size:1.1rem;
  color:var(--muted);
  margin-left:.15rem;
}
.product-label{
  font-size:.78rem;
  letter-spacing:.08em;
  color:var(--light);
  margin:.4rem 0 1rem;
}
.product-badge{
  display:inline-block;
  font-size:.6rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--gold);
  border:1px solid rgba(201,168,76,.3);
  padding:.2rem .65rem;
  margin-bottom:.6rem;
}
.product-name{
  font-family:'Cormorant Garamond',serif;
  font-size:1.2rem;
  color:var(--white);
  margin-bottom:1rem;
}
.product-features{
  list-style:none;
  padding:0;
  margin:0 0 1.5rem;
  text-align:left;
  display:inline-block;
}
.product-features li{
  font-size:.84rem;
  color:var(--muted);
  padding:.35rem 0 .35rem 1.35rem;
  position:relative;
  line-height:1.5;
}
.product-features li::before{
  content:'';
  position:absolute;
  left:0;
  top:.9rem;
  width:6px;
  height:6px;
  background:var(--gold);
}
.btn-shop{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--gold);
  color:var(--dark);
  font-size:.74rem;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  padding:.85rem 2rem;
  transition:transform .3s,box-shadow .3s,background .3s;
}
.btn-shop:hover{
  color:var(--dark);
  background:var(--gold-light);
  transform:translateY(-3px);
  box-shadow:0 14px 32px rgba(201,168,76,.3);
}

/* ══════════════════════════════════════
   APP DOWNLOAD SECTION
   ══════════════════════════════════════ */
.btn-app{
  display:flex;
  align-items:center;
  gap:.85rem;
  border:1px solid rgba(201,168,76,.25);
  padding:.75rem 1.4rem;
  margin-bottom:.85rem;
  transition:border-color .3s,background .3s,transform .3s;
}
.btn-app:hover{
  border-color:var(--gold);
  background:rgba(201,168,76,.06);
  transform:translateY(-2px);
  color:inherit;
}
.btn-app svg{
  width:26px;
  height:26px;
  fill:var(--gold);
  flex-shrink:0;
}
.btn-app-label{
  font-size:.62rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--muted);
}
.btn-app-name{
  font-family:'Cormorant Garamond',serif;
  font-size:1.15rem;
  color:var(--white);
}
.qr-wrap{
  display:flex;
  gap:1.5rem;
  margin-top:1.75rem;
}
.qr-item{
  text-align:center;
}
.qr-item img{
  border:1px solid rgba(201,168,76,.2);
  padding:6px;
  background:#fff;
}
.qr-label{
  font-size:.66rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
  margin-top:.5rem;
}
@media(max-width:575px){
  .qr-wrap{justify-content:center}
}

/* ══════════════════════════════════════
   CERTIFICATION SECTION
   ══════════════════════════════════════ */
#certification{text-align:center}


.cert-text{
  max-width:680px;
  margin:0 auto 2.5rem;
  font-size:1rem;
  line-height:1.85;
  color:var(--light);
}
.cert-text strong{color:var(--gold);font-weight:500}
.cert-details{
  border-top:1px solid rgba(201,168,76,.12);
  padding-top:2rem;
}
.cert-detail-label{
  font-size:.62rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:.35rem;
}
.cert-detail-value{
  font-family:'Cormorant Garamond',serif;
  font-size:1.1rem;
  color:var(--white);
}
.cert-detail-value a{color:var(--white)}
.cert-detail-value a:hover{color:var(--gold)}

/* ══════════════════════════════════════
   NAV — LINKS & CTA
   ══════════════════════════════════════ */
.navbar-nav .nav-link{
  font-size:.8rem;
  font-weight:400;
  letter-spacing:.06em;
  color:rgba(230,230,230,.85) !important;
  padding:.4rem .9rem !important;
  transition:color .3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
  color:var(--gold) !important;
}
.btn-nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--gold);
  color:var(--dark) !important;
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  padding:.55rem 1.35rem;
  transition:background .3s,transform .3s;
}
.btn-nav-cta:hover{
  background:var(--gold-light);
  color:var(--dark) !important;
  transform:translateY(-1px);
}
.navbar-toggler{
  border:1px solid rgba(201,168,76,.35);
  padding:.4rem .6rem;
}
.navbar-toggler:focus{box-shadow:0 0 0 .2rem rgba(201,168,76,.25)}
.navbar-toggler-icon{
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201,168,76,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media(max-width:991px){
  .navbar-collapse{
    background:rgba(10,10,10,.98);
    margin-top:1rem;
    padding:1rem 1.25rem;
    border:1px solid rgba(201,168,76,.15);
  }
  .navbar-nav .nav-link{padding:.6rem .5rem !important}
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.bottom-logo-section{
  padding:4rem 0 3rem;
  text-align:center;
  position:relative;
}
.bottom-logo-divider{
  width:56px;
  height:1px;
  background:rgba(201,168,76,.3);
  margin:0 auto;
}
.sw-logo-bottom{
  height:38px;
  width:auto;
  margin:0 auto 1rem;
  filter:brightness(0) invert(1);
}
.bottom-logo-tagline{
  font-size:.72rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  margin:0;
}
footer[role="contentinfo"]{
  border-top:1px solid rgba(201,168,76,.12);
  padding:2rem 0;
  background:var(--dark2);
}
.footer-copy{
  font-size:.78rem;
  color:var(--muted);
  margin:0;
}
.nmra-pill{
  display:inline-block;
  font-size:.62rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--gold);
  border:1px solid rgba(201,168,76,.3);
  padding:.25rem .8rem;
}
.footer-widget{
  font-size:.78rem;
  color:var(--muted);
}
@media(max-width:767px){
  footer[role="contentinfo"] .text-md-center,
  footer[role="contentinfo"] .text-md-end{
    text-align:center !important;
    margin-top:.75rem;
  }
}

/* ══════════════════════════════════════
   BLOG / PAGE CONTENT (page.php, single.php, archive.php, search.php)
   ══════════════════════════════════════ */
.site-main{padding-top:5.5rem}
.entry-content{
  font-size:1rem;
  line-height:1.85;
  color:var(--light);
}
.entry-content p{margin-bottom:1.25rem}
.entry-content a{text-decoration:underline}
.entry-content img{margin:1.5rem 0;max-width:100%;height:auto}
.entry-content h2,.entry-content h3,.entry-content h4{margin:2rem 0 1rem}
.entry-content ul,.entry-content ol{margin-bottom:1.25rem;padding-left:1.5rem;color:var(--light)}
.entry-content blockquote{
  border-left:2px solid var(--gold);
  padding-left:1.25rem;
  margin:1.5rem 0;
  color:var(--muted);
  font-style:italic;
}
#comments .comment-list{list-style:none;padding:0}
#comments .comment-body{
  border:1px solid rgba(201,168,76,.1);
  background:var(--dark3);
  padding:1.25rem;
  margin-bottom:1.25rem;
}
#comments .comment-form input,
#comments .comment-form textarea{
  width:100%;
  background:var(--dark3);
  border:1px solid rgba(201,168,76,.2);
  color:var(--light);
  padding:.7rem 1rem;
  margin-bottom:1rem;
}
#comments .comment-form label{
  display:block;
  font-size:.8rem;
  color:var(--muted);
  margin-bottom:.3rem;
}
.by-line{
  display:block;
  font-size:clamp(1rem,2.5vw,1.6rem);
  font-weight:400;
  letter-spacing:.06em;
  color:var(--gold);
  margin-top:.3rem;
}
.entry-header{text-align:left}

#certification{
  text-align:center;
}







.cert-text{
  max-width:680px;
  margin:0 auto 2.5rem;
  font-size:1rem;
  line-height:1.85;
  color:var(--light);
}
/* ── CERTIFICATION SEAL ── */

.vid-ph {
    width: 100%;
    max-width: 360px;   /* Portrait width */
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.vid-ph video {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    display: block;
}
