/* ===== Coiffeur Juan – Styles (eckig außer Buttons) ===== */
:root{
  --bg:#0f172a;
  --card:#111827;
  --muted:#a0a7b5;
  --text:#e5e7eb;
  --brand:#c0c5ce;
  --brand-ink:#0c0c0c;
  --ring: rgba(192,197,206,.45);
  --shadow:0 12px 32px rgba(0,0,0,.35);
  --max:1200px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;background:var(--bg);color:var(--text);line-height:1.6}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
a:hover{color:var(--brand)}

a{color:inherit;text-decoration:none}
a:hover{color:var(--brand)}

/* === Interaktive Links (Tel, Mail, Maps etc.) === */
a[href^="tel:"],
a[href^="mailto:"],
a[href*="maps.google."] {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s ease, text-shadow 0.25s ease;
  position: relative;
}

a[href^="tel:"]:hover,
a[href^="mailto:"]:hover,
a[href*="maps.google."]:hover {
  color: #fff;
  text-shadow: 0 0 6px rgba(192,197,206,.6);
}

a[href^="tel:"]:active::after,
a[href^="mailto:"]:active::after,
a[href*="maps.google."]:active::after {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  border-radius: 4px;
  background: rgba(192,197,206,.15);
  animation: linkFlash .35s ease;
}

@keyframes linkFlash {
  from { opacity: 1; }
  to { opacity: 0; }
}


/* Greek Key */
.greek-key{
  --sz: 14px;
  background:
    conic-gradient(from 90deg at var(--sz) var(--sz), var(--brand) 90deg, transparent 0) 0 0/ calc(var(--sz)*2) calc(var(--sz)*2),
    linear-gradient(var(--brand), var(--brand)) top/100% 3px no-repeat,
    linear-gradient(var(--brand), var(--brand)) bottom/100% 3px no-repeat;
  border:3px solid var(--brand);
  border-radius:0;
}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(1.2) blur(6px);
  background:linear-gradient(180deg, rgba(3,7,18,.9), rgba(3,7,18,.6));
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header .wrap{max-width:var(--max);margin:auto;display:flex;align-items:center;gap:16px;padding:12px 20px}
.brand{display:flex;align-items:center;gap:12px}
.brand img{width:48px;height:48px;box-shadow:var(--shadow)}
.brand .name{font-weight:700;letter-spacing:.4px}
.nav{margin-left:auto;display:flex;gap:22px}
.nav a{color:var(--text);padding:8px 10px;border-radius:0}
.nav a.active,.nav a:hover{background:rgba(255,255,255,.06);outline:1px solid rgba(255,255,255,.08)}
.burger{display:none;margin-left:auto;background:none;border:0;color:var(--text);font-size:22px;padding:8px;border-radius:0}

/* Mobile-Menü Standard: immer ausgeblendet */
.mobile {
  display: none;
  position: fixed;
  inset: 64px 12px auto 12px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius:0;
  box-shadow: var(--shadow);
  padding: 12px;
}
.mobile a {
  display: block;
  color: var(--text);
  padding: 12px;
  border-radius:0;
}
.mobile a:hover {
  background: rgba(255,255,255,.06);
}

@media (max-width:860px){
  .nav { display: none; }
  .burger { display: block; }
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 82vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(1200px 600px at 70% 20%, rgba(192,197,206,.12), transparent),
    radial-gradient(800px 400px at 20% 80%, rgba(192,197,206,.08), transparent),
    url('assets/Salon_Edited.png') center/cover no-repeat;
  background-attachment: fixed;
}

@media (max-width: 860px) {
  .hero {
    min-height: 100vh;            /* Vollbild auf Handy */
    background-attachment: scroll;/* verhindert Zoom-Bug auf iOS */
    background-position: center;
  }
}


@media (min-width:900px){
  .hero{background-attachment:fixed;}
}
.hero::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(15,23,42,.25), rgba(15,23,42,.85));
  z-index:-1;
}
.hero .inner{max-width:var(--max);padding:80px 20px;display:grid;gap:22px}
.kicker{font-size:14px;letter-spacing:.28em;text-transform:uppercase;color:var(--brand)}
h1{font-family: 'Playfair Display', ui-serif, Georgia, serif; font-size: clamp(38px, 6vw, 64px); line-height:1.1; margin:0}
.lead{font-size: clamp(16px, 2.5vw, 20px); color: var(--muted); max-width: 62ch}
.ctas{display:flex;flex-wrap:wrap;gap:12px;margin-top:6px}
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:12px 16px;border-radius:8px;text-decoration:none;font-weight:600;
  border:1px solid rgba(255,255,255,.14);
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary{background:var(--brand);color:var(--brand-ink)}
.btn-ghost{background:transparent;color:var(--text)}
.btn:hover{transform:translateY(-1px);box-shadow:0 12px 24px rgba(192,197,206,.18)}

