/*
Theme Name: Xtreme PC Theme V6.1 Condensed
Version: 6.1
*/

:root{
  --bg:#050505;
  --panel:#0f0f0f;
  --accent:#ff2a2a;
  --text:#ffffff;
  --muted:#b0b0b0;
}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  background:radial-gradient(circle at top,#0a0a0a,#050505);
  color:var(--text);
  line-height:1.5;
}

/* HEADER */
.topbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 28px;
  background:rgba(10,10,10,0.65);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,0.06);
  z-index:999;
  box-sizing:border-box;
}

/* FIXED LOGO */
.top-left img{
  max-height:58px;
  width:auto !important;
  object-fit:contain;
  display:block;
}

/* PHONE */
.top-center{
  font-size:30px;
  font-weight:800;
  letter-spacing:.5px;
}

.top-center a{
  color:#fff;
  text-decoration:none;
  transition:.3s;
}

.top-center a:hover{
  color:var(--accent);
  text-shadow:0 0 12px rgba(255,0,0,.6);
}

/* MASCOT */
.top-right img{
  max-height:58px;
  width:auto;
  object-fit:contain;
  display:block;
}

/* CONTENT WIDTH */
.container{
  max-width:920px;
  margin:auto;
}

/* HERO */
.hero{
  min-height:78vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background-size:cover;
  background-position:center;
  position:relative;
  padding:120px 20px 60px;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,rgba(0,0,0,.45),#050505);
}

.hero .container{
  position:relative;
  z-index:2;
}

h1{
  font-size:48px;
  line-height:1.1;
  margin:0 0 14px;
}

.hero p{
  font-size:18px;
  color:var(--muted);
  margin:0 auto;
  max-width:720px;
}

/* SECTIONS */
section{
  padding:60px 20px;
  opacity:0;
  transform:translateY(30px);
  transition:all .7s ease;
}

section.visible{
  opacity:1;
  transform:translateY(0);
}

h2{
  font-size:34px;
  margin:0 0 22px;
  text-align:center;
}

p{
  margin-top:0;
}

/* SERVICE CARDS */
.services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
  margin-top:20px;
}

.card{
  background:linear-gradient(145deg,#111,#080808);
  padding:24px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.06);
  text-align:center;
  transition:.35s;
  position:relative;
  overflow:hidden;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 35px rgba(0,0,0,.45);
  border-color:rgba(255,60,60,.25);
}

.card::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top,rgba(255,0,0,.12),transparent 60%);
  opacity:0;
  transition:.35s;
}

.card:hover::before{
  opacity:1;
}

/* CTA */
.cta{
  text-align:center;
  padding-top:40px;
  padding-bottom:70px;
}

.cta a{
  display:inline-block;
  margin-top:10px;
  padding:14px 30px;
  border-radius:12px;
  text-decoration:none;
  color:#fff;
  font-size:28px;
  font-weight:800;
  background:linear-gradient(90deg,#ff2a2a,#a80000);
  transition:.3s;
}

.cta a:hover{
  transform:scale(1.03);
  box-shadow:0 0 22px rgba(255,0,0,.45);
}

/* MOBILE */
@media(max-width:768px){

  .topbar{
    padding:10px 14px;
    gap:10px;
  }

  .top-left img,
  .top-right img{
    max-height:42px;
  }

  .top-center{
    font-size:20px;
  }

  .hero{
    min-height:65vh;
    padding-top:100px;
  }

  h1{
    font-size:32px;
  }

  h2{
    font-size:28px;
  }

  section{
    padding:45px 18px;
  }

}
