/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #b38e3e;
  --gold-dark: #9a7834;
  --gold-light: #c9a55a;
  --text-dark: #2b2b2b;
  --text-muted: #555555;
  --white: #ffffff;
  --footer-bg: #f5f1ed;
  --atmosphere-bg: #fcf9f5;
  --font-serif: "Playfair Display", "Times New Roman", serif;
  --font-sans: "Montserrat", "Segoe UI", sans-serif;
  --container: 1140px;
  --header-h: 90px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Mobile menu toggle */
.nav-check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.nav-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.nav-toggle-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-check:checked + .nav-toggle-btn span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-check:checked + .nav-toggle-btn span:nth-child(2) {
  opacity: 0;
}

.nav-check:checked + .nav-toggle-btn span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.logo {
  display: inline-block;
  line-height: 0;
}

.logo img {
  height: 62px;
  width: auto;
  display: block;
}

.nav-list {
  display: flex;
  gap: 48px;
}

.nav-list a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color 0.2s;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--gold);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-dark);
}

.btn-white {
  background: var(--white);
  color: var(--gold);
}

.btn-white:hover {
  background: #f0ebe3;
}

.btn-sm {
  font-size: 12px;
  padding: 14px 28px;
  letter-spacing: 0.1em;
}

/* ===== Hero – Homepage ===== */
/* salon1.png 3840×1748 – aspect-ratio + cover = full photo, no side strips */
.hero-home {
  position: relative;
  width: 100%;
  aspect-ratio: 3840 / 1748;
  background: url("../salon1.png") center center / cover no-repeat;
}

.hero-home > .container {
  position: absolute;
  inset: 0;
  z-index: 1;
  max-width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding-right: 14%;
  padding-left: 40px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 56px 52px;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.hero-card h1 {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-card p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 32px;
}

/* ===== Hero – Centered (About & Price pages) ===== */
.hero-centered {
  position: relative;
  min-height: 420px;
  background: url("../salon1.png") center bottom / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-centered::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-centered .hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 40px 20px;
}

.hero-centered h1 {
  font-family: var(--font-sans);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-centered .hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.95;
}

.hero-centered.hero-price h1 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.hero-centered:not(.hero-price) h1 {
  font-size: 38px;
  letter-spacing: 0.12em;
}

/* ===== Services Section (Gold) ===== */
.services-section {
  background: var(--gold);
  padding: 80px 0 72px;
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}

.service-item {
  text-align: center;
  padding: 0 20px;
}

.service-item img {
  height: 72px;
  width: auto;
  margin: 0 auto 32px;
  filter: brightness(0) invert(1);
}

.service-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.service-item p {
  font-size: 16px;
  line-height: 1.75;
  opacity: 0.92;
  max-width: 380px;
  margin: 0 auto;
}

.services-cta {
  text-align: center;
}

/* ===== About Section (Homepage) ===== */
.about-home {
  padding: 90px 0;
  background: var(--white);
}

.about-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-home-photo img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.about-home-text h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--text-dark);
}

.about-home-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-home-text p:last-child {
  margin-bottom: 0;
}

/* ===== Reviews Section ===== */
.reviews-section {
  background: var(--gold);
  padding: 72px 0 90px;
}

.reviews-badge {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-badge-inner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: 8px;
  padding: 14px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.reviews-badge-inner img {
  height: 42px;
  width: auto;
}

.reviews-badge-inner span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--white);
  padding: 36px 28px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.review-card blockquote {
  font-size: 14px;
  font-style: italic;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex: 1;
}

.review-card cite {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
}

/* ===== About Page Sections ===== */
.about-page {
  padding: 90px 0;
  background: var(--white);
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-page-photo img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.about-page-text h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 28px;
  color: var(--text-dark);
}

.about-page-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-page-text p:last-child {
  margin-bottom: 0;
}

/* ===== Motto Banner ===== */
.motto-banner {
  background: var(--gold);
  padding: 72px 0;
  text-align: center;
  color: var(--white);
}

.motto-banner h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.motto-banner p {
  font-size: 14px;
  line-height: 1.85;
  opacity: 0.92;
  max-width: 640px;
  margin: 0 auto;
}

/* ===== Atmosphere Section ===== */
.atmosphere-section {
  background: var(--atmosphere-bg);
  padding: 90px 0;
}

.atmosphere-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.atmosphere-text h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.atmosphere-text p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
}

.atmosphere-photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ===== Price List ===== */
.pricing-section {
  padding: 80px 0 90px;
  background: var(--white);
}

.pricing-category {
  margin-bottom: 56px;
}

