/* ===========================================================================
   A036 — Your Nails Salon  (static conversion of nail-a036.aiopromotion.com)
   Palette: gold #956D30 · yellow #FEE65E · text #939393 · white · dark #111
   Fonts:  Playfair Display (headings) · Poppins (body/nav/buttons) · Roboto (mobile menu)
   Breakpoints (Elementor): desktop >=1025 · tablet 768-1024 · mobile <=767
   =========================================================================== */

:root{
  --gold:#956D30;      /* --e-global-color-primary   */
  --yellow:#FEE65E;    /* --e-global-color-secondary */
  --text:#3f4650;      /* body text — darkened for the silver background */
  --white:#FFFFFF;     /* --e-global-color-accent    */
  --dark:#111111;      /* kept for dark UI bits (flip-card button) */
  --bg:#c4cdd2;        /* silver-gray main background (matches old zelanails.com) */
  --btn-glow:0px 0px 10px 0px rgba(254,230,94,0.45);
  --container:1120px;
}

/* ---- base (Tailwind preflight loads after this; headings are scoped below) ---- */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Poppins",sans-serif;
  font-size:1rem;                /* trap #4 — must be 1rem */
  line-height:1.5;
  color:var(--text);
  background:var(--bg);
  overflow-x:hidden;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
p{margin:0}

/* ============================ HEADER ============================ */
.site-header{
  position:fixed;top:0;left:0;width:100%;z-index:500;
  background:var(--bg);
  border-radius:0 0 20px 20px;
  box-shadow:0 2px 20px 0 rgba(0,0,0,.18);
  padding:10px 0;
}
.header-inner{
  width:100%;max-width:1350px;margin:0 auto;
  display:flex;flex-direction:row;align-items:center;flex-wrap:wrap;
  padding:0 15px;
}
.header-logo{width:18%;display:flex;justify-content:flex-start}
.header-logo img{width:80px;height:auto}
.header-nav{width:60%;display:flex;justify-content:center;align-items:center;position:relative}
.header-cta{width:15%;display:flex;justify-content:flex-end}

.main-menu{list-style:none;margin:0;padding:0;display:flex;gap:34px;align-items:center}
.main-menu a{
  font-family:"Poppins",sans-serif;font-size:1rem;font-weight:600;
  text-transform:uppercase;color:var(--text);letter-spacing:normal;
  transition:color .25s ease;line-height:1;
}
.main-menu a:hover,.main-menu a.active{color:var(--gold)}

/* CTA button (shared) */
.btn-outline{
  display:inline-block;
  font-family:"Poppins",sans-serif;font-size:1rem;font-weight:500;
  text-transform:uppercase;line-height:1;                 /* trap #2 */
  color:var(--gold);fill:var(--gold);
  background:transparent;
  border:2px solid var(--gold);border-radius:0;
  padding:10px 25px;
  box-shadow:var(--btn-glow);
  cursor:pointer;transition:background .25s ease,color .25s ease;
}
.btn-outline:hover{background:rgba(149,109,48,.08)}

/* burger + mobile menu */
.nav-toggle{display:none;background:transparent;border:0;cursor:pointer;
  width:34px;height:34px;margin:0 auto;padding:0;color:var(--text)}
.nav-toggle svg{width:26px;height:26px;fill:currentColor;display:block;margin:0 auto}
.nav-toggle:hover{color:var(--gold)}
.nav-toggle .icon-close{display:none}
.nav-toggle[aria-expanded="true"] .icon-open{display:none}
.nav-toggle[aria-expanded="true"] .icon-close{display:block}

.mobile-menu{
  position:absolute;top:calc(100% + 15px);left:0;right:0;
  background:var(--bg);
  border-radius:0 0 15px 15px;
  list-style:none;margin:0;padding:0;
  max-height:0;overflow:hidden;transform:scaleY(0);transform-origin:top;
  transition:max-height .3s ease-out,transform .3s ease-out,box-shadow .3s ease-out;
  z-index:600;
}
.mobile-menu.open{
  max-height:340px;transform:scaleY(1);
  box-shadow:0 6px 20px rgba(0,0,0,.2);
  clip-path:inset(0 -12px -12px -12px);
}
.mobile-menu a{
  display:block;padding:12px 20px;
  font-family:"Roboto",sans-serif;font-weight:500;font-size:1rem;text-transform:uppercase;
  color:var(--dark);line-height:1;
}
.mobile-menu a:hover,.mobile-menu a.active{background:var(--white);color:var(--gold)}
.mobile-menu li:last-child a{border-radius:0 0 15px 15px}

