﻿:root{
  --gold:#f5c46b;
  --dark:#050505;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:var(--dark);
  color:#fff;
  overflow-x:hidden;
}

/* PRELOADER */
#preloader{
  position:fixed;
  inset:0;
  background:#000;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  z-index:9999;
}
.loader-needle{
  width:4px;
  height:80px;
  background:linear-gradient(var(--gold),#000);
  animation:needle 1s infinite;
}
@keyframes needle{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(20px)}
}

/* HEADER */
:root{
  --gold:#f6c36a;
}

/* ================= MARQUEE ================= */
.tattoo-marquee {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000;
  border-bottom: 1px solid rgba(246,195,106,.3);
  z-index: 999;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 60px;
  padding: 10px 0;
  width: max-content;
  animation: marqueeMove 30s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--gold);
  opacity: .9;
}

@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================= HEADER ================= */
:root {
  --gold: #f6c36a;
}

/* =========================
   ORIGINAL HEADER STYLES
   ========================= */
.main-header {
  position: fixed;
  top: 40px; /* BELOW MARQUEE */
  width: 100%;
  z-index: 998;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.header-inner {
  max-width: 1400px;
  margin: auto;
  padding: 14px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 64px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  letter-spacing: .5px;
  position: relative;
  opacity: .85;
  transition: .3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: .3s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA */
.nav-links .cta {
  padding: 8px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--gold), #c9972b);
  color: #000;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(246,195,106,.4);
}

.nav-links .cta::after {
  display: none;
}

/* =========================
   HAMBURGER MENU
   ========================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: 0.3s;
}

/* =========================
   RESPONSIVE STYLES
   ========================= */

/* Tablet */
@media (max-width: 1024px) {
  .header-inner {
    padding: 12px 5vw;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 13px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .main-header {
    top: 0; /* stick header to top */
    width: 100%;
    padding: 10px 4vw;
    z-index: 1100; /* ensure header is above marquee/content */
    background: rgba(0,0,0,.85); /* semi-transparent */
  }

  .header-inner {
    justify-content: space-between;
    flex-wrap: wrap; /* logo and hamburger fit */
  }

  .logo {
    height: 58px;
  }

  .nav-links {
    position: fixed;
    top: 60px; /* below header */
    right: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(0,0,0,.95);
    backdrop-filter: blur(14px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transition: 0.4s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0; /* slide in menu */
  }

  .nav-links a {
    font-size: 16px;
    opacity: 1;
  }

  .nav-links .cta {
    padding: 12px 26px;
    font-size: 15px;
  }

  .hamburger {
    display: flex;
    z-index: 1001; /* above menu */
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .logo {
    height: 34px;
  }

  .nav-links a {
    font-size: 15px;
  }
}
.hamburger {
  display:none;
  flex-direction: column;
   align-items: center;
    justify-content: space-between;
  cursor: pointer;
  gap: 4px;
  position: relative; /* ensure it's above other elements */
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    z-index: 1101; /* above header and menu */
  }
}
.main-header {
  top: 40px; /* if marquee height is 40px */
}



/* HERO */
/* ================= HERO SECTION ================= */
/* ================= HERO ================= */
/* ================= HERO SECTION ================= */
.hero{
  min-height: calc(100vh - 120px); /* accounts for marquee + header */
  padding-top: 300px; /* pushes content below header */
  padding-bottom: 80px;
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;
  text-align:center;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:radial-gradient(
    circle at center,
    rgba(245,196,107,.18),
    transparent 65%
  );
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1{
  font-size:clamp(2.6rem,6vw,4.2rem);
  font-weight:800;
}

.hero p{
  margin:18px 0 0;
  color:#ccc;
  font-size:1.05rem;
}

.hero a{
  display:inline-block;
  margin-top:48px;
  padding:14px 34px;
  border-radius:30px;
  background:linear-gradient(135deg,var(--gold),#c9972b);
  color:#000;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 10px 30px rgba(246,195,106,.4);
}

.hero-badge{
  display:block;
  margin-top:16px;
  font-size:.9rem;
  letter-spacing:2px;
  color:var(--gold);
  opacity:.9;
}

/* ================= INK SVG ================= */
.ink-svg{
  position:absolute;
  bottom:12%; /* safer position */
  left:0;
  width:100%;
  z-index:0;
  pointer-events:none;
}

.ink-svg path{
  fill:none;
  stroke:var(--gold);
  stroke-width:1;
  opacity:.7;
}



/* MARQUEE */
.marquee{
  background:#111;
  overflow:hidden;
  white-space:nowrap;
}
.marquee span{
  display:inline-block;
  padding:14px;
  animation:marquee 18s linear infinite;
}
@keyframes marquee{
  from{transform:translateX(100%)}
  to{transform:translateX(-100%)}
}

/* SECTIONS */
section{
  padding:100px 8vw;
}
h2{
  font-size:clamp(2rem,4vw,3rem);
  margin-bottom:40px;
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 6%;
}

/* IMAGE SECTION */
.about-img {
  max-width: 500px;
}

.about-img img {
  width: 98%;
  height:560px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

/* TEXT SECTION */
.about-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #ddd;
}

.about span {
  color: var(--gold);
  font-weight: 600;
}

.about-highlight {
  margin-top: 20px;
  font-size: 17px;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 5%;
  }

  .about-img {
    max-width: 100%;
  }

  .about-img img {
    height: 500px;
  }

  .about-text h2 {
    font-size: 34px;
  }
}


/* SERVICES */
/* PREMIUM SERVICES */
.services-premium{
  padding:120px 8vw;
  overflow:hidden;
  text-align:center; /* ✅ centers heading only */
}

/* ================= SECTION TITLE ================= */
.section-title{
  font-size:clamp(2rem,4vw,3.2rem);
  margin-bottom:60px;
  font-weight:800;
  letter-spacing:1px;
  position:relative;
  display:inline-block; /* allows underline styling */
}

/* subtle gold underline (tattoo premium vibe) */
.section-title::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-12px;
  transform:translateX(-50%);
  width:80px;
  height:2px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
}

.services-track{
  display:flex;
  gap:30px;
  animation:serviceScroll 10s linear infinite;
}

@keyframes serviceScroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
.service-box{
  min-width:300px;
  padding:40px 30px;
  border-radius:28px;
  background:linear-gradient(145deg,#0f0f0f,#050505);
  border:1px solid rgba(246,195,106,.35);
  transition:all .4s ease;
  position:relative;
}

.service-box span{
  font-size:34px;
  display:inline-block;
  margin-bottom:16px;
}

.service-box h3{
  margin-bottom:10px;
  color:var(--gold);
}

.service-box:hover{
  transform:translateY(-14px) scale(1.03);
  box-shadow:0 25px 60px rgba(246,195,106,.35);
}

/* Pause scroll on hover (luxury feel) */
.services-track:hover{
  animation-play-state:paused;
}

/* REVIEWS */
/* ================= REVIEWS SECTION ================= */
.reviews-section{
  padding:120px 0;
  overflow:hidden;
  text-align:center; /* ✅ centers heading */
}

/* ================= SECTION TITLE ================= */
.section-title{
  font-size:clamp(2rem,4vw,3.2rem);
  margin-bottom:60px;
  font-weight:800;
  letter-spacing:1px;
  position:relative;
  display:inline-block;
}

/* Gold underline (tattoo premium style) */
.section-title::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-12px;
  transform:translateX(-50%);
  width:80px;
  height:2px;
  background:linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent
  );
}

/* ================= REVIEWS AUTO SCROLL ================= */
.reviews-wrapper{
  overflow:hidden;
  margin-top:50px;
}

.reviews-track{
  display:flex;
  gap:28px;
  animation:reviewsScroll 10s linear infinite;
}

/* ================= REVIEW CARD ================= */
.review-card{
  min-width:320px;
  background:linear-gradient(145deg,#0d0d0d,#000);
  border:1px solid rgba(246,195,106,.25);
  border-radius:22px;
  padding:26px;
  box-shadow:0 20px 50px rgba(0,0,0,.7);
  transition:.50s ease;
}

.review-card:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 25px 70px rgba(246,195,106,.35);
}

.review-card .stars{
  color:var(--gold);
  letter-spacing:2px;
  margin-bottom:10px;
}

.review-card p{
  font-size:15px;
  line-height:1.6;
  opacity:.9;
}

.review-card span{
  display:block;
  margin-top:12px;
  font-weight:600;
  color:var(--gold);
}

/* Pause on hover (luxury feel) */
.reviews-track:hover{
  animation-play-state:paused;
}

@keyframes reviewsScroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}





/* GALLERY */

/* ================= OUR WORK SECTION ================= */
.our-work{
  padding:120px 8vw;
  overflow:hidden;
  text-align:center;
}

/* ================= SECTION TITLE ================= */
.section-title{
  font-size:clamp(2rem,4vw,3.2rem);
  margin-bottom:60px;
  font-weight:800;
  letter-spacing:1px;
  position:relative;
  display:inline-block;
}

/* Gold underline */
.section-title::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-12px;
  transform:translateX(-50%);
  width:80px;
  height:2px;
  background:linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent
  );
}

