/* Studio Beauty Rybnik — style.css */
:root {
  --rose: #d99a8c;
  --rose-dark: #b97565;
  --rose-light: #f3e2dc;
  --cream: #faf6f2;
  --gold: #b98a4e;
  --text: #3d2e2a;
  --text-light: #7a6a64;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
}

a { color: var(--rose-dark); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--rose-light);
  box-shadow: 0 1px 8px rgba(61, 46, 42, 0.06);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.logo {
  font-family: Georgia, serif;
  font-size: 24px;
  text-decoration: none;
  color: var(--text);
  letter-spacing: 0.5px;
}

.logo span { color: var(--rose-dark); }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.main-nav a {
  display: block;
  padding: 8px 14px;
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--rose-light);
  color: var(--rose-dark);
}

/* Hero */
.hero {
  position: relative;
  max-width: 1100px;
  margin: 30px auto 0;
  padding: 0 20px;
}

.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.hero-text {
  background: var(--white);
  max-width: 640px;
  margin: -70px auto 0;
  position: relative;
  padding: 32px 36px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(61, 46, 42, 0.1);
  text-align: center;
}

.hero-text h1 { font-size: 32px; margin-bottom: 12px; }
.hero-text p { color: var(--text-light); }

/* Sections */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 36px;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 14px auto 24px;
  border: none;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(61, 46, 42, 0.07);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.card-body { padding: 22px 24px 26px; flex: 1; }
.card-body h3 { font-size: 20px; margin-bottom: 10px; }
.card-body p { color: var(--text-light); font-size: 15.5px; }

.card-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--rose-dark);
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--rose);
}

.card-link:hover { color: var(--gold); border-color: var(--gold); }

/* Two-column content */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.two-col img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.two-col h2 { font-size: 26px; margin-bottom: 14px; }
.two-col p { margin-bottom: 14px; color: var(--text-light); }

/* Content pages */
.page-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.page-content h1 { font-size: 32px; margin-bottom: 6px; }
.page-content h2 { font-size: 24px; margin: 34px 0 12px; }
.page-content p { margin-bottom: 16px; }
.page-content ul { margin: 0 0 16px 24px; }
.page-content li { margin-bottom: 8px; }

.page-lead { color: var(--text-light); font-size: 18px; margin-bottom: 24px; }

.page-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin: 10px 0 26px;
  display: block;
}

/* Offer list */
.offer-block {
  background: var(--white);
  border-radius: 8px;
  padding: 26px 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(61, 46, 42, 0.06);
  border-left: 3px solid var(--rose);
}

.offer-block h3 { font-size: 20px; margin-bottom: 8px; }
.offer-block p { color: var(--text-light); margin-bottom: 0; }

/* Info table (kontakt) */
.info-box {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 32px;
  margin: 20px 0;
  box-shadow: 0 2px 10px rgba(61, 46, 42, 0.06);
}

.info-box h3 { margin-bottom: 12px; font-size: 20px; }

.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: 7px 0; border-bottom: 1px solid var(--rose-light); }
.hours td:last-child { text-align: right; color: var(--text-light); }
.hours tr:last-child td { border-bottom: none; }

/* CTA strip */
.cta-strip {
  background: var(--rose-light);
  text-align: center;
  padding: 46px 20px;
}

.cta-strip h2 { font-size: 26px; margin-bottom: 10px; }
.cta-strip p { color: var(--text-light); max-width: 560px; margin: 0 auto 18px; }

.btn {
  display: inline-block;
  background: var(--rose-dark);
  color: var(--white);
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  transition: background 0.2s;
}

.btn:hover { background: var(--gold); }

/* Footer */
.site-footer {
  background: var(--text);
  color: #d9cfc9;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.site-footer h4 {
  color: var(--white);
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 12px;
}

.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 6px; }
.site-footer a { color: #d9cfc9; text-decoration: none; }
.site-footer a:hover { color: var(--rose); }
.site-footer p { font-size: 15px; }

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 16px 20px;
  font-size: 14px;
  color: #a8998f;
}

/* Responsive */
@media (max-width: 760px) {
  .hero-img { height: 300px; }
  .hero-text { margin-top: -40px; padding: 24px 20px; }
  .hero-text h1 { font-size: 25px; }
  .two-col { grid-template-columns: 1fr; }
  .header-inner { justify-content: center; }
  .main-nav a { padding: 6px 10px; font-size: 13.5px; }
  .section { padding: 36px 16px; }
}