/* header spacer not needed — hero/subhero handle the fixed-header offset like source */

/* ============================ TYPOGRAPHY (scoped — trap #1) ============================ */
.eyebrow{
  font-family:"Poppins",sans-serif;font-size:1.4rem;font-weight:500;
  text-transform:uppercase;color:var(--text);line-height:1;margin:0;
}
.h-display{         /* big Playfair headings, gold */
  font-family:"Playfair Display",serif;font-size:3em;font-weight:900;
  color:var(--gold);line-height:1;margin:0;
}
.h-hero{
  font-family:"Playfair Display",serif;font-size:5em;font-weight:900;
  color:var(--gold);line-height:1;margin:0;
}
.sub-hero{
  font-family:"Poppins",sans-serif;font-size:2rem;font-weight:500;
  color:var(--text);line-height:1;margin:0;
}
.body-copy{font-family:"Poppins",sans-serif;font-size:1rem;font-weight:400;color:var(--text);line-height:1.6}

/* ============================ SECTION PRIMITIVE (e-con-boxed) ============================ */
.sec{padding-left:0;padding-right:0;background:var(--bg)}
.sec-inner{width:100%;max-width:var(--container);margin-inline:auto;padding-block:80px}

/* ============================ HERO (home) ============================ */
.hero{display:flex;flex-direction:row;flex-wrap:wrap;min-height:100vh;background:var(--bg)}
.hero-text{
  width:40%;display:flex;flex-direction:column;justify-content:center;gap:40px;
  padding:0 60px 0 200px;
}
.hero-img{
  width:60%;
  background-image:url("images/hero-banner.webp");
  background-position:center center;background-size:cover;
  border-radius:0 0 0 150px;
}

/* ============================ ABOUT (home) ============================ */
.about-inner{
  max-width:var(--container);margin-inline:auto;padding-block:80px;
  display:flex;flex-direction:row;gap:60px;align-items:stretch;
}
.about-img{flex:0 0 477px;max-width:477px}
.about-img img{width:100%;height:100%;object-fit:cover;border-radius:0 150px 0 150px}
.about-text{flex:1;display:flex;flex-direction:column;justify-content:center;gap:20px}
.about-text .body-copy{text-align:justify}

/* ============================ SERVICES SECTION (home, wide 1350) ============================ */
.services-home .sec-inner{max-width:1350px;display:flex;flex-direction:column;gap:20px;align-items:stretch}
.services-home .eyebrow,.services-home .h-display{text-align:center}
.services-home .btn-wrap{text-align:center}
.cards-row{display:flex;flex-direction:row;justify-content:space-between;gap:20px;margin-top:40px}

/* flip cards */
.flip{flex:1;height:420px;perspective:1200px}
.flip-inner{position:relative;width:100%;height:100%;transition:transform .8s;transform-style:preserve-3d}
.flip:hover .flip-inner,.flip.is-flipped .flip-inner{transform:rotateY(180deg)}
.flip-face{
  position:absolute;inset:0;backface-visibility:hidden;-webkit-backface-visibility:hidden;
  border-radius:8px;overflow:hidden;
  display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;
  padding:20px;background-size:cover;background-position:center;
}
.flip-front::before{content:"";position:absolute;inset:0;background:linear-gradient(rgba(0,0,0,0) 40%,rgba(0,0,0,.28));z-index:0}
.flip-front>*{position:relative;z-index:1}
.flip-back{
  transform:rotateY(180deg);
  background-color:#2b2b2b;
  background-image:url("images/bg-texture.webp");
}
.flip-title{
  font-family:"Poppins",sans-serif;font-size:1.4rem;font-weight:500;text-transform:uppercase;
  color:var(--white);text-shadow:0 0 10px #000;margin:0;line-height:1.2;
}
.flip-btn{
  margin-top:20px;display:inline-block;padding:10px 20px;
  background:var(--dark);color:#fff;border-radius:0;
  font-family:"Poppins",sans-serif;font-size:1rem;font-weight:600;text-transform:uppercase;line-height:1;
}

