/*
Theme Name: Bellina Ladies Salon
Theme URI: https://example.com
Author: Bellina Ladies Salon
Description: A warm, elegant WordPress theme for Bellina Ladies Salon, built around the studio's own arched-niche interior and evil-eye motif.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bellina-salon
*/

/* ---------------------------------------------
   0. Design tokens
--------------------------------------------- */
:root{
  --sand:        #EAE1D2;
  --sand-deep:   #DACBAE;
  --sand-line:   #C9B896;
  --white:       #FBF8F2;
  --cobalt:      #16205C;
  --cobalt-mid:  #2A3B8F;
  --gold:        #9C7A45;
  --gold-soft:   #B79A6B;
  --ink:         #2A241C;
  --ink-soft:    #6B6255;

  --font-script: 'Alex Brush', cursive;
  --font-display: 'Playfair Display', serif;
  --font-body:   'Jost', sans-serif;

  --arch-radius: 140px;
  --container: 1180px;
}

/* ---------------------------------------------
   1. Reset & base
--------------------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--cobalt);
  margin: 0 0 .5em;
  line-height: 1.15;
}
p{ margin: 0 0 1.1em; }
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
/* Elementor / block-editor wide & full alignment support */
.alignwide{ max-width: 1400px; margin-left:auto; margin-right:auto; }
.alignfull{
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
:focus-visible{
  outline: 2px solid var(--cobalt);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior:auto !important; }
}

/* eyebrow / label text */
.eyebrow{
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display:inline-block;
  margin-bottom: 14px;
}

/* ---------------------------------------------
   2. Signature element: the evil-eye divider
   (echoes the hanging nazar charms in the studio)
--------------------------------------------- */
.eye-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 18px;
  margin: 0 auto 48px;
  width: fit-content;
}
.eye-divider::before,
.eye-divider::after{
  content:"";
  width: 64px;
  height: 1px;
  background: var(--sand-line);
}
.eye-charm{
  width: 22px; height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, #fff 0 12%, var(--cobalt) 13% 55%, #fff 56% 68%, var(--cobalt-mid) 69% 100%);
  box-shadow: 0 2px 6px rgba(22,32,92,.25);
}

/* hanging charm accents used in the hero */
.charm-string{ position:relative; width: 2px; background: var(--gold-soft); }
.charm-string .eye-charm{ position:absolute; left:50%; transform:translateX(-50%); }

/* ---------------------------------------------
   3. Header
--------------------------------------------- */
.site-header{
  position: sticky; top:0; z-index: 50;
  background: rgba(234,225,210,.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--sand-line);
}
.site-header .container{
  display:flex; align-items:center; justify-content:space-between;
  padding-top: 16px; padding-bottom: 16px;
}
.site-logo{
  font-family: var(--font-script);
  font-size: 34px;
  color: var(--cobalt);
  line-height: 1;
  display:flex; align-items:baseline; gap:6px;
}
.site-logo .dot{
  display:inline-block;
  width:8px; height:8px;
  border-radius:50%;
  background: var(--cobalt);
  box-shadow: 0 0 0 2px var(--sand), 0 0 0 3px var(--cobalt);
  transform: translateY(-14px);
}
.site-logo-sub{
  display:block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: -4px;
}
.main-nav ul{ display:flex; gap: 34px; align-items:center; }
.main-nav a{
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .2s ease;
}
.main-nav a:hover{ color: var(--cobalt); }
.nav-cta{
  border: 1px solid var(--cobalt);
  padding: 9px 20px;
  border-radius: 999px;
  color: var(--cobalt) !important;
}
.nav-cta:hover{ background: var(--cobalt); color: var(--white) !important; }
.menu-toggle{ display:none; }

