/* ============================================
   MANTA MASÁŽNÍ STUDIO
   ============================================ */

:root {
  --purple: #4a4272;
  --purple-light: #c5bdd4;
  --purple-faded: #eae6f0;
  --gold: #c5a44e;
  --cream: #f8f6f2;
  --white: #ffffff;
  --dark: #2d2a3e;
  --text-light: #e0dce8;
  --text-dark: #3a3650;
  --text-muted: #6b6480;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Public Sans', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ---- NAVBAR ---- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2.5rem;
  background: transparent;
  transition: background 0.3s ease;
}

.navbar.scrolled {
  background: rgba(42, 38, 62, 0.95);
  backdrop-filter: blur(10px);
}

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

.nav-icon {
  color: var(--white);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.nav-icon:hover {
  opacity: 1;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--white);
  font-family: 'Public Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lang-switcher span {
  opacity: 0.4;
}

.lang-switcher button {
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Public Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
  padding: 0;
}

.lang-switcher button.active {
  opacity: 1;
  font-weight: 700;
}

.lang-switcher button:hover {
  opacity: 1;
}

.nav-cta {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--dark);
}

/* ---- HERO ---- */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/hero.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 0 2rem;
}

.hero-subtitle {
  font-family: 'Public Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  
  opacity: 0.85;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(3.5rem, 9vw, 7rem);
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: 2.5rem;
}

/* ---- WELCOME ---- */

.welcome {
  padding: 6rem 2rem;
  background: var(--cream);
}

.welcome-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.logo-circle {
  margin: 0 auto;
}

.logo-img {
  width: 450px;
  max-width: 100%;
  height: auto;
}

.welcome-text h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.welcome-text p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.welcome-text blockquote {
  color: var(--text-muted);
  border-left: none;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ---- O MNĚ (ABOUT) ---- */

.about {
  background: var(--purple);
  color: var(--text-light);
  padding: 6rem 2rem;
  text-align: center;
}

.about-decoration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.deco-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  transform: rotate(-30deg);
}

.deco-line:last-child {
  transform: rotate(30deg);
  margin-top: -0.3rem;
}

.about-heading {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
  color: var(--white);
}

.about-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  text-align: left;
}

.about-col p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-light);
}

/* ---- SLUŽBY (SERVICES) ---- */

.services {
  background: var(--cream);
}

.services-header {
  background: var(--purple-light);
  text-align: center;
  padding: 3rem 2rem;
}

.services-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.service-item.reverse {
  direction: rtl;
}

.service-item.reverse > * {
  direction: ltr;
}

.service-image {
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-text {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--purple-faded);
}

.service-text h3 {
  font-size: 2.2rem;
  color: var(--purple);
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.service-text p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.8;
}

.service-divider {
  border: none;
  border-top: 2px solid var(--gold);
  width: 50px;
  margin: 1.5rem 0;
}

.service-focus {
  margin-bottom: 0.5rem;
}

.service-text ul {
  list-style: disc;
  padding-left: 1.2rem;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 2;
}

/* ---- JAK PROBÍHÁ NÁVŠTĚVA ---- */

.visit {
  background: var(--purple-faded);
  padding: 5rem 2rem;
  text-align: center;
}

.visit h3 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.visit p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ---- CENÍK (PRICING) ---- */

.pricing {
  padding: 5rem 2rem;
  background: var(--white);
  text-align: center;
}

.pricing h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
  color: var(--purple);
}

.pricing-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  text-align: left;
}

.pricing-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--text-dark);
}

.price-row {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.price-row span:first-child {
  white-space: nowrap;
}

.dots {
  flex: 1;
  border-bottom: 1px dotted var(--purple-light);
  margin: 0 0.5rem;
  min-width: 20px;
}

.price-row span:last-child {
  white-space: nowrap;
  font-weight: 400;
}

/* ---- KONTAKT ---- */

.contact {
  background: var(--cream);
  padding: 7rem 3rem;
}

.contact h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
  color: var(--purple);
  text-align: center;
}

.contact-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  text-align: center;
}

.contact-col h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--purple);
}

.contact-col p {
  font-size: 1rem;
  color: var(--text-muted);
}

.contact-col a {
  color: var(--text-muted);
  transition: color 0.3s;
}

.contact-col a:hover {
  color: var(--gold);
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  margin-top: 1.5rem;
  height: 250px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.btn-pill {
  display: inline-block;
  padding: 1rem 3rem;
  border: 2px solid var(--purple);
  border-radius: 100px;
  color: var(--purple);
  font-family: 'Public Sans', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
  background: transparent;
  margin-top: 2.5rem;
}

.btn-pill:hover {
  background: var(--purple);
  color: var(--white) !important;
  font-weight: 300;
}

/* ---- FOOTER ---- */

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 768px) {
  .welcome-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-item,
  .service-item.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .service-image {
    max-height: 300px;
  }

  .service-text {
    padding: 2.5rem 2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .navbar {
    padding: 1rem 1.5rem;
  }
}
