/* ==========================================================================
   Everlast Tattoo — styles.css
   Design system: schwarz / türkis / gold, Barock-Gravur trifft Steampunk-Messing
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Jost:wght@300;400;500;600&display=swap');

:root {
  /* Farben */
  --black: #08080a;
  --black-deep: #030303;
  --ink: #121410;
  --ink-light: #191c17;
  --parchment: #efe6d3;
  --parchment-dim: #b9b2a2;
  --gold-bright: #e8d4a0;
  --gold: #c9a961;
  --gold-deep: #8a7238;
  --teal-bright: #2fd0c4;
  --teal: #14a39c;
  --teal-deep: #0b4f4c;
  --line: rgba(201, 169, 97, 0.25);
  --line-strong: rgba(201, 169, 97, 0.5);

  /* Typo */
  --font-display: 'Cinzel', 'Georgia', serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;

  /* Layout */
  --max-width: 1120px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-pad: clamp(4rem, 10vw, 7rem);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--black);
  color: var(--parchment);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--gold-bright);
  font-weight: 600;
  letter-spacing: 0.04em;
}

::selection {
  background: var(--teal-deep);
  color: var(--gold-bright);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Ganzseitiges Hintergrund-Logo ---------- */
.bg-logo {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url('assets/logo.webp');
  background-repeat: no-repeat;
  background-position: center 22vh;
  background-size: min(820px, 88vw) auto;
  opacity: 0.14;
}
.bg-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 30%, transparent 0%, var(--black) 82%),
    linear-gradient(180deg, transparent 0%, var(--black) 100%);
}

.page {
  position: relative;
  z-index: 1;
}

:focus-visible {
  outline: 2px solid var(--teal-bright);
  outline-offset: 3px;
}

/* ---------- Utility ---------- */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.wrap--narrow {
  max-width: 620px;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--teal-bright);
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--teal);
}

/* ---------- Ornamental divider (Bullauge-Motiv) ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto;
  max-width: 420px;
  padding: 0 var(--gutter);
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong));
}
.divider::after { background: linear-gradient(90deg, var(--line-strong), transparent); }
.divider .rivet {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  position: relative;
  flex: none;
}
.divider .rivet::after {
  content: '';
  position: absolute;
  inset: 2.5px;
  border-radius: 50%;
  background: var(--teal);
}

/* ---------- Nav ---------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
}
.site-nav.is-scrolled {
  background: rgba(8, 8, 10, 0.92);
  backdrop-filter: blur(6px);
  border-bottom-color: var(--line);
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.site-nav__mark {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.32em;
  color: var(--gold-bright);
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav__links {
  display: flex;
  gap: clamp(1.1rem, 3vw, 2.4rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__links a {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--parchment-dim);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}
.site-nav__links a:hover,
.site-nav__links a.is-active {
  color: var(--gold-bright);
}
.site-nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--teal-bright);
  transition: right 0.3s ease;
}
.site-nav__links a:hover::after,
.site-nav__links a.is-active::after {
  right: 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(6rem, 12vh, 8rem) var(--gutter) 4rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20, 163, 156, 0.10), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(138, 114, 56, 0.10), transparent 55%);
  overflow: hidden;
}

/* Bullauge frame around video */
.portal {
  position: relative;
  width: min(300px, 72vw);
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  padding: 14px;
}
.portal__frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.portal video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  box-shadow: 0 0 0 1px var(--line-strong), 0 25px 60px -20px rgba(0,0,0,0.8);
}
.portal .rivet {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--black);
}
.portal .rivet::after {
  content: '';
  position: absolute;
  inset: 2.5px;
  border-radius: 50%;
  background: var(--teal);
}
.portal .rivet.tl { top: 0; left: 0; }
.portal .rivet.tr { top: 0; right: 0; }
.portal .rivet.bl { bottom: 0; left: 0; }
.portal .rivet.br { bottom: 0; right: 0; }

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--gold), transparent);
  opacity: 0.6;
}
@media (prefers-reduced-motion: no-preference) {
  .hero__scroll { animation: pulse-line 2.4s ease-in-out infinite; }
}
@keyframes pulse-line {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.75; }
}

/* ---------- Sections ---------- */
section { position: relative; }

.section {
  padding: var(--section-pad) 0;
}
.section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}
.section-head h2 {
  margin-top: 0.9rem;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}
.section-head p {
  max-width: 46ch;
  margin: 1rem auto 0;
  color: var(--parchment-dim);
  font-size: 0.98rem;
}

/* ---------- Cards / Panels (Messing-Rahmen leicht) ---------- */
.panel {
  position: relative;
  background: linear-gradient(180deg, var(--ink-light), var(--ink));
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(1.6rem, 4vw, 2.4rem);
}
.panel::before,
.panel::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid var(--gold-deep);
  background: var(--black);
}
.panel::before { top: 10px; left: 10px; }
.panel::after { top: 10px; right: 10px; }

/* ---------- Tattoo & Piercing (Kontakt-Karten) ---------- */
.artist-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-width: 460px;
  margin: 0 auto;
}
.artist-card__badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
  overflow: hidden;
}
.artist-card__badge svg { width: 24px; height: 24px; stroke: var(--teal-bright); }
.artist-card__badge--photo {
  border-color: var(--line-strong);
}
.artist-card__badge--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.artist-card h3 {
  font-size: 1.05rem;
  color: var(--gold-bright);
}
.artist-card p {
  color: var(--parchment-dim);
  font-size: 0.88rem;
  margin: 0;
}

.price-note {
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--parchment-dim);
  text-align: center;
  width: 100%;
}
.price-note strong { color: var(--gold-bright); font-weight: 500; }

/* ---------- Kontakt ---------- */
.kontakt-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.75rem;
}
@media (min-width: 800px) {
  .kontakt-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  }
}

.kontakt-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}
.kontakt-info .addr {
  color: var(--parchment-dim);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.contact-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.contact-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--parchment);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.contact-list a:hover { color: var(--teal-bright); }
.contact-list svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  flex: none;
  transition: stroke 0.2s ease;
}
.contact-list a:hover svg { stroke: var(--teal-bright); }

.contact-list--center {
  align-items: center;
  margin-bottom: 0.25rem;
}

.social-row {
  display: flex;
  gap: 0.85rem;
}
.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.social-row a:hover {
  border-color: var(--teal-bright);
  transform: translateY(-2px);
}
.social-row svg { width: 17px; height: 17px; stroke: var(--gold-bright); }
.social-row a:hover svg { stroke: var(--teal-bright); }

.map-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  min-height: 280px;
  filter: grayscale(0.55) contrast(1.05) brightness(0.9);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 3rem var(--gutter) 3rem;
  text-align: center;
  border-top: 1px solid var(--line);
}
.site-footer__mark {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.9rem;
}
.site-footer p {
  margin: 0.3rem 0 0;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: var(--parchment-dim);
}
.site-footer__copy {
  margin-top: 0.75rem !important;
  color: var(--gold-deep) !important;
  font-size: 0.7rem !important;
}
