@import url("../fonts/fonts.css");

/* ---------------------------------------------------------------
   Gigolo Hundesalon — Seefeld in Tirol
   Statische Website, keine Cookies, keine externen Ressourcen.
   --------------------------------------------------------------- */

:root {
  --navy: #07004e;
  --indigo: #290d7c;
  --ink: #1c1c22;
  --muted: #5c5c6a;
  --cream: #fbf9f5;
  --sand: #f2ede4;
  --line: #e4e0d7;
  --white: #fff;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Mukta", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1120px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);
  --radius: 14px;
  --shadow: 0 1px 2px rgba(7, 0, 78, .05), 0 12px 32px -12px rgba(7, 0, 78, .18);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.15; color: var(--navy); margin: 0 0 .6em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); letter-spacing: -.015em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--indigo); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--navy); }

:focus-visible { outline: 3px solid var(--indigo); outline-offset: 3px; border-radius: 4px; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.narrow { width: min(100% - 2.5rem, 760px); margin-inline: auto; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--navy); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* ---------- Kopfbereich ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 249, 245, .92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .7rem 0;
}

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--navy); }
.brand img { width: 42px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 1.3rem; letter-spacing: .06em; }
.brand-sub { font-size: .72rem; letter-spacing: .11em; text-transform: uppercase; color: var(--muted); }

.nav-toggle { display: none; }
.nav-btn {
  display: none; background: none; border: 1px solid var(--line); border-radius: 9px;
  padding: .5rem .7rem; cursor: pointer; color: var(--navy); font: inherit; line-height: 1;
}

.site-nav ul { display: flex; gap: .3rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.site-nav a {
  display: block; padding: .5rem .8rem; border-radius: 8px;
  color: var(--ink); text-decoration: none; font-size: .97rem; font-weight: 600;
}
.site-nav a:hover { background: var(--sand); color: var(--navy); }
.site-nav a[aria-current="page"] { color: var(--navy); background: var(--sand); }

.nav-call {
  margin-left: .4rem; background: var(--navy) !important; color: #fff !important;
  padding: .55rem 1.05rem !important; border-radius: 999px !important; white-space: nowrap;
}
.nav-call:hover { background: var(--indigo) !important; }

@media (max-width: 900px) {
  .nav-btn { display: block; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--cream); border-bottom: 1px solid var(--line);
    display: none; padding: .6rem 1.25rem 1.1rem; box-shadow: var(--shadow);
  }
  .nav-toggle:checked ~ .site-nav { display: block; }
  .site-nav ul { flex-direction: column; gap: .15rem; }
  .site-nav a { padding: .75rem .8rem; font-size: 1.05rem; }
  .nav-call { margin: .5rem 0 0; text-align: center; }
}

/* ---------- Titelbereich ---------- */

.hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center;
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

.eyebrow {
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--indigo); font-weight: 600; margin: 0 0 .9rem;
}
.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 46ch; }

.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }

.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.8rem; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.5rem; border-radius: 999px;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  border: 1.5px solid transparent; transition: background .15s, border-color .15s, color .15s;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--indigo); color: #fff; }
.btn-ghost { border-color: var(--line); color: var(--navy); background: var(--white); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); background: var(--sand); }

/* ---------- Abschnitte ---------- */

section { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section-tint { background: var(--sand); }
.section-head { max-width: 60ch; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }

.page-head { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1rem, 2vw, 1.5rem); }
.page-head p { color: var(--muted); font-size: 1.1rem; max-width: 50ch; }

/* Leistungsliste */
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
@media (min-width: 760px) { .feature-list { grid-template-columns: 1fr 1fr; gap: .9rem 2.5rem; } }
.feature-list li {
  position: relative; padding-left: 1.9rem; color: var(--ink);
}
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: .5rem; height: .5rem; border-radius: 50%;
  background: var(--indigo);
}

/* Leistungskarten */
.cards { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem 1.5rem;
}
.card h3 { margin-bottom: .5rem; }
.card p:last-child { margin-bottom: 0; }
.card ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.card-highlight { background: var(--navy); border-color: var(--navy); color: #ddd9ee; }
.card-highlight h3 { color: #fff; }
.card-highlight strong { color: #fff; }
.card-highlight a { color: #fff; text-decoration: underline; }
.card-highlight a:hover { color: #fff; text-decoration-thickness: 2px; }

.banner img {
  width: 100%; height: clamp(200px, 32vw, 340px); object-fit: cover;
  object-position: center 42%; border-radius: var(--radius); box-shadow: var(--shadow);
}

.note {
  border-left: 3px solid var(--indigo); padding: .2rem 0 .2rem 1.2rem;
  color: var(--muted); font-size: .97rem; margin: 1.5rem 0;
}

/* ---------- Galerie ---------- */

.gallery { display: grid; gap: .9rem; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.gallery button {
  padding: 0; border: 0; background: none; cursor: zoom-in; border-radius: 10px;
  overflow: hidden; display: block; line-height: 0;
}
.gallery img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 10px; transition: transform .35s ease, filter .35s ease;
  background: var(--sand);
}
.gallery button:hover img { transform: scale(1.04); filter: brightness(1.04); }

dialog.lightbox {
  border: 0; padding: 0; background: transparent; max-width: 96vw; max-height: 96vh;
}
dialog.lightbox::backdrop { background: rgba(7, 0, 78, .88); }
dialog.lightbox img { max-width: 96vw; max-height: 88vh; width: auto; border-radius: 8px; }
dialog.lightbox .close {
  position: fixed; top: 1rem; right: 1rem; background: rgba(255,255,255,.15); color: #fff;
  border: 0; border-radius: 999px; width: 2.75rem; height: 2.75rem; font-size: 1.5rem;
  cursor: pointer; line-height: 1;
}
dialog.lightbox .close:hover { background: rgba(255,255,255,.3); }

/* ---------- Kontakt ---------- */

.contact-grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); grid-template-columns: 1fr 1fr; align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.info-block { margin-bottom: 2rem; }
.info-block h3 { font-family: var(--sans); font-size: .78rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: .5rem; }
.info-block address { font-style: normal; font-size: 1.1rem; line-height: 1.6; }
.phone-big {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700;
  color: var(--navy); text-decoration: none; display: inline-block;
}
.phone-big:hover { color: var(--indigo); text-decoration: underline; }

.map-card {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--white);
}
.map-card .map-body { padding: 1.25rem 1.4rem; }
.map-static {
  display: block; width: 100%; aspect-ratio: 4 / 3; background: var(--sand);
  display: grid; place-items: center; text-align: center; padding: 2rem; color: var(--muted);
  border-bottom: 1px solid var(--line);
}

/* ---------- Fußbereich ---------- */

.site-footer {
  background: var(--navy); color: #c9c6dd; margin-top: clamp(2.5rem, 6vw, 4.5rem);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 2rem; font-size: .95rem;
}
.site-footer h2, .site-footer h3 { color: #fff; font-family: var(--sans);
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: .8rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.site-footer address { font-style: normal; line-height: 1.7; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.16);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .87rem; color: #a8a4c4;
}
.footer-bottom ul { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* ---------- Rechtstexte ---------- */

.legal h2 { font-size: 1.35rem; margin-top: 2.5rem; }
.legal h2:first-of-type { margin-top: 1rem; }
.legal ul { padding-left: 1.2rem; }
.legal li { margin-bottom: .4rem; }