@media (max-width: 860px){
  .main-nav{
    position:fixed; inset: 68px 0 0 0;
    background: var(--sand);
    padding: 30px 32px;
    transform: translateY(-8px);
    opacity:0; pointer-events:none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .main-nav.is-open{ opacity:1; pointer-events:auto; transform:translateY(0); }
  .main-nav ul{ flex-direction:column; align-items:flex-start; gap:22px; }
  .menu-toggle{
    display:block; background:none; border:0; cursor:pointer;
    width: 28px; height:20px; position:relative;
  }
  .menu-toggle span, .menu-toggle::before, .menu-toggle::after{
    content:""; position:absolute; left:0; right:0; height:2px; background: var(--cobalt);
  }
  .menu-toggle::before{ top:0; }
  .menu-toggle span{ top:9px; }
  .menu-toggle::after{ bottom:0; }
}

/* ---------------------------------------------
   4. Hero
--------------------------------------------- */
.hero{
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
}
.hero .container{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items:center;
}
.hero-eyebrow{ margin-bottom:18px; }
.hero h1{
  font-size: clamp(40px, 5.4vw, 68px);
  letter-spacing: .01em;
}
.hero h1 em{
  font-style: normal;
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 1.05em;
}
.hero-lede{
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: 18px;
}
.hero-actions{ display:flex; gap:18px; margin-top: 30px; flex-wrap:wrap; }
.btn{
  display:inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn-primary{ background: var(--cobalt); color: var(--white); }
.btn-primary:hover{ background: var(--cobalt-mid); transform: translateY(-2px); }
.btn-ghost{ border: 1px solid var(--ink); color: var(--ink); }
.btn-ghost:hover{ border-color:var(--cobalt); color:var(--cobalt); }

.hero-frame{
  position:relative;
  border-radius: var(--arch-radius) var(--arch-radius) 8px 8px;
  overflow:hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px -20px rgba(42,36,28,.35);
}
.hero-frame img{ width:100%; height:100%; object-fit:cover; }
.hero-charms{
  position:absolute; top:-26px; left:0; right:0;
  display:flex; justify-content:space-evenly;
  pointer-events:none;
}
.hero-charms .charm-string{ height: 46px; }
.hero-charms .charm-string:nth-child(2){ height:70px; }
.hero-charms .charm-string:nth-child(3){ height:34px; }
.hero-charms .charm-string:nth-child(4){ height:58px; }
.hero-charms .eye-charm{ bottom:-11px; }

/* --- Tablet: stack hero, image on top --- */
@media (max-width: 900px){
  .hero{ padding-top: 50px; }
  .hero .container{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual{ order: -1; max-width: 420px; margin: 0 auto; }
  .hero-copy{ text-align:center; }
  .hero-lede{ margin-left:auto; margin-right:auto; }
  .hero-actions{ justify-content:center; }
}

/* --- Phones: the studio photo goes full-bleed, edge to edge, full screen --- */
@media (max-width: 640px){
  .hero{ padding: 0; overflow: visible; }
  .hero .container{
    display: block;
    padding: 0;
    max-width: none;
  }
  .hero-visual{
    order: 0;
    max-width: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative;
  }
  .hero-frame{
    width: 100%;
    height: 100svh;
    min-height: 560px;
    aspect-ratio: auto;
    border-radius: 0;
    box-shadow: none;
  }
  .hero-charms{ top: 22px; z-index: 3; }
  .hero-charms .charm-string{ background: rgba(251,248,242,.8); }
  .hero-copy{
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 40px 26px 44px;
    text-align: left;
    background: linear-gradient(to top, rgba(22,32,92,.92) 10%, rgba(22,32,92,.55) 55%, rgba(22,32,92,0) 100%);
  }
  .hero-eyebrow{ color: var(--gold-soft); }
  .hero-copy h1{ color: var(--white); }
  .hero-copy h1 em{ color: var(--gold-soft); }
  .hero-lede{ color: rgba(251,248,242,.85); margin-left:0; }
  .hero-actions{ justify-content:flex-start; }
}

/* ---------------------------------------------
   5. Section base + arches
--------------------------------------------- */
.section{ padding: 90px 0; }
.section-alt{ background: var(--sand-deep); }
.section-head{ text-align:center; max-width: 640px; margin: 0 auto 56px; }
.section-head p{ color: var(--ink-soft); }

.arch-card{
  background: var(--white);
  border-radius: 90px 90px 10px 10px;
  padding: 46px 30px 34px;
  text-align:center;
  box-shadow: 0 18px 40px -24px rgba(42,36,28,.3);
}
.arch-thumb{
  width: 88px; height: 88px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--sand);
  display:flex; align-items:center; justify-content:center;
  border: 1px solid var(--sand-line);
}

/* ---------------------------------------------
   6. Services menu (literal salon menu, dotted leaders)
--------------------------------------------- */
.menu-groups{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 80px;
}
.menu-group h3{
  font-size: 22px;
  border-bottom: 1px solid var(--sand-line);
  padding-bottom: 14px;
  margin-bottom: 22px;
}
.menu-item{
  display:flex;
  align-items:baseline;
  gap: 10px;
  margin-bottom: 18px;
}
.menu-item .name{ font-weight:500; white-space:nowrap; }
.menu-item .desc{ color: var(--ink-soft); font-size: 14px; margin-right:auto; }
.menu-item .leader{
  flex:1;
  border-bottom: 1px dotted var(--sand-line);
  margin: 0 4px 4px;
  min-width: 20px;
}
.menu-item .price{
  font-family: var(--font-display);
  color: var(--gold);
  white-space:nowrap;
}
@media (max-width: 760px){
  .menu-groups{ grid-template-columns:1fr; }
}
@media (max-width: 640px){
  .section{ padding: 60px 0; }
  .quote-band{ padding: 64px 0; }
  .container{ padding: 0 22px; }
  .menu-item{ flex-wrap: wrap; }
  .menu-item .desc{ width:100%; order:3; margin-right:0; }
  .testimonial, .booking-form, .arch-card{ border-radius: 16px; }
}

/* ---------------------------------------------
   7. Philosophy / quote band
--------------------------------------------- */
.quote-band{
  text-align:center;
  padding: 100px 0;
  background: var(--cobalt);
  color: var(--white);
}
.quote-band .eyebrow{ color: var(--gold-soft); }
.quote-band blockquote{
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 40px);
  max-width: 820px;
  margin: 0 auto;
  font-weight: 500;
  color: var(--white);
}
.quote-band .eye-divider::before,
.quote-band .eye-divider::after{ background: rgba(255,255,255,.25); }

/* ---------------------------------------------
   8. Team
--------------------------------------------- */
.team-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 34px;
}
.team-card{ text-align:center; }
.team-photo{
  aspect-ratio: 3/4;
  border-radius: var(--arch-radius) var(--arch-radius) 8px 8px;
  overflow:hidden;
  margin-bottom: 18px;
  background: var(--sand-deep);
  display:flex; align-items:center; justify-content:center;
}
.team-photo .initials{
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--cobalt);
}
.team-card h3{ font-size: 20px; margin-bottom:4px; }
.team-role{ color: var(--gold); font-size: 13px; letter-spacing:.08em; text-transform:uppercase; margin-bottom:8px; }
.team-note{ color: var(--ink-soft); font-size: 14px; }

