:root {
  --bg: #faf9f7;
  --text: #1f2328;
  --muted: #6b7280;
  --card: #ffffff;
  --line: #e5e7eb;
  --accent: #111827;
  --accent-contrast: #ffffff;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(100% - 2rem, 960px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: color-mix(in srgb, var(--bg), #fff 40%);
  border-bottom: 1px solid var(--line);
  z-index: 30;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
  position: relative;
}

.brand {
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  font-family: "Allura", cursive;
  font-size: 2em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.language-switch a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.language-switch a .flag {
  font-size: 0.95rem;
  line-height: 1;
}

.language-switch a.active {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--muted);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0.35rem 0.6rem;
  font-size: 1.1rem;
}

.hero {
  padding: 5rem 0 2.5rem;
}

h1 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
}

h1#salonName {
  font-family: "Allura", cursive;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  font-size: 5em;
}

.hero p {
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-contrast);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-facebook {
  background: #3B5998;
  color: white;
  border-color: var(--line);
}

.section {
  padding: 1rem 0;
}

h2 {
  margin: 0 0 0.9rem;
  font-size: 1.5rem;
}

h3 {
  margin-top: 0;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

article.card {
  margin: 1rem 0;
}

.hours-list,
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li,
.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
}

.hours-list li:last-child,
.price-list li:last-child {
  border-bottom: none;
}

/* .price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
} */

.contact-grid p {
  margin: 0.35rem 0;
}

.contact-grid a {
  color: inherit;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0 2rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    display: none;
    position: absolute;
    right: 1rem;
    top: 3.7rem;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.7rem;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }
}

div#pricesText {
  font-size: 1em;
}

div#pricesText p {
  margin: 0;
  font-style: italic;
}

div#pricesText p#pricesText3 {
  font-size: 0.9em;
  font-weight: bold;
}
