/* ============================================================
   NaschSalon - standorte.css
   Styles for standorte.html only.
   ============================================================ */

/* ── STANDORTE CARDS ── */
.standorte-section { background: var(--bg); padding: 7rem 5rem; }
.standorte-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3.5rem; }

.standort-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow .3s;
}
.standort-card:hover { box-shadow: 0 16px 50px rgba(26,12,4,0.09); }

.standort-img { position: relative; aspect-ratio: 16/8; overflow: hidden; }
.standort-img img { transition: transform .6s ease; }
.standort-card:hover .standort-img img { transform: scale(1.04); }
.standort-num {
  position: absolute; bottom: 1rem; right: 1.2rem;
  font-family: var(--fd);
  font-size: 5rem; font-weight: 600;
  color: white; opacity: 0.2; line-height: 1;
}
.standort-header-bar {
  padding: 1.2rem 1.8rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.standort-open {
  display: inline-block;
  background: #DCFCE7; color: #166534;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 0.2rem 0.7rem; border-radius: 100px;
}
.standort-insta { font-size: 0.75rem; color: var(--caramel); border-bottom: 1px solid transparent; padding-bottom: 1px; transition: border-color .2s; }
.standort-insta:hover { border-color: var(--caramel); }

.standort-body { padding: 1.8rem; }
.standort-name {
  font-family: var(--fd);
  font-size: 1.7rem; font-weight: 600;
  color: var(--choc); margin-bottom: 0.3rem;
}
.standort-addr { font-size: 0.85rem; color: var(--choc3); margin-bottom: 1.5rem; }

.standort-section-title {
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--caramel); margin-bottom: 0.7rem; display: block;
}
.standort-hrs { margin-bottom: 1.5rem; }
.hr-row { display: flex; justify-content: space-between; font-size: 0.82rem; padding: 0.3rem 0; border-bottom: 1px solid var(--border); }
.hr-day { color: var(--choc2); font-weight: 500; }

.standort-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.8rem; }
.stag {
  background: var(--bg2); color: var(--choc3);
  font-size: 0.7rem; padding: 0.25rem 0.75rem;
  border-radius: 1px; border: 1px solid var(--border);
}
.stag.p { background: var(--choc); color: var(--bg); border-color: var(--choc); }

.standort-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── MAP SECTION ── */
.maps-section { background: var(--bg2); padding: 7rem 5rem; }
.maps-header { margin-bottom: 2.5rem; }
.maps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.map-card { border-radius: 2px; overflow: hidden; border: 1px solid var(--border); position: relative; }
.map-card iframe { width: 100%; height: 300px; border: none; display: block; pointer-events: none; }
.map-card.active iframe { pointer-events: auto; }
.map-overlay {
  position: absolute;
  inset: 0;
  bottom: 41px;
  z-index: 2;
  background: rgba(26,12,4,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.map-overlay::after {
  content: "Klicken zum Interagieren";
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(26,12,4,0.75);
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  opacity: 0;
  transition: opacity .2s;
}
.map-overlay:hover::after { opacity: 1; }
.map-card.active .map-overlay { display: none; }
.map-card-label {
  background: var(--choc); color: var(--bg);
  padding: 0.9rem 1.2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.map-card-label span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.map-card-label a { font-size: 0.75rem; color: var(--caramel2); border-bottom: 1px solid transparent; padding-bottom: 1px; transition: border-color .2s; }
.map-card-label a:hover { border-color: var(--caramel2); }

/* ── COMPARE TABLE ── */
.compare { background: var(--bg); padding: 7rem 5rem; }
.compare h2 { margin-bottom: 3rem; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.compare-table th {
  text-align: left;
  padding: 0.8rem 1.2rem;
  background: var(--choc);
  color: var(--bg);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}
.compare-table th:first-child { width: 35%; }
.compare-table td {
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid var(--border);
  color: var(--choc2);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--bg2); }
.compare-table td:first-child { font-weight: 500; color: var(--choc); }
.check { color: var(--caramel); font-size: 1rem; }
.cross { color: rgba(26,12,4,0.2); font-size: 1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .standorte-section { padding: 4rem 1.5rem; }
  .standorte-grid { grid-template-columns: 1fr; }
  .maps-section { padding: 4rem 1.5rem; }
  .maps-grid { grid-template-columns: 1fr; }
  .compare { padding: 4rem 1.5rem; }
  .compare-table { display: block; overflow-x: auto; }
}

/* ── MOBILE OVERRIDES ── */
@media (max-width: 860px) {
  .standorte-section { padding: 4rem 1.5rem; }
  .standorte-grid { grid-template-columns: 1fr; }
  .maps-section { padding: 4rem 1.5rem; }
  .maps-grid { grid-template-columns: 1fr; }
  .compare { padding: 4rem 1.5rem; }
  .compare-table { font-size: 0.8rem; }
  .compare-table th, .compare-table td { padding: 0.65rem 0.8rem; }
  .standort-actions { flex-wrap: wrap; }
}