/* ---------------------------------------------
   9. Testimonials
--------------------------------------------- */
.testimonial-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial{
  background: var(--white);
  padding: 34px 30px;
  border-radius: 10px 90px 10px 10px;
  box-shadow: 0 18px 40px -26px rgba(42,36,28,.3);
}
.testimonial p{ font-style: italic; color: var(--ink); margin-bottom: 18px; }
.testimonial cite{ font-style:normal; font-size: 13px; color: var(--gold); letter-spacing:.06em; text-transform:uppercase; }
@media (max-width: 900px){
  .testimonial-grid{ grid-template-columns: 1fr; }
}

/* ---------------------------------------------
   10. CTA band
--------------------------------------------- */
.cta-band{
  text-align:center;
  padding: 80px 0;
}
.cta-band h2{ font-size: clamp(28px,3.6vw,42px); }

/* ---------------------------------------------
   11. Contact / booking
--------------------------------------------- */
.contact-wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items:start;
}
.info-block{ margin-bottom: 34px; }
.info-block h3{ font-size: 16px; letter-spacing:.06em; text-transform:uppercase; color: var(--gold); margin-bottom:10px; }
.info-block p{ color: var(--ink-soft); }
.booking-form{
  background: var(--white);
  padding: 40px;
  border-radius: 10px 90px 10px 10px;
  box-shadow: 0 18px 40px -26px rgba(42,36,28,.3);
}
.form-row{ margin-bottom: 20px; }
.form-row label{
  display:block; font-size:13px; letter-spacing:.04em; text-transform:uppercase;
  color: var(--ink-soft); margin-bottom: 8px;
}
.form-row input, .form-row select, .form-row textarea{
  width:100%;
  padding: 12px 14px;
  border: 1px solid var(--sand-line);
  border-radius: 6px;
  background: var(--sand);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  outline: 2px solid var(--cobalt); outline-offset:1px; border-color: transparent;
}
@media (max-width: 860px){
  .contact-wrap{ grid-template-columns: 1fr; }
}

/* ---------------------------------------------
   12. Footer
--------------------------------------------- */
.site-footer{
  background: var(--cobalt);
  color: var(--sand);
  padding: 64px 0 30px;
}
.footer-top{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-logo{ font-family: var(--font-script); font-size: 30px; color: var(--white); }
.footer-tag{ color: rgba(255,255,255,.6); margin-top: 10px; max-width: 32ch; }
.footer-col h4{ color: var(--white); font-size: 14px; letter-spacing:.08em; text-transform:uppercase; margin-bottom:16px; }
.footer-col ul li{ margin-bottom: 10px; }
.footer-col a{ color: rgba(255,255,255,.75); }
.footer-col a:hover{ color: var(--gold-soft); }
.footer-bottom{
  padding-top: 26px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size: 13px; color: rgba(255,255,255,.5);
}
@media (max-width: 760px){
  .footer-top{ grid-template-columns: 1fr; }
}

/* ---------------------------------------------
   13. Generic page content (page.php)
--------------------------------------------- */
.page-hero{
  padding: 70px 0 20px;
  text-align:center;
}
.page-hero h1{ font-size: clamp(32px,4vw,50px); }
.entry-content{
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 0 90px;
}
.entry-content h2{ margin-top: 1.4em; }
.entry-content img{ border-radius: 16px; margin: 20px 0; }