.pricing-category:last-child {
  margin-bottom: 0;
}

.pricing-category h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.price-row:last-child {
  border-bottom: none;
}

.price-info .service-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.price-info .service-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.price-amount {
  text-align: right;
  flex-shrink: 0;
  min-width: 180px;
}

.price-amount .price-czk {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
}

.price-amount .price-eur {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== Footer ===== */
.site-footer {
  padding: 64px 0 72px;
  text-align: center;
}

.site-footer.beige {
  background: var(--footer-bg);
}

.site-footer.white {
  background: var(--white);
}

.site-footer h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.site-footer .footer-info {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer .footer-phone {
  font-weight: 700;
  color: var(--text-dark);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .services-grid,
  .about-home-grid,
  .about-page-grid,
  .atmosphere-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-home-grid,
  .about-page-grid {
    align-items: start;
  }

  .hero-home > .container {
    justify-content: center;
    padding: 40px 24px;
  }

  .hero-card {
    max-width: 520px;
  }

  .atmosphere-photo {
    order: -1;
  }

  .nav-list {
    gap: 24px;
  }

  .about-home,
  .about-page,
  .atmosphere-section,
  .services-section,
  .reviews-section,
  .pricing-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: auto;
  }

  .container {
    padding: 0 20px;
  }

  .site-header {
    padding: 12px 0;
  }

  .site-header .container {
    flex-wrap: nowrap;
    gap: 0;
  }

  .nav-toggle-btn {
    display: flex;
    margin-left: auto;
  }

  .site-header nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease;
  }

  .nav-check:checked ~ nav {
    max-height: 280px;
    opacity: 1;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 8px 0 16px;
  }

  .nav-list a {
    display: block;
    font-size: 13px;
    letter-spacing: 0.16em;
    padding: 14px 20px;
    width: 100%;
    text-align: center;
  }

  .logo img {
    height: 44px;
  }

  .hero-home {
    aspect-ratio: unset;
    min-height: 540px;
    background-position: center bottom;
  }

  .hero-home > .container {
    position: relative;
    inset: auto;
    min-height: 540px;
    padding: 32px 20px;
  }

  .hero-card {
    padding: 36px 28px;
    max-width: 100%;
    text-align: center;
  }

  .hero-card h1 {
    font-size: 30px;
    font-weight: 700;
  }

  .hero-card p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
  }

  .hero-centered {
    min-height: 320px;
  }

  .hero-centered h1 {
    font-size: 28px;
  }

  .hero-centered.hero-price h1 {
    font-size: 32px;
  }

  .hero-centered .hero-subtitle {
    font-size: 14px;
    padding: 0 10px;
  }

  .services-section {
    padding: 56px 0 48px;
  }

  .service-item h3 {
    font-size: 20px;
  }

  .service-item img {
    height: 60px;
  }

  .service-item p {
    font-size: 15px;
  }

  .hero-card .btn,
  .site-footer .btn {
    display: inline-block;
    width: auto;
    max-width: 100%;
  }

  .about-home-text h2,
  .about-page-text h2 {
    font-size: 30px;
  }

  .about-home-text p,
  .about-page-text p {
    font-size: 15px;
  }

  .reviews-section {
    padding: 56px 0 64px;
  }

  .reviews-badge-inner img {
    height: 36px;
  }

  .review-card {
    padding: 28px 22px 24px;
  }

  .motto-banner {
    padding: 48px 0;
  }

  .motto-banner h2 {
    font-size: 22px;
    padding: 0 10px;
  }

  .atmosphere-text h2 {
    font-size: 24px;
  }

  .site-footer {
    padding: 48px 0 56px;
  }

  .site-footer h2 {
    font-size: 22px;
  }

  .price-row {
    flex-direction: column;
    gap: 12px;
    padding: 18px 0;
  }

  .price-amount {
    text-align: left;
    min-width: 0;
  }

  .pricing-category h2 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-home {
    min-height: 480px;
  }

  .hero-home > .container {
    min-height: 480px;
    padding: 24px 16px;
  }

  .hero-card {
    padding: 28px 22px;
  }

  .hero-card h1 {
    font-size: 26px;
  }

  .about-home,
  .about-page {
    padding: 48px 0;
  }

  .reviews-badge-inner {
    padding: 12px 18px;
    gap: 10px;
  }

  .reviews-badge-inner img {
    height: 32px;
  }

  .reviews-badge-inner span {
    font-size: 12px;
  }

  .review-card blockquote {
    font-size: 13px;
  }

  .site-footer .footer-info {
    font-size: 12px;
  }

  .site-footer .btn {
    width: auto;
    max-width: none;
  }
}