/* ============================ TESTIMONIALS (home) ============================ */
.testi .sec-inner{max-width:var(--container);display:flex;flex-direction:column;gap:20px;align-items:center}
.quote-icon{color:var(--gold);text-align:center}
.quote-icon svg{width:85px;height:85px;fill:var(--gold);margin:0 auto}
.testi .eyebrow,.testi .h-display{text-align:center}
.testi-carousel{width:100%;overflow:hidden;position:relative;margin-top:6px}
.testi-track{display:flex;gap:10px;transition:transform .5s ease;min-width:0}
.testi-card{
  flex:0 0 calc((100% - 20px)/3);min-width:0;
  display:flex;flex-direction:column;gap:14px;padding:10px 6px;text-align:center;align-items:center;
}
.testi-text{font-family:"Poppins",sans-serif;font-size:1rem;font-weight:400;color:var(--text);line-height:1.6}
.testi-name{font-family:"Poppins",sans-serif;font-size:1.2rem;font-weight:600;text-transform:uppercase;color:var(--gold);margin:0;line-height:1.2}
.testi-title{font-family:"Poppins",sans-serif;font-size:1rem;font-weight:600;text-transform:uppercase;color:var(--gold);margin:0;line-height:1}
.testi-dots{display:flex;gap:8px;justify-content:center;margin-top:16px}
.testi-dots button{width:10px;height:10px;border-radius:50%;border:0;background:var(--text);cursor:pointer;padding:0}
.testi-dots button.active{background:var(--gold)}

/* ============================ GALLERY CTA (home) ============================ */
.gallery-cta .sec-inner{max-width:var(--container);display:flex;flex-direction:row;align-items:flex-start;gap:0}
.gallery-cta-left{width:30%;display:flex;flex-direction:column;gap:40px}
.gallery-cta-left .eyebrow,.gallery-cta-left .h-display{text-align:left}
.gallery-cta-right{width:70%}

/* masonry (JS positioned) */
.masonry{position:relative;width:100%}
.masonry .g-item{position:absolute;overflow:hidden;border-radius:0;cursor:pointer}
.masonry .g-item img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .8s ease}
.masonry .g-item::after{content:"";position:absolute;inset:0;background:rgba(0,0,0,0);transition:background .3s ease}
.masonry .g-item:hover::after{background:rgba(0,0,0,.5)}

/* carousel wrapper + arrows */
.testi-wrap{position:relative;width:100%}
.testi-arrow{
  position:absolute;top:50%;transform:translateY(-50%);z-index:2;
  background:transparent;border:0;cursor:pointer;color:var(--gold);padding:6px;line-height:0;
}
.testi-arrow svg{width:20px;height:20px;fill:var(--gold)}
.testi-prev{left:-30px}
.testi-next{right:-30px}
@media(max-width:1024px){.testi-prev{left:-6px}.testi-next{right:-6px}}

/* lightbox */
#lightbox{
  position:fixed;inset:0;z-index:2000;background:rgba(0,0,0,.9);
  display:none;align-items:center;justify-content:center;padding:24px;cursor:zoom-out;
}
#lightbox.open{display:flex}
#lightbox img{max-width:92vw;max-height:92vh;width:auto;height:auto;border-radius:4px}

/* ============================ SUBPAGE HERO ============================ */
.subhero{
  background-image:url("images/bg2.webp");
  background-position:center center;background-size:cover;
  padding:180px 0 100px;
  text-align:center;
}
.subhero-inner{max-width:var(--container);margin-inline:auto;display:flex;flex-direction:column;gap:20px;align-items:center}
.subhero h1{               /* scoped — trap #1 */
  font-family:"Playfair Display",serif;font-size:5em;font-weight:900;color:var(--gold);line-height:1;margin:0;
}
.subhero .sub-hero{text-align:center}

/* ============================ GALLERY PAGE ============================ */
.gallery-parallax{
  background-image:url("images/bg2.webp");
  background-position:center center;background-size:cover;background-attachment:fixed;
}
.gallery-parallax-inner{max-width:var(--container);margin-inline:auto;padding:80px 0}

/* ============================ SERVICES PAGE (price list) ============================ */
.svc-cat{background:var(--bg)}
.svc-inner{max-width:var(--container);margin-inline:auto;padding-block:80px}
.svc-grid{display:grid;grid-template-columns:373px 1fr;gap:10px 40px;align-items:start}
.svc-img{align-self:start}
.svc-img img{width:100%;height:360px;object-fit:cover;object-position:center center}
.svc-panel{display:flex;flex-direction:column}
.svc-panel .h-display{margin-bottom:20px}
.svc-bottom{grid-column:1 / -1;margin-top:0}
.svc-note{font-family:"Poppins",sans-serif;font-size:1rem;font-weight:400;color:var(--text);margin-top:12px;line-height:1.4}
.svc-sub{font-family:"Poppins",sans-serif;font-size:1rem;font-weight:600;color:var(--gold);margin:0 0 20px;line-height:1.2}

