/* ============================================================
   Salon Haarmonie Bremen — Demo Stylesheet
   Warm copper / deep charcoal / soft cream palette
   Self-contained — no inheritance from main studio-chop.de CSS
   ============================================================ */

/* ---- Variables -------------------------------------------------- */
:root {
  --copper:       #b87333;
  --copper-light: #d4915a;
  --copper-dark:  #8a5a25;
  --charcoal:     #1c1c1e;
  --charcoal-80:  #2c2c2e;
  --charcoal-60:  #3a3a3c;
  --cream:        #f7f3ee;
  --cream-dark:   #ebe5dc;
  --white:        #ffffff;
  --text:         #1c1c1e;
  --text-light:   #6b6b70;
  --text-on-dark: #e8e6e1;
  --border:       #d4d0cb;
  --shadow:       0 2px 12px rgba(28,28,30,.1);
  --shadow-lg:    0 8px 30px rgba(28,28,30,.15);
  --font:         system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-mono:    'SF Mono', Monaco, 'Cascadia Code', 'Consolas', monospace;
  --radius:       8px;
  --radius-lg:    12px;
  --max-width:    1200px;
  --nav-height:   64px;
}

/* ---- Reset minimal --------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--copper); text-decoration: none; transition: color .15s; }
a:hover { color: var(--copper-dark); }
ul { list-style: none; }

/* ---- Utility --------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-heading); }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---- Buttons --------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font); font-size: 1rem; font-weight: 600;
  padding: .75rem 1.75rem; border-radius: var(--radius);
  cursor: pointer; transition: all .2s; border: 2px solid transparent;
  text-align: center; line-height: 1.2; white-space: nowrap;
}
.btn--primary {
  background: var(--copper); color: var(--white); border-color: var(--copper);
}
.btn--primary:hover { background: var(--copper-dark); border-color: var(--copper-dark); color: var(--white); }
.btn--ghost {
  background: transparent; color: var(--copper); border-color: var(--copper);
}
.btn--ghost:hover { background: var(--copper); color: var(--white); }
.btn--sm { padding: .5rem 1.25rem; font-size: .9rem; }

/* ---- Demo-Notice Banner ---------------------------------------- */
.demo-notice {
  background: var(--copper); color: var(--white); text-align: center;
  padding: .5rem 1.25rem; font-size: .8rem; font-weight: 600;
  letter-spacing: .05em; position: relative; z-index: 2000; line-height: 1.4;
}
.demo-notice a { color: var(--white); text-decoration: underline; }
.demo-notice a:hover { color: var(--cream); }

/* ---- Navigation ------------------------------------------------ */
.site-nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--charcoal); height: var(--nav-height);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.nav__logo {
  font-size: 1.15rem; font-weight: 700; color: var(--cream) !important;
  letter-spacing: -.02em;
}
.nav__logo:hover { color: var(--copper-light) !important; }
.nav__links { display: flex; align-items: center; gap: .25rem; }
.nav__links a {
  color: var(--text-on-dark); font-size: .9rem; font-weight: 500;
  padding: .4rem .8rem; border-radius: 4px; transition: all .15s;
}
.nav__links a:hover { background: var(--charcoal-60); color: var(--copper-light); }
.nav__links a.active { color: var(--copper-light); background: var(--charcoal-60); }

/* Burger toggle — hidden on desktop */
.nav-toggle { display: none; }
.nav-burger { display: none; }

/* ---- Hero ------------------------------------------------------ */
.hero {
  background: var(--charcoal);
  color: var(--text-on-dark);
  padding: 6rem 0 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(184,115,51,.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; }
.hero__eyebrow {
  font-size: .8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; color: var(--copper); margin-bottom: .75rem;
}
.hero__title {
  font-size: 2.8rem; font-weight: 700; line-height: 1.1;
  max-width: 700px; margin-bottom: 1rem; font-family: var(--font-heading);
}
.hero__text { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 560px; margin-bottom: 2rem; line-height: 1.7; }
.hero__actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Split hero: text left, image right */
.hero__inner--split { display: flex; gap: 3rem; align-items: center; justify-content: space-between; }
.hero__col--text { flex: 1 1 50%; min-width: 280px; }
.hero__col--image { flex: 0 0 auto; }
.hero__pixelart {
  width: 100%; max-width: 450px; height: auto; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); image-rendering: pixelated;
  border: 3px solid var(--copper-dark);
}
@media (max-width: 800px) {
  .hero__inner--split { flex-direction: column; gap: 2rem; text-align: center; }
  .hero__col--text { flex: none; }
  .hero__col--image { order: -1; }
  .hero__pixelart { max-width: 320px; margin: 0 auto; }
  .hero__actions { justify-content: center; }
}

