/* ==========================================================================
  Na-Fashion Nails – Light Elegant Theme
   Fonts: Cormorant Garamond (headings) · Lato (body)
   Palette: warm white #FDFBF7, gold #C8A018, deep gold #9A7209, cream #F5ECD7
   ========================================================================== */
/* cormorant-garamond-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/cormorant-garamond-v21-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* cormorant-garamond-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/cormorant-garamond-v21-latin-600.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* lato-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/lato-v25-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/lato-v25-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* lato-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/lato-v25-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/lato-v25-latin-700.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* ── Variables ────────────────────────────────────────────────────── */
:root {
  --gold:          #D4AF37;
  --gold-dark:     #B18514;
  --gold-light:    #EDD59A;
  --cream:         #F5ECD7;
  --bg:            #FDFBF7;
  --white:         #FFFFFF;
  --text:          #2E2A22;
  --text-muted:    #7A6F5E;
  --border:        #EAE4D8;

  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Lato', 'Segoe UI', sans-serif;

  --radius:        8px;
  --ease:          0.28s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-xs:     0 1px 3px rgba(154,114,9,.10);
  --shadow-sm:     0 3px 8px  rgba(154,114,9,.12);
  --shadow-md:     0 6px 20px rgba(154,114,9,.16);
  --shadow-lg:     0 12px 36px rgba(154,114,9,.20);

  --max-w:         1200px;
}

/* ── Reset ────────────────────────────────────────────────────────── */

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

/* Prevent unexpected horizontal scroll caused by full-bleed elements */
html, body { overflow-x: hidden; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold-dark); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--gold); }

address { font-style: normal; }

.container {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* ── Typography ───────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-sans); }

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .65rem 1.6rem;
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  cursor: pointer;
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease), color var(--ease);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-xs);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-large { padding: .9rem 2.2rem; font-size: 1.05rem; }

/* ── Section helper ───────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-serif);
  color: var(--gold-dark);
  text-align: center;
  margin-bottom: .75rem;
}
.section-title + .section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
}
.section-divider {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border: none;
  border-radius: 2px;
  margin: .75rem auto 2.5rem;
}

/* ═══════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
  transition: background 200ms var(--ease), backdrop-filter 200ms var(--ease), border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.site-header.scrolled {
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.95));
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .75rem;
  gap: 1.5rem;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }

.logo-img {
  height: 64px;
  width: 64px;
  object-fit: contain;
}

/* ── Navigation ───────────────────────────────────────────────────── */
.main-nav { display: flex; align-items: center; }

#nav-menu {
  display: flex;
  list-style: none;
  gap: clamp(.75rem, 2vw, 2rem);
  flex-wrap: wrap;
}

#nav-menu a {
  font-family: var(--font-sans);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text);
  padding: .35rem 0;
  position: relative;
}
#nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--ease);
}
#nav-menu a:hover,
#nav-menu a.active { color: var(--gold-dark); }
#nav-menu a:hover::after,
#nav-menu a.active::after { width: 100%; }

.ext-icon {
  font-size: .72em;
  vertical-align: super;
  margin-left: .15em;
  opacity: .7;
}

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 210;
}
.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-dark);
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 60%, var(--bg) 100%);
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(200,160,24,.12) 0%, transparent 60%),
    radial-gradient(circle at 85% 20%, rgba(200,160,24,.08) 0%, transparent 50%);
  pointer-events: none;
}

/* subtle photographic background behind the hero content */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: none;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  filter: none;
  transform: none;
  pointer-events: none;
}

/* Hero slideshow container */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  transform: scale(1.02);
}

.hero-slide.active { opacity: 1; }

.hero-slides::after {
  content: '';
  position: absolute;
  inset: 0;
  /* darker subtle black overlay to improve text contrast */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.63), rgba(0, 0, 0, 0.589));
  z-index: 2;
  pointer-events: none;
}

/* make hero text pop over the image */
.hero { color: var(--white); }
.hero::before { z-index: 0; }
.hero::after { z-index: 1; }
.hero-content { position: relative; z-index: 3; }
.hero-title { color: var(--white); text-shadow: 0 4px 18px rgba(0,0,0,.32); }
.hero-eyebrow { color: rgba(255,255,255,.92); }
.hero-sub { color: rgba(255,255,255,.92); }
.hero .btn-outline {
  /* use the previous hover appearance as the default */
  background: var(--white);
  color: var(--gold-dark);
  border-color: var(--white);
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}
.hero .btn-outline:hover {
  /* on hover, flip to an accent appearance */
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.hero-content { position: relative; }
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-title {
  margin-bottom: 1rem;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════════ */
.services { padding: 5rem 0; background: var(--white); }

/* Full-width services strip */
.services-fullwidth {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  background: transparent;
}
.services-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.service-panel {
  position: relative;
  min-height: 260px;
  display: block;
  overflow: hidden;
  text-decoration: none;
  border-radius: 0;
  background-size: cover;
  background-position: center center;
}

.service-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.28));
  z-index: 1;
}

