/* ------------ GLOBAL THEME -------------- */

:root{
  --accent:#e50914;
  --light:#eeeeee;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Poppins", sans-serif;
  color:white;
  background:#000;
  line-height:1.6;
}

/* background image all pages */
body::before{
  content:"";
  position:fixed;
  inset:0;
  background:url("images/background/tattoo-bg.png") center/cover no-repeat;
  filter:grayscale(100%) contrast(120%);
  z-index:-2;
}

/* dark overlay */
body::after{
  content:"";
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.83);
  z-index:-1;
}

/* ---------- NAVBAR ----------- */

header{
  position:fixed;
  top:0;
  width:100%;
  z-index:1000;
}

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 60px;
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}

nav a{
  color:white;
  text-decoration:none;
  margin-left:22px;
  font-weight:600;
  transition:.3s;
}

nav a:hover{
  color:var(--accent);
}

/* ---------- HERO SECTION ----------- */

.hero{
  height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding-top:60px;
}

.hero h1{
  font-size:3.6rem;
  letter-spacing:3px;
}

.hero p{
  margin-top:10px;
  color:#ccc;
}

.btn{
  margin-top:18px;
  padding:12px 32px;
  border-radius:30px;
  background:var(--accent);
  color:white;
  text-decoration:none;
  transition:.3s;
}

.btn:hover{
  transform:scale(1.05);
  box-shadow:0 0 20px rgba(229,9,20,.7);
}

/* -------- GLASS CARDS --------- */

.card{
  backdrop-filter: blur(10px);
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.15);
  border-radius:18px;
  padding:22px;
  margin:14px 0;
  transition:.3s;
}

.card:hover{
  transform:translateY(-5px);
  border-color:var(--accent);
}

/* ---------- GRID SECTIONS ---------- */

.section{
  width:90%;
  max-width:1100px;
  margin:0 auto 60px auto;
}

/* ---------- GALLERY ---------- */

.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
  gap:15px;
  padding:40px;
}

.gallery img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 15px 30px rgba(0,0,0,0.6);
  transition:transform 0.4s ease, filter 0.4s ease;
  filter:grayscale(100%);
}

.gallery img:hover{
  transform:scale(1.05);
  filter:none;
}

/* ---------- FAQ ---------- */

.faq-item{
  margin:10px 0;
}

.faq-q{
  color:var(--accent);
  font-weight:700;
}

/* ---------- FEEDBACK ---------- */

.feedback-section{
  max-width:900px;
  margin:80px auto;
  padding:20px;
  text-align:center;
}

.feedback-section h2{
  color:var(--accent);
  margin-bottom:30px;
}

.feedback-card{
  background:rgba(0,0,0,0.7);
  padding:20px;
  border-radius:12px;
  margin-bottom:20px;
}

.feedback-text{
  font-style:italic;
  margin-bottom:10px;
}

.feedback-card span{
  font-size:14px;
  color:#ccc;
}

/* ---------- FOOTER ---------- */

footer{
  text-align:center;
  padding:25px;
  color:#aaa;
  font-size:13px;
}

/* ---------- MOBILE ---------- */

@media(max-width:768px){
  .hero h1{
    font-size:2.4rem;
  }

  nav{
    padding:14px 25px;
  }

  nav a{
    margin-left:12px;
  }
}