/* ---- Sections -------------------------------------------------- */
.section { padding: 4rem 0; }
.section--cream { background: var(--cream); }
.section__title { font-size: 2rem; font-weight: 700; margin-bottom: .5rem; font-family: var(--font-heading); }
.section__subtitle { color: var(--text-light); font-size: 1rem; margin-bottom: 2.5rem; max-width: 600px; }
.section__eyebrow {
  font-size: .8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; color: var(--copper); margin-bottom: .5rem;
}

/* ---- Service teaser cards -------------------------------------- */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 1.5rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.service-card__icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 1.3rem;
}
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .4rem; font-family: var(--font-heading); }
.service-card p { color: var(--text-light); font-size: .9rem; line-height: 1.6; }
.service-card .btn { margin-top: 1rem; }

/* ---- CTA section ----------------------------------------------- */
.cta-section {
  background: var(--cream); text-align: center;
  padding: 4rem 1.25rem;
}
.cta-section h2 { font-size: 2rem; margin-bottom: .5rem; font-family: var(--font-heading); }
.cta-section p { color: var(--text-light); margin-bottom: 1.5rem; }

/* ---- Price tables ---------------------------------------------- */
.price-group { margin-bottom: 2.5rem; }
.price-group:last-child { margin-bottom: 0; }
.price-group__title {
  font-size: 1.25rem; font-weight: 700; margin-bottom: .75rem;
  padding-bottom: .5rem; border-bottom: 2px solid var(--copper); font-family: var(--font-heading);
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table tr { border-bottom: 1px solid var(--cream-dark); }
.price-table td { padding: .75rem 0; font-size: .95rem; }
.price-table td:last-child {
  text-align: right; font-weight: 600; font-family: var(--font-mono);
  color: var(--copper); white-space: nowrap; padding-left: 1rem;
}
.price-note { color: var(--text-light); font-size: .85rem; margin-top: .5rem; font-style: italic; }

/* ---- Gallery --------------------------------------------------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative; cursor: pointer; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4 / 3; background: var(--cream);
  transition: transform .2s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item__img {
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; font-size: .85rem; color: rgba(255,255,255,.6);
  font-weight: 500;
}
.gallery-item__img--real img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  image-rendering: pixelated;
}

.lightbox__img img {
  max-width: 100%; max-height: 80vh; width: auto; height: auto;
  display: block; border-radius: var(--radius); image-rendering: pixelated;
}
.gallery-item__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: var(--white); padding: 2rem .75rem .6rem; font-size: .85rem;
}

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.9); align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox--open { display: flex; }
.lightbox__img {
  max-width: 90vw; max-height: 80vh; border-radius: var(--radius);
  background: var(--cream);
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; color: rgba(255,255,255,.5);
}
.lightbox__caption {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: var(--white); font-size: .95rem;
  background: rgba(0,0,0,.6); padding: .4rem 1rem; border-radius: 999px;
}
.lightbox__close {
  position: absolute; top: 1rem; right: 1.5rem;
  color: var(--white); font-size: 2rem; cursor: pointer; opacity: .7;
  transition: opacity .15s; background: none; border: none; line-height: 1;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__prev, .lightbox__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: var(--white); font-size: 2.5rem; cursor: pointer; opacity: .6;
  transition: opacity .15s; background: none; border: none; padding: .5rem;
}
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }
.lightbox__prev:hover, .lightbox__next:hover { opacity: 1; }

/* ---- Team cards ------------------------------------------------ */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem; margin-top: 1.5rem;
}
.team-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center;
  border: 1px solid var(--border); transition: transform .2s, box-shadow .2s;
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.team-card__avatar {
  width: 100px; height: 100px; border-radius: 50%;
  margin: 0 auto 1rem; overflow: hidden;
}
.team-card__avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  image-rendering: pixelated;
}
.team-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .2rem; font-family: var(--font-heading); }
.team-card__role { color: var(--copper); font-size: .85rem; font-weight: 600; margin-bottom: .75rem; }
.team-card__bio { color: var(--text-light); font-size: .9rem; line-height: 1.6; }