.service-panel-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 2;
  padding: 1.25rem 1rem;
  color: #fff;
  text-align: center;
}
.service-panel h3 { margin: 0 0 .25rem; color: #fff; }
.service-panel p { margin: 0; color: rgba(255,255,255,.9); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.service-icon { font-size: 2.8rem; margin-bottom: 1rem; }
.service-icon i { font-size: 2.8rem; display: inline-block; }
.service-card h3 { color: var(--gold-dark); margin-bottom: .5rem; font-size: 1.2rem; }
.service-card p { color: var(--text-muted); font-size: .95rem; }

/* ═══════════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════════ */
.about { padding: 5rem 0; background: var(--bg); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-image img { width: 100%; height: 440px; object-fit: cover; }
.about-text .section-title { text-align: left; }
.about-text .section-divider { margin-inline: 0; }
.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* ═══════════════════════════════════════════════════════════════════
   LOCATION / MAP
   ═══════════════════════════════════════════════════════════════════ */
.location { padding: 5rem 0; background: var(--white); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.location-info .section-title { text-align: left; }
.location-info .section-divider { margin-inline: 0; }
.location-detail { margin-bottom: 1.5rem; }
.location-detail h4 { color: var(--gold-dark); margin-bottom: .35rem; }
.location-detail p, .location-detail address { color: var(--text-muted); line-height: 1.75; }
.location-detail a { color: var(--gold-dark); font-weight: 600; }
.location-detail a:hover { color: var(--gold); }

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.location-map iframe { display: block; }

/* ═══════════════════════════════════════════════════════════════════
   GALLERY PAGE
   ═══════════════════════════════════════════════════════════════════ */
.gallery-section { padding: 3rem 0 5rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  background: var(--cream);
  box-shadow: var(--shadow-xs);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(154,114,9,.6) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
  opacity: 0;
  transition: opacity var(--ease);
}
.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: .06em;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-cta {
  margin-top: 3.5rem;
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--cream), var(--white));
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.gallery-intro { text-align: center; margin-bottom: 2rem; }
.gallery-intro .section-sub { max-width: 760px; margin-inline: auto; color: var(--text-muted); }
.gallery-cta p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════════
   PAGE HEADER  (Galerie / Impressum / Datenschutz)
   ═══════════════════════════════════════════════════════════════════ */
.page-header {
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-header h1 { color: var(--gold-dark); margin-bottom: .5rem; }
.page-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 640px; margin-inline: auto; }

/* ── Prose (single pages) ─────────────────────────────────────────── */
.page-body {
  padding: 3.5rem 0 5rem;
}
.prose {
  max-width: 780px;
  margin-inline: auto;
}
.prose h2 {
  font-family: var(--font-serif);
  color: var(--gold-dark);
  margin-top: 2.5rem;
  margin-bottom: .75rem;
  font-size: 1.6rem;
}
.prose h3 {
  color: var(--gold-dark);
  margin-top: 1.75rem;
  margin-bottom: .5rem;
}
.prose p { color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; }
.prose strong { color: var(--text); font-weight: 700; }
.prose a { color: var(--gold-dark); font-weight: 600; }
.prose a:hover { color: var(--gold); text-decoration: underline; }
.prose ul, .prose ol { margin: 0 0 1rem 1.5rem; color: var(--text-muted); }
.prose li { margin-bottom: .4rem; }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.site-footer {
  background: #222;
  color: rgba(255,255,255,.88);
  padding: 3.5rem 0 0;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-logo { height: 70px; object-fit: contain; margin-bottom: 1.75rem; filter: none; }
.footer-tagline { font-family: var(--font-serif); font-size: 1rem; opacity: .8; }

.footer-col h4 {
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}
.footer-col p,
.footer-col address { font-size: .95rem; line-height: 1.8; opacity: .88; }
.footer-col a { color: rgba(255,255,255,.88); }
.footer-col a:hover { color: var(--white); text-decoration: underline; }

.footer-col .btn-primary {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--gold-dark);
  font-size: .88rem;
  padding: .6rem 1.4rem;
}
.footer-col .btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--gold-dark);
  box-shadow: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.18);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .88rem;
  opacity: .8;
}

.footer-nav { display: flex; gap: .75rem; align-items: center; }
.footer-nav a { color: inherit; }
.footer-nav a:hover { color: var(--white); text-decoration: underline; }
.footer-nav span { opacity: .5; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-image img { height: 320px; }
  .about-text .section-title,
  .about-text .section-divider { text-align: center; margin-inline: auto; }

  .location-grid { grid-template-columns: 1fr; }
  .location-info .section-title,
  .location-info .section-divider { text-align: center; margin-inline: auto; }
}

@media (max-width: 720px) {
  /* Mobile nav */
  .nav-toggle { display: flex; position: relative; z-index: 10001; }

  /* Fullscreen black backdrop menu */
  #nav-menu {
    display: none;
      position: fixed !important;
      inset: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(0,0,0,0.92);
    padding: 4.5rem 2rem 2rem;
    box-shadow: none;
    overflow-y: auto;
    z-index: 10000;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
  }
  #nav-menu.open { display: flex; }

  /* Remove separators and center items */
  #nav-menu li + li { border-top: none; }
  #nav-menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1.25rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
  }
  #nav-menu a::after { display: none; }

    /* Make the hamburger lines dark on the light header (closed),
      and switch to white when the fullscreen dark menu is open */
    .nav-toggle span { background: var(--gold-dark); }
    .nav-toggle.open span { background: #fff; }
    /* Ensure the toggle sits above the fixed nav overlay */
    .nav-toggle { z-index: 10002; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }

  .hero-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .footer-bottom { flex-direction: column; text-align: center; }
}