/* price list */
.price-list{list-style:none;margin:0;padding:0}
.price-list li{margin-bottom:20px}
.price-list li:last-child{margin-bottom:0}
.price-row{display:flex;align-items:baseline;gap:8px;min-height:34px}
.price-title{font-family:"Poppins",sans-serif;font-size:1rem;font-weight:600;color:var(--gold);white-space:normal;line-height:1.5}
.price-sep{flex:1;align-self:baseline;border-bottom:1px dotted var(--text);min-width:20px}
.price-val{font-family:"Poppins",sans-serif;font-size:1rem;font-weight:400;color:var(--gold);white-space:nowrap;line-height:1.5}
.price-desc{font-family:"Poppins",sans-serif;font-size:1rem;font-weight:400;font-style:italic;color:var(--text);line-height:1.5;margin-top:0}

/* ============================ CONTACT PAGE ============================ */
.contact-sec{background:var(--bg)}
.contact-inner{max-width:var(--container);margin-inline:auto;padding-block:80px;
  display:flex;flex-direction:row;gap:40px;align-items:stretch}
.contact-img{flex:0 0 373px;max-width:373px;padding-top:60px}
.contact-img img{width:100%;height:360px;object-fit:cover;object-position:top center}
.contact-panel{flex:1;display:flex;flex-direction:column;justify-content:center;gap:20px;text-align:center;align-items:center}
.contact-panel .eyebrow{text-align:center;color:var(--gold)}
.contact-panel .body-copy{text-align:center}

/* ============================ FOOTER ============================ */
.site-footer{background:var(--bg);display:flex;flex-direction:column;align-items:center}
.footer-row{
  width:80%;margin:0 auto;padding:80px 0;
  display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;
}
.footer-col{display:flex;flex-direction:column;gap:20px}
.footer-col--about{flex:0 0 25%}
.footer-col--contact{flex:0 0 20%}
.footer-col--hours{flex:0 0 20%}
.footer-col--map{flex:0 0 28%}
.footer-h{font-family:"Poppins",sans-serif;font-size:1.2em;font-weight:600;text-transform:uppercase;color:var(--gold);margin:0;line-height:1.2}
.footer-about-p{font-family:"Poppins",sans-serif;font-size:1rem;font-weight:400;color:var(--text);line-height:1.6}
.footer-about-p .biz{color:var(--gold);font-weight:700}

.footer-contact-row{display:flex;align-items:center;gap:10px}
.footer-ico{flex:0 0 auto;width:24px;height:24px;display:flex;align-items:center;justify-content:center}
.footer-ico svg{width:24px;height:24px;fill:var(--gold)}
.footer-contact-row a,.footer-contact-row span{font-family:"Poppins",sans-serif;font-size:1rem;font-weight:400;color:var(--text)}

