/* YOUR TATTOO STUDIO — simple dark theme */

:root {
  --bg: #111111;
  --bg-2: #1c1c1c;
  --text: #ffffff;
  --muted: #bdbdbd;
  --accent: #c62828;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* Navbar */
.site-header {
  background: #0d0d0d;
  border-bottom: 1px solid #2a2a2a;
}

.topbar {
  background: #000;
  border-bottom: 1px solid #2a2a2a;
  color: var(--muted);
  font-size: 0.8rem;
  padding: 8px 0;
}

.topbar i {
  color: var(--accent);
}

.brand {
  color: var(--text);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1rem;
}

.brand span {
  color: var(--accent);
}

.brand:hover {
  color: var(--accent);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 72px;
  gap: 10px;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-label {
  display: none;
  color: var(--text);
  border: 1px solid #333;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 1.2rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.9rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.btn-red {
  background: var(--accent);
  color: var(--text) !important;
  border: none;
  padding: 10px 18px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
}

.btn-red:hover {
  background: #a51f1f;
  color: var(--text) !important;
}

.btn-outline {
  border: 1px solid #fff;
  color: var(--text);
  padding: 10px 18px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
}

.btn-outline:hover {
  background: #fff;
  color: #111;
}

@media (max-width: 991.98px) {
  .nav-toggle-label {
    display: block;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 16px;
    gap: 12px;
  }

  .nav-toggle:checked ~ .main-nav {
    display: flex;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  background-image: url("https://images.pexels.com/photos/35742622/pexels-photo-35742622.jpeg?auto=compress&cs=tinysrgb&w=1600");
  /* Replace later with: assets/images/hero.jpg */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero p {
  color: var(--muted);
  max-width: 480px;
  margin: 16px 0 28px;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-2);
}

.section-title {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.lead-text {
  color: var(--muted);
  max-width: 560px;
}

.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Cards */
.service-card {
  background: var(--bg-2);
  border: 1px solid #2a2a2a;
  height: 100%;
  padding: 28px 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.service-card i {
  color: var(--accent);
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Gallery */
.gallery-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item {
  overflow: hidden;
  display: block;
  background: #000;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
  opacity: 0.85;
}

.page-hero {
  background: var(--bg-2);
  padding: 70px 0 40px;
  border-bottom: 1px solid #2a2a2a;
}

/* Why us */
.why-box h3 {
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.why-box p {
  color: var(--muted);
  margin: 0;
}

.why-box i {
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

/* CTA */
.cta-band {
  background: var(--accent);
  padding: 70px 0;
  text-align: center;
}

.cta-band .btn-outline {
  border-color: #fff;
}

/* Forms */
.form-control {
  background: #151515;
  border: 1px solid #333;
  color: var(--text);
  border-radius: 0;
}

.form-control:focus {
  background: #151515;
  border-color: var(--accent);
  color: var(--text);
  box-shadow: none;
}

.form-label {
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 18px;
}

.contact-info strong {
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

/* Footer */
.site-footer {
  background: #0d0d0d;
  padding: 50px 0 0;
  border-top: 1px solid #2a2a2a;
}

.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  margin-top: 30px;
  padding: 16px 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.social a {
  color: var(--muted);
  margin-right: 12px;
  font-size: 1.15rem;
}

.social a:hover {
  color: var(--accent);
}

@media (max-width: 767.98px) {
  .section {
    padding: 56px 0;
  }

  .about-img,
  .gallery-img {
    height: 240px;
  }

  .hero {
    min-height: 80vh;
  }
}
