/*
  Selin's UX/UI Reviews – Home page (modern dark-pink redesign)
  Keeps your existing HTML/text; upgrades layout + visuals.
*/

:root{
  --bg:#07060a;
  --bg2:#0b0710;
  --surface:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.14);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --muted2:rgba(255,255,255,.55);
  --accent:#ff2fb3;
  --accent2:#b00078;
  --radius:24px;
  --shadow:0 18px 60px rgba(0,0,0,.55);
}

*{padding:0;margin:0;box-sizing:border-box}
html,body{height:100%}
body{
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 10% 0%, rgba(255,47,179,.22), transparent 55%),
    radial-gradient(900px 700px at 90% 10%, rgba(176,0,120,.22), transparent 50%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}

/* Hero */
#banner{
  min-height:100vh;
  width:100%;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.88)),
    url("images/h1.png") center/cover no-repeat;
}
#banner::before{
  content:"";
  position:absolute;inset:-2px;
  background:
    radial-gradient(800px 600px at 20% 20%, rgba(255,47,179,.22), transparent 60%),
    radial-gradient(700px 500px at 80% 30%, rgba(176,0,120,.25), transparent 62%);
  pointer-events:none;
}

.banner-text{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  text-align:center;
  padding:26px;
}
.banner-text h1{
  margin:0;
  font-family:"Kaushan Script",cursive;
  letter-spacing:.5px;
  font-size:clamp(44px, 6vw, 96px);
  text-shadow:0 24px 90px rgba(0,0,0,.65);
}
.banner-text p{
  margin:10px 0 0;
  color:var(--muted);
  font-size:clamp(16px, 1.7vw, 20px);
  font-style:italic;
}

.banner-btn{margin:24px auto 0;display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.banner-btn a{
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  color:var(--text);
  backdrop-filter: blur(14px);
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
  position:relative;
}
.banner-btn a span{display:none}
.banner-btn a:hover{transform:translateY(-2px);border-color:rgba(255,47,179,.45);background:rgba(255,47,179,.10)}

/* Side nav (hamburger) */
#menuBtn{
  width:48px;height:48px;
  position:fixed;top:18px;right:18px;z-index:50;
  border-radius:999px;
  display:grid;place-items:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px);
  box-shadow:0 16px 50px rgba(0,0,0,.45);
}
#menuBtn img{width:18px;height:18px;filter:invert(1)}
#sidenav{
  width:280px;height:100vh;
  position:fixed;top:0;right:-280px;z-index:49;
  padding:84px 18px 18px;
  background:rgba(10,7,15,.72);
  border-left:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  box-shadow: -20px 0 70px rgba(0,0,0,.55);
  transition:right .45s cubic-bezier(.2,.9,.2,1);
}
#sidenav ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:10px}
#sidenav ul li{margin:0}
#sidenav ul li a{
  display:flex;align-items:center;justify-content:flex-start;
  padding:12px 14px;border-radius:14px;text-decoration:none;
  color:var(--text);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}
#sidenav ul li a:hover{border-color:rgba(255,47,179,.38);background:rgba(255,47,179,.10)}

/* Sections */
#feature,#testimonials,#footer{padding:80px 0}
#service{padding:80px 0}
#service{background:transparent}

.text-content{ text-align:center; padding-bottom:28px }
.text-content p{
  color:var(--muted2);
  font-weight:800;
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
  position:relative;
  display:inline-block;
}
.text-content p::before{display:none}
.text-content h1{
  margin-top:14px;
  font-size:clamp(28px, 3.2vw, 44px);
  letter-spacing:-.02em;
}

.feature-box{
  width:min(1100px, calc(100% - 44px));
  margin:0 auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:22px;
  align-items:center;
}
@media (max-width: 920px){.feature-box{grid-template-columns:1fr}}

#features, .feature-img{
  background:var(--surface);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:var(--shadow);
}
#features h1{
  text-align:left;
  margin:0 0 12px;
  font-size:22px;
  color:var(--text);
}
.feature-desc{display:flex;gap:12px;align-items:flex-start;margin:0 0 18px}
.feature-icon{flex:0 0 auto}
.feature-icon .fas{
  width:44px;height:44px;
  display:grid;place-items:center;
  font-size:18px;
  color:var(--text);
  border:1px solid rgba(255,255,255,.18);
  border-radius:14px;
  background:rgba(255,255,255,.05);
}
.feature-desc p{margin:0;color:var(--muted);line-height:1.75;font-size:16px}
.feature-img img{width:100%;border-radius:18px}

/* Review cards grid */
.service-box{
  width:min(1200px, calc(100% - 44px));
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}
@media (max-width: 920px){.service-box{grid-template-columns:1fr}}

.single-service{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  box-shadow:0 18px 60px rgba(0,0,0,.45);
}
.single-service img{width:100%;height:340px;object-fit:cover}
.overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.80));
  opacity:0;transition:opacity .35s ease;
}
.service-desc{
  position:absolute;left:18px;right:18px;bottom:18px;
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(10,7,15,.65);
  backdrop-filter: blur(14px);
  transform:translateY(10px);
  opacity:0;transition:transform .35s ease, opacity .35s ease;
}
.service-desc h3{margin:0 0 6px;font-size:20px}
.service-desc hr{display:none}
.service-desc p{margin:0;color:var(--muted);letter-spacing:.02em}
.single-service:hover .overlay{opacity:1}
.single-service:hover .service-desc{transform:translateY(0);opacity:1}

/* Footer */
#footer-row{
  width:min(1100px, calc(100% - 44px));
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
@media (max-width: 920px){#footer-row{grid-template-columns:1fr}}

.footer-left,.footer-right{
  background:var(--surface);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
}
.footer-left h1,.footer-right h1{margin:0 0 10px;font-size:22px}
.footer-left p,.footer-right p{margin:8px 0;color:var(--muted);line-height:1.7}
.footer-right{ text-align:right }
@media (max-width: 920px){.footer-right{ text-align:left }}
.footer-left .fa,.footer-right .fa{color:rgba(255,47,179,.95)}

::selection{background:rgba(255,47,179,.35)}