/* ================= WORK AUTO SCROLL ================= */
.work-track{
  display:flex;
  gap:24px;
  animation:workScroll 10s linear infinite;
}

@keyframes workScroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-60%); }
}

/* ================= IMAGES ================= */
.work-track img{
  width:300px;
  height:380px;
  object-fit:cover;
  border-radius:22px;
  transition:.4s ease;
}

.work-track img:hover{
  transform:scale(1.08);
  box-shadow:0 25px 60px rgba(246,195,106,.4);
}


/* FOOTER */
/* ================= FOOTER LINKS (LOGO MATCH) ================= */
:root{
  --gold:#f6c36a;
}

/* =========================
   FOOTER BASE
========================= */
.site-footer{
  padding:90px 8vw 30px;
  background:radial-gradient(circle at top,#0c0c0c,#000);
  border-top:1px solid rgba(246,195,106,.25);
  position:relative;
}

/* subtle gold divider */
.site-footer::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:65%;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
}

/* =========================
   FOOTER GRID LAYOUT
========================= */
.footer-inner{
  max-width:1200px;                 /* center footer */
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:50px;
  align-items:start;
}

/* =========================
   HEADINGS
========================= */
.footer-col h3,
.footer-col h4{
  color:var(--gold);
  margin-bottom:16px;
  letter-spacing:.6px;
  text-shadow:0 0 14px rgba(246,195,106,.25);
}