/* Sections */
.section{max-width:var(--max);margin:auto;padding:72px 20px}
.section h2{font-family:'Playfair Display', ui-serif, Georgia, serif; font-size: clamp(28px, 4vw, 40px); margin:0 0 14px}
.sub{color:var(--muted);margin-bottom:24px}

/* About */
.about{display:grid;grid-template-columns:1.1fr .9fr;gap:24px}
.about .card{background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border:1px solid rgba(255,255,255,.08); border-radius:0; padding:22px; box-shadow:var(--shadow)}

.about .photo {
    border-radius: 0;
    overflow: hidden;
    border: 1px solid silver; /* statt rgba(...) */
}

@media (max-width:900px){.about{grid-template-columns:1fr}}

/* Prices / Grid */
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
@media (max-width:900px){.grid{grid-template-columns:1fr}}
.card{background:var(--card);border:1px solid rgba(255,255,255,.08);border-radius:0;padding:18px;box-shadow:var(--shadow)}
.card .row{display:flex;justify-content:space-between;align-items:center;padding:10px 8px;border-bottom:1px dashed rgba(255,255,255,.08)}
.card .row:last-child{border-bottom:0}
.card .rounded{margin-top:10px;border-radius:0;border:1px solid rgba(255,255,255,.08)}
.badge{display:inline-block;background:rgba(255,255,255,.08);padding:4px 8px;border-radius:0;font-size:12px;border:1px solid rgba(255,255,255,.12)}

/* Gallery */
.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.gallery img {
  width: 100%;
  height: 500px;            /* Einheitliche Höhe */
  object-fit: cover;        /* Zuschneiden statt verzerren */
  border-radius: 14px;
  border: 2px solid silver; /* Optional: silberner Rand */
  box-shadow: 0 0 12px rgba(192,192,192,0.25);
}

@media (max-width:900px){
  .gallery {
    grid-template-columns: 1fr;   /* Nur 1 Bild pro Zeile */
  }
}

/* Reviews */
.reviews{display:grid;grid-template-columns:1.2fr .8fr;gap:16px}
@media (max-width:900px){.reviews{grid-template-columns:1fr}}
.quote{padding:18px;border-radius:0;background:linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.03));border:1px solid rgba(255,255,255,.08)}
.stars{letter-spacing:2px}

/* Contact & Hours */
.table{width:100%;border-collapse:collapse;border-radius:0;overflow:hidden;border:1px solid rgba(255,255,255,.08)}
.table th,.table td{padding:12px 14px;text-align:left;border-bottom:1px solid rgba(255,255,255,.08)}
.table tr:last-child td{border-bottom:0}
.status{display:inline-flex;gap:8px;align-items:center}
.dot{width:10px;height:10px;border-radius:50%}
.dot.open{background:#22c55e;box-shadow:0 0 0 4px rgba(34,197,94,.15)}
.dot.closed{background:#ef4444;box-shadow:0 0 0 4px rgba(239,68,68,.15)}

/* Footer */
footer{padding:40px 20px;border-top:1px solid rgba(255,255,255,.08);background:rgba(0,0,0,.2)}
footer .wrap{max-width:var(--max);margin:auto;display:grid;grid-template-columns:1.2fr .8fr;gap:20px}
@media (max-width:900px){footer .wrap{grid-template-columns:1fr}}
small, .muted{color:var(--muted)}

/* Scroll reveal */
.reveal{opacity:0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease}
.reveal.show{opacity:1; transform: translateY(0)}

.review-slider {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
  height: 260px;                /* feste Höhe für gleich grosse Slides */
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  animation: fade .6s ease;
}

.slide.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.stars {
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 18px;
}

.quote p {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.5;
}

.quote small {
  color: var(--muted);
  font-style: italic;
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.slider-nav button {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
  font-size: 20px;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  transition: all .2s ease;
}

.slider-nav button:hover {
  background: var(--brand);
  color: var(--brand-ink);
}

@keyframes fade {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}
