:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --text: #f5f5f5;
  --text-muted: #999;
  --border: #262626;
  --primary: #c8a96e;
  --primary-hover: #d4b87e;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .font-display {
  font-family: 'Playfair Display', serif;
}

a { text-decoration: none; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.4), rgba(10,10,10,0.2), rgba(10,10,10,1));
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1rem;
}
.hero-logo {
  height: 80px;
  margin-bottom: 2rem;
  filter: invert(1) brightness(2);
}
@media (min-width: 768px) {
  .hero-logo { height: 112px; }
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  font-style: italic;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .hero h1 { font-size: 3.5rem; }
}
.hero h1 span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  font-style: normal;
  color: rgba(245,245,245,0.8);
  margin-top: 0.75rem;
}
.hero-subtitle {
  display: inline-block;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 3rem;
}

/* City cards */
.city-card {
  flex: 1;
  background: rgba(20,20,20,0.7);
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  padding: 2.5rem 2rem;
  transition: all 0.2s;
  color: var(--text);
  border: 1px solid transparent;
}
.city-card:hover {
  transform: scale(1.02);
  background: var(--bg-card);
  border-color: var(--border);
  color: var(--text);
}
.city-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.city-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
}

/* ===== SECTIONS ===== */
.section-city {
  padding: 5rem 0 4rem;
}
.section-city h2 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  margin-bottom: 3rem;
}

/* Salon info */
.salon-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-family: 'DM Sans', sans-serif;
}
.salon-address {
  color: var(--text-muted);
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.salon-address i { margin-top: 2px; flex-shrink: 0; }

/* Buttons */
.btn-booksy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  background: var(--primary);
  color: #111;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  transition: opacity 0.2s;
}
.btn-booksy:hover {
  opacity: 0.9;
  color: #111;
}
.btn-outline-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 0.875rem;
  transition: background 0.2s;
}
.btn-outline-custom:hover {
  background: var(--bg-card);
  color: var(--text);
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.gallery-grid img {
  border-radius: 0.5rem;
  width: 100%;
  height: 192px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.gallery-grid img:hover {
  transform: scale(1.02);
}

/* Services */
.service-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 0.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
.service-name {
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}
.service-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}
.service-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
}
.services-heading {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}

/* Map */
.map-wrapper {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  height: 256px;
  margin-top: 2rem;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(1);
  opacity: 0.8;
}

/* Divider */
.section-divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}
.site-footer h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.footer-salon-title {
  font-weight: 600;
  font-size: 0.875rem;
  font-family: 'DM Sans', sans-serif;
}
.footer-link {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.footer-link:hover {
  text-decoration: underline;
  color: var(--primary-hover);
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.contact-item:hover {
  color: var(--text);
}
.contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 0.875rem;
}
.contact-icon.whatsapp { background: hsl(142, 70%, 45%); }
.contact-icon.telegram { background: hsl(200, 80%, 50%); }
.contact-icon.phone { background: var(--primary); color: #111; }
.contact-icon.email { background: #333; }

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.2rem 0;
}
.hours-row span:last-child {
  color: var(--text);
  font-weight: 500;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Lightbox modal */
.modal-content {
  background: rgba(10,10,10,0.95);
  border: 1px solid var(--border);
}
.lightbox-img {
  max-height: 80vh;
  width: 100%;
  object-fit: contain;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,10,0.8);
  border: none;
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 10;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: var(--bg-card); }
.lightbox-nav.prev { left: 0.5rem; }
.lightbox-nav.next { right: 0.5rem; }
.lightbox-counter {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,10,10,0.8);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Smooth scroll offset */
[id] {
  scroll-margin-top: 20px;
}
