/* style.css - kompletní styly včetně jazykového přepínače */

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

:root {
  --gold: #d4af37;
  --dark: #111111;
  --black: #000000;
  --gray: #aaaaaa;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--black);
  color: white;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  color: var(--gold);
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: color 0.3s;
}

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

.burger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 2.2rem;
  cursor: pointer;
}

/* Jazykový přepínač - vylepšený styl */
.lang-switcher {
  display: flex;
  gap: 0.6rem;
  margin-left: 2rem;
  align-items: center;
}

.lang-btn {
  background: transparent;
  border: 2px solid var(--gold);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.lang-btn:hover {
  background: var(--gold);
  color: #000;
  transform: scale(1.08);
  box-shadow: 0 4px 15px rgba(212,175,55,0.4);
}

.lang-btn.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(212,175,55,0.6);
}

/* Hero */
.hero {
  min-height: 80vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  padding-top: 300px;               /* ← klíčová změna */
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.8rem, 12vw, 8rem);    /* responzivní velikost */
  font-weight: 900;
  line-height: 0.92;                        /* těsnější řádky pro dramatický efekt */
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 2rem;
  text-align: center;
  word-break: break-word;
  hyphens: auto;
}

.hero-title br {
  display: block;
}

.hero-subtitle {
  font-size: clamp(1.3rem, 4.5vw, 1.8rem);
  font-weight: 400;
  color: #e0e0e0;
  margin: 0 0 3rem;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  padding: 1.1rem 2.8rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: white;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(212,175,55,0.4);
}

/* O NÁS, CENÍK, REZERVACE */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.gold-line {
  width: 220px;
  height: 6px;
  background: var(--gold);
  margin: 1.5rem auto 0;
  border-radius: 3px;
}

.lead-text {
  font-size: 1.35rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 5rem;
  color: #ddd;
  line-height: 1.8;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.stat-item:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.stat-number {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.stat-number span {
  font-size: 0.6em;
  vertical-align: super;
}

.stat-label {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
}

.features {
  text-align: center;
  font-size: 1.3rem;
  color: var(--gold);
}

.features span {
  margin: 0 1.8rem;
  opacity: 0.9;
}

.pricing-subtitle {
  text-align: center;
  font-size: 1.4rem;
  color: #ccc;
  margin: 2rem 0 4rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-12px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.card .price {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold);
  margin: 1rem 0 1.8rem;
}

.card ul {
  list-style: none;
  margin-bottom: 2rem;
  color: #ddd;
}

.card ul li {
  margin: 0.9rem 0;
  font-size: 1.1rem;
}

.badge {
  background: var(--gold);
  color: #000;
  font-weight: bold;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  display: inline-block;
  margin-bottom: 1.2rem;
}

.highlight {
  border: 2px solid var(--gold);
  background: rgba(212,175,55,0.08);
}

.reservation {
  padding: 8rem 5%;
  text-align: center;
  background: linear-gradient(to bottom, #111, #000);
}

.reservation h2 {
  font-size: clamp(2.8rem, 8vw, 5rem);
  margin-bottom: 1.5rem;
}

.reservation p {
  font-size: 1.4rem;
  color: #ccc;
  margin-bottom: 3rem;
}

.btn-primary.large {
  padding: 1.4rem 4rem;
  font-size: 1.5rem;
}

/* Responzivita */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 2rem;
    text-align: center;
  }
  .nav-links.active { display: flex; }
  .burger { display: block; }
  .lang-switcher {
    margin: 1rem 0;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .pricing-cards { grid-template-columns: 1fr; }
}

/* ── SUBPAGE HERO (pro metodiku) ── */
.subpage-hero {
  background: var(--black);
  padding: 10rem 5% 6rem;
  text-align: center;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}

.subpage-hero h1 {
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.subpage-hero .subtitle {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  color: #ddd;
  max-width: 900px;
  margin: 0 auto;
}

/* ── METHODOLOGY ── */
.methodology {
  padding: 6rem 5% 10rem;
  background: var(--dark);
}

.section-block {
  max-width: 1000px;
  margin: 0 auto 6rem;
  padding: 0 1rem;
}

.section-block h2 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: var(--gold);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-block h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 5px;
  background: var(--gold);
  border-radius: 3px;
}

.section-block p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 1.5rem;
}

.highlight {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  background: rgba(212,175,55,0.12);
  border-left: 6px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 8px;
}

/* Seznamy */
.two-columns {
  column-count: 2;
  column-gap: 3rem;
  list-style: none;
  margin: 2rem 0;
}

.two-columns li {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  line-height: 1.6;
  break-inside: avoid;
}

.timeline {
  list-style: none;
  counter-reset: step;
  margin: 2rem 0;
}

.timeline li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2.5rem;
  font-size: 1.2rem;
  line-height: 1.7;
}

.timeline li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3rem;
}

.positions {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.positions li {
  font-size: 1.2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,0.2);
  transition: all 0.3s;
}

.positions li:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.values-grid div {
  background: rgba(212,175,55,0.12);
  color: var(--gold);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 1.2rem;
  border: 1px solid rgba(212,175,55,0.3);
}

/* Responzivita pro metodiku */
@media (max-width: 768px) {
  .two-columns { column-count: 1; }
  .subpage-hero { padding: 8rem 5% 5rem; }
  .section-block { margin-bottom: 4rem; }
}

.ig-link {
  color: white;
  font-size: 1.8rem;                /* větší ikona */
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem;
  border-radius: 8px;
  text-decoration: none;
}

.ig-link:hover {
  color: var(--gold);
  transform: scale(1.2);
  background: rgba(212,175,55,0.15);
  box-shadow: 0 0 12px rgba(212,175,55,0.3);
}

.footer {
  background: var(--dark);
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer img {
  transition: transform 0.3s ease;
}

.footer img:hover {
  transform: scale(1.08);
}