.footer-social{display:flex;flex-direction:row;gap:10px;margin-top:6px}
.footer-social .social-btn{
  width:40px;height:40px;border-radius:50%;background:var(--gold);
  display:flex;align-items:center;justify-content:center;transition:background .25s ease;
}
.footer-social .social-btn svg{width:20px;height:20px;fill:#fff}
.footer-social .social-btn:hover{background:var(--yellow)}

.footer-hours-text{font-family:"Poppins",sans-serif;font-size:1rem;font-weight:400;color:var(--text);line-height:1.6}
.footer-seo{font-family:"Poppins",sans-serif;font-size:1rem;font-weight:600;color:var(--gold);line-height:1.6;display:block}
.footer-seo--tight{margin-top:8px}
.footer-map iframe{width:100%;height:280px;border:0;display:block}

.footer-bottom{
  width:100%;border-top:1px solid var(--gold);
  padding:20px 0;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:center;gap:5px;
}
.footer-bottom span{font-family:"Poppins",sans-serif;font-size:1rem;font-weight:400;color:var(--text);text-align:center}
.footer-bottom .biz{color:var(--gold);font-weight:700}

/* ============================ STICKY SIDEBAR ============================ */
.side-social{
  position:fixed;left:0;top:24vh;z-index:99;
  display:flex;flex-direction:column;gap:5px;
}
.side-social .side-btn{
  width:34px;height:34px;border-radius:6px;background:var(--gold);
  display:flex;align-items:center;justify-content:center;transition:background .25s ease;
}
.side-social .side-btn svg{width:18px;height:18px;fill:#fff}
.side-social .side-btn:hover{background:var(--yellow)}

/* ============================ TABLET (768-1024) ============================ */
@media(max-width:1024px){
  .h-hero,.subhero h1{font-size:4em}
  .h-display{font-size:3em}
  .eyebrow{font-size:1.4rem}
  .flip-title{font-size:1.2em}
  .sec-inner,.about-inner,.svc-inner,.contact-inner{padding-block:80px}

  .header-inner{padding:0 30px}
  .header-logo{width:25%}.header-logo img{width:65px}
  .header-nav{width:50%;flex-grow:1}
  .header-cta{width:25%}
  .main-menu{display:none}
  .nav-toggle{display:block}

  /* hero */
  .hero{min-height:75vh}
  .hero-text{width:50%;padding:0 30px}
  .hero-img{width:50%}

  /* about stacks; image centered at ~390px like source */
  .about-inner{flex-direction:column;padding-left:30px;padding-right:30px;gap:30px}
  .about-img{flex:none;width:100%;max-width:390px;align-self:center}
  .about-img img{height:auto;width:100%;object-fit:cover;aspect-ratio:auto}

  .services-home .sec-inner,.testi .sec-inner{padding-left:30px;padding-right:30px}
  .cards-row{flex-wrap:wrap;gap:20px}
  .flip{flex:0 0 calc((100% - 20px)/2);height:380px}

  .gallery-cta .sec-inner{flex-direction:column;padding-left:30px;padding-right:30px;gap:20px}
  .gallery-cta-left,.gallery-cta-right{width:100%}
  .gallery-cta-left{align-items:center}
  .gallery-cta-left .eyebrow,.gallery-cta-left .h-display{text-align:center}

  .subhero{padding:180px 30px 100px}
  .gallery-parallax{background-attachment:scroll}
  .gallery-parallax-inner{padding:80px 30px}

  /* services page: 2-col top keeps, image flexible */
  .svc-inner{padding-left:30px;padding-right:30px}
  .svc-grid{grid-template-columns:45% 1fr;gap:10px 40px}

  /* contact keeps 2-col */
  .contact-inner{padding-left:30px;padding-right:30px}
  .contact-img{flex:0 0 45%;max-width:45%}

  /* testimonials 2 per view */
  .testi-card{flex-basis:calc((100% - 10px)/2)}

  /* footer 2x2 */
  .footer-row{width:100%;padding:60px 30px;gap:30px}
  .footer-col--about,.footer-col--contact,.footer-col--hours,.footer-col--map{flex:0 0 47%}
}

/* ============================ MOBILE (<=767) ============================ */
@media(max-width:767px){
  .h-hero,.subhero h1{font-size:3.6em}
  .h-display{font-size:2.5em}
  .eyebrow{font-size:1.2rem}
  .sub-hero{font-size:1.8rem}
  .flip-title{font-size:1.1em}

  .header-inner{padding:0 20px}
  .header-logo{width:40%}.header-logo img{width:55px}
  .header-nav{width:10%}
  .header-cta{width:39%}
  .btn-outline{font-size:1rem;padding:8px 10px}
  .mobile-menu{top:calc(100% + 10px)}

  /* hero stacks: text then image */
  .hero{min-height:100vh}
  .hero-text{width:100%;padding:100px 20px 20px;gap:24px;flex:0 0 auto}
  .hero-img{width:100%;flex:1;min-height:280px;border-radius:0 0 0 100px}

  .about-inner{padding-left:20px;padding-right:20px}
  .services-home .sec-inner,.testi .sec-inner,.gallery-cta .sec-inner{padding-left:20px;padding-right:20px}
  .sec-inner,.about-inner,.svc-inner,.contact-inner{padding-block:60px}

  .flip{flex:0 0 100%;height:360px}

  .subhero{padding:160px 20px 100px}
  .gallery-parallax-inner{padding:60px 20px}

  .svc-inner{padding-left:20px;padding-right:20px}
  .svc-grid{grid-template-columns:1fr;gap:40px}
  .svc-bottom{grid-column:auto}

  .contact-inner{flex-direction:column;padding-left:20px;padding-right:20px;gap:40px}
  .contact-img{flex:none;max-width:100%;width:100%;padding-top:0}
  .contact-img img{aspect-ratio:4/3;height:auto}

  /* testimonials 1 per view */
  .testi-card{flex-basis:100%}

  /* footer stack */
  .footer-row{padding:60px 20px;gap:40px}
  .footer-col--about,.footer-col--contact,.footer-col--hours,.footer-col--map{flex:0 0 100%}

  .side-social .side-btn{width:30px;height:30px}
  .side-social .side-btn svg{width:16px;height:16px}
}