/* =========================
   TEXT
========================= */
.footer-col p{
  font-size:14px;
  opacity:.85;
  line-height:1.6;
}

/* =========================
   LINKS
========================= */
.footer-col a{
  display:block;
  font-size:14px;
  margin-bottom:10px;
  color:#e8c46a;
  opacity:.85;
  transition:.3s ease;
  position:relative;
  padding-left:14px;
  text-decoration:none;
}

/* arrow marker */
.footer-col a::before{
  content:"›";
  position:absolute;
  left:0;
  opacity:.6;
  transition:.3s;
}

.footer-col a:hover{
  color:var(--gold);
  opacity:1;
  transform:translateX(6px);
}

.footer-col a:hover::before{
  opacity:1;
}

/* =========================
   FOOTER BOTTOM
========================= */
.footer-bottom{
  max-width:1200px;
  margin:60px auto 0;
  text-align:center;
  font-size:13px;
  opacity:.65;
  letter-spacing:.8px;
}

.footer-bottom span{
  color:var(--gold);
}

/* =========================
   TABLET VIEW
========================= */
@media(max-width:1024px){
  .footer-inner{
    gap:40px;
    text-align:left;
  }
}

/* =========================
   MOBILE VIEW
========================= */
@media(max-width:768px){
  .site-footer{
    padding:70px 6vw 25px;
  }

  .footer-inner{
    gap:35px;
    text-align:center;
    justify-items:center;           /* 🔥 perfect center */
  }

  .footer-col{
    max-width:320px;
  }

  .footer-col a{
    padding-left:0;
  }

  .footer-col a::before{
    display:none;
  }

  .footer-bottom{
    margin-top:45px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media(max-width:480px){
  .footer-col p,
  .footer-col a{
    font-size:13px;
  }
}
.contact-col .contact-item {
  display: flex;
  align-items: flex-start; /* aligns icon with first line */
  gap: 12px;
  margin-bottom: 14px;
  color: #f6c36a;
  font-size: 15px;
  line-height: 1.6;
}

.contact-col .icon {
  font-size: 16px;
  line-height: 1.6;
}

.contact-col a {
  color: #f6c36a;
  text-decoration: none;
}

.contact-col a:hover {
  text-decoration: underline;
}




/* PROMO */
/* ================= PROMO POPUP ================= */
#promo{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.78);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:20px; /* mobile safety */
}

.promo-box{
  position:relative;
  max-width:420px;
  width:100%;
  background:#0f0f0f;
  padding:32px 28px;
  border-radius:28px;
  text-align:center;
  border:1px solid rgba(246,195,106,.6);
  box-shadow:
    0 30px 80px rgba(0,0,0,.8),
    inset 0 0 30px rgba(246,195,106,.08);
}

.promo-box h3{
  font-size:1.4rem;
  margin-bottom:10px;
  color:var(--gold);
}

.promo-box p{
  font-size:.95rem;
  color:#ccc;
  line-height:1.6;
}

.promo-box a{
  display:inline-block;
  margin-top:20px;
  padding:12px 28px;
  border-radius:26px;
  background:linear-gradient(135deg,var(--gold),#c9972b);
  color:#000;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 10px 35px rgba(246,195,106,.5);
  transition:transform .3s ease, box-shadow .3s ease;
}

.promo-box a:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 45px rgba(246,195,106,.65);
}

#closePromo{
  position:absolute;
  top:14px;
  right:18px;
  background:none;
  border:none;
  color:#aaa;
  font-size:22px;
  cursor:pointer;
  transition:color .3s ease;
}

#closePromo:hover{
  color:#fff;
}

/* ================= INK DROP EFFECT ================= */
.ink-drop{
  position:relative;
  overflow:hidden;
}

.ink-drop::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at center,
      rgba(246,195,106,.35),
      transparent 60%);
  transform:scale(0);
  opacity:.9;
  transition:
    transform 1.4s ease-out,
    opacity 1.4s ease-out;
  pointer-events:none;
}

.ink-drop.active::before{
  transform:scale(1);
  opacity:0;
}
.work-track a img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.work-track a img:hover {
  transform: scale(1.05);
}