/* ---- Contact --------------------------------------------------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.contact-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .75rem; }
.contact-info p { color: var(--text-light); font-size: .95rem; margin-bottom: .3rem; line-height: 1.7; }
.contact-info .contact-detail { margin-bottom: 1.5rem; }

.contact-form label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .3rem; }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: .65rem .85rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--font); font-size: .95rem;
  margin-bottom: 1rem; transition: border-color .15s; background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--copper); }
.contact-form textarea { min-height: 120px; resize: vertical; }

.map-embed { margin-top: 2rem; border-radius: var(--radius-lg); overflow: hidden; }
.map-embed iframe { width: 100%; height: 350px; border: 0; display: block; }

/* ---- Booking form ---------------------------------------------- */
.booking-form { max-width: 720px; }
.booking-form .form-section { margin-bottom: 2rem; }
.booking-form .form-section h3 {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 1rem;
  padding-bottom: .4rem; border-bottom: 2px solid var(--copper); font-family: var(--font-heading);
}
.booking-form label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .3rem; }
.booking-form select,
.booking-form input {
  width: 100%; padding: .6rem .85rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--font); font-size: .95rem;
  margin-bottom: .75rem; background: var(--white);
}
.booking-form select:focus,
.booking-form input:focus { outline: none; border-color: var(--copper); }
.booking-form textarea {
  width: 100%; padding: .6rem .85rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--font); font-size: .95rem;
  margin-bottom: .75rem; min-height: 80px; resize: vertical;
}
.booking-form textarea:focus { outline: none; border-color: var(--copper); }

/* Booking summary panel */
.booking-summary {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 1.5rem; margin-top: 1.5rem;
}
.booking-summary h4 { font-size: 1rem; font-weight: 700; margin-bottom: .75rem; }
.booking-summary__row { display: flex; justify-content: space-between; padding: .35rem 0; font-size: .9rem; }
.booking-summary__row--total { font-weight: 700; font-size: 1.05rem; border-top: 1px solid var(--border); padding-top: .6rem; margin-top: .4rem; }
.booking-summary__label { color: var(--text-light); }
.booking-summary__value { font-weight: 600; }

/* Confirmation overlay */
.confirm-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.6); align-items: center; justify-content: center;
  padding: 1.25rem;
}
.confirm-overlay--open { display: flex; }
.confirm-overlay__card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; text-align: center; max-width: 420px; width: 100%;
  box-shadow: var(--shadow-lg);
}
.confirm-overlay__icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 1.5rem;
}
.confirm-overlay h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.confirm-overlay p { color: var(--text-light); font-size: .9rem; margin-bottom: 1.5rem; }

/* ---- Footer ---------------------------------------------------- */
.site-footer {
  background: var(--charcoal); color: var(--text-on-dark); padding: 3rem 0 1.5rem;
}
.footer__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2rem; }
.footer__col h4 { font-size: .95rem; font-weight: 700; margin-bottom: .6rem; color: var(--copper-light); font-family: var(--font-heading); }
.footer__col p { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.7; }
.footer__bottom {
  border-top: 1px solid var(--charcoal-60); padding-top: 1.25rem;
  text-align: center;
}
.footer__bottom p { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer__bottom a { color: rgba(255,255,255,.6); }
.footer__bottom a:hover { color: var(--copper-light); }
.demo-marker { color: var(--copper-light); font-weight: 600; }

/* ---- Responsive: Tablet (max-width: 768px) --------------------- */
@media (max-width: 768px) {
  /* Mobile nav */
  .nav-burger {
    display: flex; flex-direction: column; gap: 4px; cursor: pointer;
    padding: .5rem; position: fixed; top: .85rem; right: 1rem; z-index: 1001;
  }
  .nav-burger span {
    display: block; width: 24px; height: 2px; background: var(--cream);
    border-radius: 2px; transition: all .2s;
  }
  .nav__links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--charcoal); flex-direction: column; align-items: stretch;
    padding: 5rem 1.5rem 2rem; gap: .25rem; transition: right .3s ease;
    z-index: 1000;
  }
  .nav__links a { padding: .75rem 1rem; font-size: 1rem; }

  #nav-toggle:checked ~ .site-nav .nav__links { right: 0; }
  #nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  #nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  #nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

  /* Layout */
  .hero__title { font-size: 2rem; }
  .hero { padding: 5rem 0 3rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ---- Responsive: Phone (max-width: 480px) --------------------- */
@media (max-width: 480px) {
  .hero__title { font-size: 1.6rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .section { padding: 2.5rem 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .btn { white-space: normal; }
  .price-table td { font-size: .85rem; }
}
