/*
Theme Name: Extraordinary Window Tinting - TintArt Closer
Author: OpenAI
Description: WordPress theme customized for Extraordinary Window Tinting with a premium tint shop layout.
Version: 1.0
*/

:root{
  --bg:#0b0b0f;
  --bg2:#111219;
  --panel:#171822;
  --text:#f6f7fb;
  --muted:#b8bfd0;
  --line:rgba(255,255,255,.08);
  --purple:#7440ff;
  --purple2:#a85cff;
  --cyan:#32d4ff;
  --gold:#ffd76b;
  --max:1200px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(var(--max),92%);margin:0 auto}
.site-header{
  position:sticky;top:0;z-index:1000;
  background:rgba(11,11,15,.96);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar{
  border-bottom:1px solid var(--line);
  font-size:.92rem;
  color:var(--muted);
}
.topbar-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:8px 0;
  flex-wrap:wrap;
}
.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand img{height:58px;width:auto}
.brand-title{
  font-weight:800;
  letter-spacing:.2px;
}
.nav{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.nav a{
  color:var(--muted);
  font-weight:700;
  font-size:.96rem;
}
.nav a:hover{color:#fff}
.btn{
  display:inline-block;
  padding:13px 20px;
  border-radius:999px;
  font-weight:800;
  transition:transform .2s ease, opacity .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-1px);opacity:.96}
.btn-primary{
  background:linear-gradient(135deg,var(--purple),var(--purple2));
  color:#fff;
  box-shadow:0 10px 28px rgba(116,64,255,.28);
}
.btn-secondary{
  color:#fff;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.03);
}

.service-pills{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.service-pills span{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-weight:700;
}

.section{padding:82px 0}
.section-label{
  color:var(--cyan);
  text-transform:uppercase;
  font-weight:800;
  letter-spacing:.7px;
  font-size:.84rem;
  margin-bottom:12px;
}
.section-title{
  margin:0 0 12px;
  font-size:clamp(1.9rem,3.2vw,2.9rem);
  line-height:1.1;
}
.section-copy{
  margin:0 0 30px;
  color:var(--muted);
  max-width:760px;
}
.center{text-align:center}
.services{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}
.service-card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
}
.service-number{
  display:inline-flex;
  width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:linear-gradient(135deg,var(--purple),var(--purple2));
  font-weight:800;
  margin-bottom:14px;
}
.service-card h3{margin:0 0 10px}
.service-card p{margin:0 0 12px;color:var(--muted)}
.learn{
  color:#fff;
  font-weight:800;
}
.why-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.panel{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:26px;
  padding:30px;
}
.film-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.film-card{
  min-height:180px;
  border-radius:20px;
  padding:22px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
}
.film-card h4{margin:0 0 10px}
.film-card p{margin:0;color:var(--muted)}
.approvals{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:20px;
}
.approval{
  text-align:center;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:18px;
  padding:18px 12px;
}
.approval strong{
  display:block;
  margin-top:8px;
}
.gallery{
  column-count:4;
  column-gap:16px;
}
.gallery-item{
  break-inside:avoid;
  margin-bottom:16px;
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--panel);
}
.gallery-item img{
  width:100%;
  height:auto;
  transition:transform .25s ease;
}
.gallery-item:hover img{transform:scale(1.03)}
.reviews-box{
  text-align:center;
  padding:34px;
  border-radius:28px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#181824,#12131a);
}
.stars{
  color:var(--gold);
  letter-spacing:4px;
  font-size:1.55rem;
}
.review-score{
  margin:10px 0 6px;
  font-size:clamp(1.8rem,4vw,3rem);
  font-weight:900;
}
.review-copy{
  color:var(--muted);
  margin:0 auto 20px;
  max-width:760px;
}
.review-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}
.local-grid{
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:24px;
}
.cta-strip{
  background:
    radial-gradient(circle at right center, rgba(116,64,255,.16), transparent 28%),
    linear-gradient(135deg,rgba(116,64,255,.08),rgba(50,212,255,.06));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.cta-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}
.footer{
  padding:38px 0 48px;
  background:#0a0a0d;
  border-top:1px solid var(--line);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr .8fr;
  gap:22px;
}
.small{color:var(--muted)}
@media (max-width:1024px){
  .hero-grid,.why-grid,.local-grid,.footer-grid,.services,.film-cards{
    grid-template-columns:1fr;
  }
  .gallery{column-count:2}
}
@media (max-width:720px){
  .gallery{column-count:1}
  .header-inner{flex-direction:column;align-items:flex-start}
  .topbar-inner{flex-direction:column}
  .brand-title{display:none}
  .btn{width:100%;text-align:center}
  .hero-actions,.review-actions{flex-direction:column}
  .approvals{grid-template-columns:1fr}
}
/* PREMIUM HERO */
.premium-hero{
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b0b0f;
}

.hero-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.premium-hero:hover .hero-bg{
  transform: scale(1.08);
}
.hero-bg{
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom{
  from { transform: scale(1.05); }
  to { transform: scale(1.1); }
}
.hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.2) 100%),
    linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.35) 100%);
}

.hero-content{
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 0;
}

@media (max-width: 720px){
  .premium-hero{
    min-height: 70vh;
  }

  .hero-content{
    padding: 80px 0;
  }
}	#before-after .section-copy{
  max-width: 760px;
}

#before-after iframe,
#before-after img,
#before-after .twentytwenty-container,
#before-after .before-after-slider{
  border-radius: 24px;
  overflow: hidden;
}