@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* =====================================================================
   MASÁŽE PAVEL IVÁNEK - style.css
   Palette: Forest Green #2c4a1e | Sage #4a7a32 | Beige #f7f2ea | Cream #fdf9f3 | Gold #b8934a
   ===================================================================== */

  :root {
  /* Nová, uklidňující paleta barev */
  --green-dark: #3a5040; /* Uklidňující tmavší šalvěj */
  --green-mid:  #5c7a63; /* Jemná šalvějově zelená */
  --green-light:#87a88f; /* Světlejší pastelová zelená */
  --beige:      #f4f0e6; /* Barva teplého světlého písku */
  --cream:      #fbfaf7; /* Velmi jemný krémový základ */
  --gold:       #bfa36f; /* Tlumená, elegantní zemitá zlatá */
  --gold-light: #dbc79e;
  
  --black:      #262626;
  --text:       #3a3a3a;
  --text-muted: #737373;
  
  /* Jemnější ohraničení a mnohem měkčí stíny pro moderní vzhled */
  --border:     rgba(92, 122, 99, 0.12);
  --shadow:     0 8px 24px rgba(58, 80, 64, 0.06); 
  --shadow-lg:  0 16px 40px rgba(58, 80, 64, 0.1);
}

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

html { scroll-behavior:smooth; font-size:16px; }

body {
  font-family: "PT Sans", sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family:'Playfair Display',serif; line-height:1.2; }

a { text-decoration:none; color:inherit; transition:.2s; }

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

.container { max-width:1100px; margin:0 auto; padding:0 24px; }

/* ---- BUTTONS ---- */
.btn-primary {
  display:inline-flex; align-items:center; gap:8px;
  background: var(--green-dark);
  color:#fff !important;
  padding:14px 28px;
  border-radius:50px;
  font-family:'Raleway',sans-serif;
  font-weight:600;
  font-size:.9rem;
  letter-spacing:.04em;
  border:none; cursor:pointer;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 16px rgba(44,74,30,.25);
}
.btn-primary:hover { background:var(--green-mid); transform:translateY(-2px); box-shadow:0 8px 24px rgba(44,74,30,.3); }

.btn-secondary {
  display:inline-flex; align-items:center; gap:8px;
  background: transparent;
  color:#fff !important;
  padding:13px 28px;
  border-radius:50px;
  font-family:'Raleway',sans-serif;
  font-weight:600;
  font-size:.9rem;
  letter-spacing:.04em;
  border: 2px solid rgba(255,255,255,.6);
  cursor:pointer;
  transition: all .25s;
}
.btn-secondary:hover { background:rgba(255,255,255,.15); border-color:#fff; }

.btn-outline {
  display:inline-flex; align-items:center; gap:8px;
  background: transparent;
  color: var(--green-dark);
  padding:13px 28px;
  border-radius:50px;
  font-family:'Raleway',sans-serif;
  font-weight:600;
  font-size:.9rem;
  letter-spacing:.04em;
  border: 2px solid var(--green-dark);
  cursor:pointer;
  transition: all .25s;
}
.btn-outline:hover { background:var(--green-dark); color:#fff; }

.btn-nav {
  background: var(--green-dark) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: .85rem !important;
  transition: background .2s;
}
.btn-nav:hover { background: var(--green-mid) !important; }

/* ---- SECTION HEADERS ---- */
.section-eyebrow {
  display:inline-block;
  font-size:.75rem;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: var(--gold);
  margin-bottom:.75rem;
}

.section-title {
  font-size:clamp(2rem,4vw,2.8rem);
  color: var(--green-dark);
  margin-bottom:1rem;
}

.section-header {
  text-align:center;
  max-width:620px;
  margin:0 auto 3.5rem;
}
.section-header .section-title { margin-bottom:.75rem; }
.section-desc { color: var(--text-muted); font-size:.95rem; }
.section-header.light .section-title { color:#fff; }
.section-header.light .section-eyebrow { color: var(--gold-light); }

/* =============================================================== NAVBAR */
#navbar {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 20px 0;
}
#navbar.scrolled {
  background: rgba(253,249,243,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(44,74,30,.1);
  padding: 12px 0;
}

.nav-inner {
  max-width:1100px; margin:0 auto; padding:0 24px;
  display:flex; align-items:center; justify-content:space-between;
}

.nav-logo {
  display:flex; align-items:center; gap:10px;
  font-family:'Playfair Display',serif;
  font-size:1.2rem;
  font-weight:700;
  color:#fff;
  transition: color .3s;
}
#navbar.scrolled .nav-logo { color: var(--green-dark); }
.logo-leaf { font-size:1.3rem; }

.nav-links {
  display:flex; align-items:center; gap:2rem; list-style:none;
}
.nav-links a {
  font-size:.88rem;
  font-weight:500;
  color: rgba(255,255,255,.9);
  letter-spacing:.02em;
  transition: color .2s;
}
#navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--gold) !important; }

.nav-toggle {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:4px;
}
.nav-toggle span {
  display:block; width:24px; height:2px;
  background:#fff; border-radius:2px; transition:.3s;
}
#navbar.scrolled .nav-toggle span { background: var(--green-dark); }

/* =============================================================== HERO */
.hero {
  position:relative;
  min-height:100vh;
  display:flex; align-items:center;
  overflow:hidden;
}

.hero-bg {
  position:absolute; inset:0; z-index:0;
}

.hero-photo {
  position:absolute; inset:0;
  background: linear-gradient(135deg, #1a3a0e 0%, #2c5a1a 30%, #3d7025 60%, #2c4a1e 100%);
}

.hero-overlay {
  position:absolute; inset:0;
  background: linear-gradient(
    to right,
    rgba(15,30,10,.85) 0%,
    rgba(15,30,10,.6) 50%,
    rgba(15,30,10,.3) 100%
  );
}

/* Decorative pattern overlay */
.hero-bg::after {
  content:'';
  position:absolute; inset:0;
  background-image:
    radial-gradient(circle at 80% 30%, rgba(184,147,74,.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(106,154,80,.1) 0%, transparent 40%);
  pointer-events:none;
}

.hero-content {
  position:relative; z-index:2;
  max-width:1100px; margin:0 auto;
  padding: 120px 24px 80px;
  max-width:680px;
}

.hero-eyebrow {
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: var(--gold-light);
  margin-bottom:1.2rem;
}

.hero-title {
  font-size:clamp(3rem,7vw,5rem);
  color:#fff;
  line-height:1.08;
  margin-bottom:1.5rem;
}
.hero-title em {
  font-style:italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size:1.15rem;
  color: rgba(255,255,255,.8);
  font-weight:300;
  line-height:1.6;
  margin-bottom:2.5rem;
  max-width:480px;
}

.hero-ctas {
  display:flex; gap:1rem; flex-wrap:wrap;
  margin-bottom:3rem;
}

.hero-badges {
  display:flex; gap:1.5rem; flex-wrap:wrap;
}
.badge {
  display:flex; flex-direction:column;
  border-left: 2px solid var(--gold);
  padding-left:12px;
  color:rgba(255,255,255,.8);
  font-size:.82rem;
  font-weight:400;
}
.badge span {
  font-family:'Playfair Display',serif;
  font-size:1.3rem;
  color:#fff;
  font-weight:700;
}

.hero-scroll {
  position:absolute; bottom:32px; right:40px; z-index:2;
  display:flex; align-items:center; gap:10px;
  color:rgba(255,255,255,.5);
  font-size:.72rem; letter-spacing:.1em; text-transform:uppercase;
  writing-mode:vertical-rl;
}
.scroll-line {
  width:1px; height:60px; background:rgba(255,255,255,.3);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,100% { transform:scaleY(1); transform-origin:top; }
  50% { transform:scaleY(.4); transform-origin:bottom; }
}

/* =============================================================== ABOUT */
.about {
  padding: 100px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 5rem;
  align-items: center;
}

/* Portrait photo block */
.about-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-photo-frame {
  position: relative;
  z-index: 2;
}
.about-photo-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid var(--gold);
  border-radius: 20px;
  z-index: -1;
  opacity: .4;
}
.about-portrait {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  display: block;
  box-shadow: var(--shadow-lg);
  background: var(--beige);
}

/* Floating stat cards */
.about-stat-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 8px 30px rgba(44,74,30,.15);
  border: 1px solid var(--border);
  text-align: center;
  z-index: 4;
}
.about-stat-1 { bottom: 40px; left: -20px; }
.about-stat-2 { top: 40px;    right: -20px; }
.asc-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.asc-label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.about-text .section-title { margin-bottom: 1rem; }
.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1rem;
}
.about-text > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: .95rem;
}

.about-quote {
  background: var(--beige);
  border-left: 4px solid var(--green-mid);
  border-radius: 0 12px 12px 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
}
.about-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem !important;
  font-style: italic;
  color: var(--green-dark) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.about-list {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
}
.about-list li {
  padding: .55rem 0 .55rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  color: var(--text);
}
.about-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--green-mid);
  font-weight: 700;
}

.about-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* =============================================================== CERTIFICATES */
.certificates {
  padding: 100px 0;
  background: var(--beige);
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.cert-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(44,74,30,.07);
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.cert-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.cert-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #f0ece4;
}
.cert-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.cert-card:hover .cert-thumb img { transform: scale(1.04); }

.cert-thumb-pdf {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--beige), #ede8df);
}
.cert-pdf-icon { font-size: 4rem; }

.cert-overlay {
  position: absolute; inset: 0;
  background: rgba(15,30,10,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.cert-card:hover .cert-overlay { opacity: 1; }
.cert-overlay span {
  color: #fff; font-size: .88rem; font-weight: 600;
  background: rgba(44,74,30,.55);
  padding: 7px 18px; border-radius: 30px;
  border: 1px solid rgba(255,255,255,.3);
}

.cert-info { padding: 1.1rem 1.2rem 1.3rem; }
.cert-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gold);
  background: #fdf5e6;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: .5rem;
}
.cert-info h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: .25rem;
}
.cert-info p {
  font-size: .8rem;
  color: var(--text-muted);
}

/* Cert lightbox reuses .lightbox styles */
.cert-lightbox {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(5,12,3,.93);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.cert-lightbox.active { opacity: 1; pointer-events: auto; }

/* =============================================================== MASSAGES */
.massages {
  padding: 100px 0;
  background: var(--beige);
}

.massages-grid {
  display:grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr));
  gap:1.25rem;
  align-items: start; /* ← přidat tento řádek */
}

.massage-card {
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow: 0 2px 12px rgba(44,74,30,.07);
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
  cursor:pointer;
}
.massage-card:hover { box-shadow: var(--shadow); transform:translateY(-3px); }
.massage-card.open { box-shadow: var(--shadow-lg); }

.mc-header {
  display:flex; align-items:center; gap:1rem;
  padding:1.2rem 1.4rem;
}
.mc-icon {
  font-size:1.6rem;
  width:52px; height:52px;
  display:flex; align-items:center; justify-content:center;
  background: var(--beige);
  border-radius:12px;
  flex-shrink:0;
}
.mc-info { flex:1; }
.mc-info h3 {
  font-family:'Raleway',sans-serif;
  font-size:1rem; font-weight:700;
  color: var(--green-dark);
  margin-bottom:.25rem;
}
.mc-meta { display:flex; gap:.75rem; align-items:center; }
.mc-price {
  font-weight:700;
  color: var(--gold);
  font-size:.95rem;
}
.mc-time {
  font-size:.8rem;
  color: var(--text-muted);
  background: var(--beige);
  padding:2px 10px;
  border-radius:20px;
}
.mc-toggle {
  font-size:1.4rem;
  color: var(--green-dark);
  font-weight:300;
  transition: transform .3s;
  width:28px; text-align:center; flex-shrink:0;
}
.massage-card.open .mc-toggle { transform:rotate(45deg); }

.mc-body {
  max-height:0; overflow:hidden;
  transition: max-height .4s ease, padding .3s;
  padding: 0 1.4rem;
}
.massage-card.open .mc-body {
  max-height:500px;
  padding: 0 1.4rem 1.4rem;
}
.mc-body p {
  font-size:.88rem;
  color: var(--text-muted);
  line-height:1.7;
  margin-bottom:.75rem;
}
.mc-body p strong { color: var(--text); }
.mc-note {
  background: #fff8e6;
  border-left:3px solid var(--gold);
  padding:.6rem .8rem !important;
  border-radius:0 8px 8px 0;
  font-size:.82rem !important;
}

/* =============================================================== PRICELIST */
.pricelist {
  padding:100px 0;
  background: var(--green-dark);
}
.pricelist .section-title { color:#fff; }
.pricelist .section-eyebrow { color: var(--gold-light); }

.price-table {
  background: rgba(255,255,255,.07);
  border-radius:16px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.1);
  margin-bottom:3rem;
}
.pt-row {
  display:grid; grid-template-columns:1fr 120px 120px;
  padding:1rem 1.5rem;
  border-bottom:1px solid rgba(255,255,255,.06);
  align-items:center;
}
.pt-row:last-child { border-bottom:none; }
.pt-row span { color:rgba(255,255,255,.85); font-size:.9rem; }
.pt-header {
  background:rgba(255,255,255,.08);
  font-weight:700 !important;
}
.pt-header span { font-size:.78rem !important; text-transform:uppercase; letter-spacing:.06em; color:rgba(255,255,255,.5) !important; }
.pt-row:not(.pt-header):hover { background:rgba(255,255,255,.04); }
.price-tag {
  font-weight:700 !important;
  color: var(--gold-light) !important;
  font-size:1rem !important;
}
.pt-dotaz span:first-child { color:rgba(255,255,255,.6) !important; font-style:italic; }

.payment-box {
  display:grid; grid-template-columns:1fr auto;
  gap:3rem; align-items:center;
  background:rgba(255,255,255,.07);
  border-radius:16px;
  padding:2rem 2.5rem;
  border:1px solid rgba(255,255,255,.1);
}
.pay-text h3 {
  color:#fff;
  font-size:1.4rem;
  margin-bottom:.75rem;
}
.pay-text p { color:rgba(255,255,255,.7); font-size:.9rem; line-height:1.6; margin-bottom:.75rem; }
.pay-text ul { list-style:none; padding-left:.5rem; }
.pay-text ul li { color:rgba(255,255,255,.7); font-size:.88rem; padding:.3rem 0; }
.pay-qr { text-align:center; }
.qr-placeholder {
  background:#fff;
  border-radius:12px;
  padding:16px;
  display:inline-block;
}
.qr-note { font-size:.72rem; color:var(--text-muted); margin-top:.5rem; }
.qr-account { font-size:.7rem; color:var(--text-muted); font-weight:600; }

/* =============================================================== VOUCHERS */
.vouchers {
  padding:100px 0;
  background: var(--cream);
}
.vouchers-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:5rem; align-items:center;
}
.voucher-text p { color:var(--text-muted); line-height:1.7; margin-bottom:1rem; }
.voucher-text .btn-primary { margin-top:.5rem; }

.voucher-card-wrap { perspective: 1000px; }
.voucher-card {
  background: linear-gradient(135deg, var(--green-dark) 0%, #3d6a25 60%, var(--green-mid) 100%);
  border-radius:20px;
  padding:2.5rem;
  color:#fff;
  position:relative;
  overflow:hidden;
  box-shadow: var(--shadow-lg);
  transition: transform .4s;
  transform: rotate(-2deg);
}
.voucher-card:hover { transform: rotate(0deg) scale(1.02); }

.vc-top {
  display:flex; align-items:center; gap:1rem;
  margin-bottom:1.5rem;
}
.vc-gift { font-size:2rem; }
.vc-title {
  font-size:.8rem;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  opacity:.7;
}
.vc-mid { margin-bottom:2rem; }
.vc-name {
  font-family:'Playfair Display',serif;
  font-size:2rem;
  font-weight:700;
  line-height:1;
  margin-bottom:.4rem;
}
.vc-salon { opacity:.7; font-size:.85rem; }
.vc-bottom {
  display:flex; justify-content:space-between;
  opacity:.6; font-size:.78rem;
  border-top:1px solid rgba(255,255,255,.2);
  padding-top:1rem;
}
.vc-deco {
  position:absolute;
  width:200px; height:200px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.1);
  top:-60px; right:-60px;
}
.vc-deco::after {
  content:'';
  position:absolute;
  width:300px; height:300px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.06);
  top:-50px; left:-50px;
}

/* =============================================================== PHOTO STUDIO */
.photostudio {
  padding:80px 0;
  background: var(--beige);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.ps-inner {
  display:flex; gap:3rem; align-items:center;
  max-width:800px; margin:0 auto;
}
.ps-icon { font-size:4rem; flex-shrink:0; }
.ps-text .section-title { font-size:2rem; margin-bottom:.75rem; }
.ps-text p { color:var(--text-muted); line-height:1.7; margin-bottom:.75rem; }

/* =============================================================== HOURS STRIP */
.hours-strip {
  padding:60px 0;
  background: var(--green-dark);
}
.hours-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
}
.hours-item {
  text-align:center;
  padding:1.5rem;
  border-right:1px solid rgba(255,255,255,.1);
}
.hours-item:last-child { border-right:none; }
.hi-icon { font-size:2rem; margin-bottom:.75rem; }
.hours-item h4 {
  font-family:'Raleway',sans-serif;
  font-size:.75rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:rgba(255,255,255,.5);
  margin-bottom:.5rem;
}
.hours-item p { color:rgba(255,255,255,.7); font-size:.88rem; }
.hi-main {
  color:#fff !important;
  font-family:'Playfair Display',serif;
  font-size:1.2rem !important;
  font-weight:600;
  margin:.25rem 0 !important;
}
.hi-main a { color:#fff !important; }
.hi-main a:hover { color:var(--gold-light) !important; }
.hi-note { color:rgba(255,255,255,.4) !important; font-size:.78rem !important; }

/* =============================================================== BLOG */
.blog {
  padding:100px 0;
  background: var(--cream);
}

.blog-grid {
  display:grid; grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
  gap:1.5rem;
  margin-bottom:3rem;
}

.blog-post {
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow: 0 2px 12px rgba(44,74,30,.07);
  border:1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.blog-post:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.bp-image {
  height:200px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  object-fit:cover; width:100%;
}
.bp-body { padding:1.5rem; }
.bp-date { font-size:.75rem; color:var(--text-muted); margin-bottom:.5rem; letter-spacing:.04em; }
.bp-title {
  font-family:'Playfair Display',serif;
  font-size:1.15rem;
  color: var(--green-dark);
  margin-bottom:.75rem;
  line-height:1.3;
}
.bp-text { font-size:.88rem; color:var(--text-muted); line-height:1.6; }
.bp-delete {
  margin-top:1rem;
  background:none; border:1px solid #e55;
  color:#e55; padding:4px 12px; border-radius:20px;
  font-size:.75rem; cursor:pointer;
  display:none;
}
.admin-mode .bp-delete { display:inline-block; }

.blog-no-posts {
  text-align:center;
  padding:3rem;
  color:var(--text-muted);
  font-style:italic;
}

/* Admin panel */
.blog-admin { margin-top:2rem; }
.btn-admin-toggle {
  background:none; border:2px dashed var(--border);
  color:var(--text-muted); padding:10px 20px;
  border-radius:8px; cursor:pointer; font-size:.85rem;
  transition:.2s;
}
.btn-admin-toggle:hover { border-color:var(--green-mid); color:var(--green-dark); }

.admin-panel {
  margin-top:1rem;
  background:#fff;
  border-radius:16px;
  padding:2rem;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}
.admin-panel h4 {
  font-size:1.1rem;
  color:var(--green-dark);
  margin-bottom:1.25rem;
}
.admin-login { text-align:center; max-width:320px; margin:0 auto; }
.admin-login input {
  width:100%; padding:12px 16px;
  border:2px solid var(--border);
  border-radius:8px;
  font-family:'Raleway',sans-serif;
  font-size:.9rem;
  margin-bottom:1rem;
  outline:none;
}
.admin-login input:focus { border-color:var(--green-mid); }
.admin-hint { margin-top:.75rem; color:var(--text-muted); font-size:.8rem; }
.admin-hint code { background:var(--beige); padding:2px 6px; border-radius:4px; }

.admin-input {
  width:100%; padding:12px 16px;
  border:2px solid var(--border);
  border-radius:8px;
  font-family:'Raleway',sans-serif;
  font-size:.9rem;
  margin-bottom:1rem;
  outline:none;
  display:block;
}
.admin-textarea {
  width:100%; padding:12px 16px;
  border:2px solid var(--border);
  border-radius:8px;
  font-family:'Raleway',sans-serif;
  font-size:.9rem;
  margin-bottom:1rem;
  outline:none;
  display:block;
  height:140px;
  resize:vertical;
}
.admin-input:focus,.admin-textarea:focus { border-color:var(--green-mid); }
.admin-btns { display:flex; gap:1rem; }

.edit-list { margin-top:1.5rem; border-top:1px solid var(--border); padding-top:1rem; }
.edit-list h5 { color:var(--text-muted); font-size:.8rem; text-transform:uppercase; letter-spacing:.06em; margin-bottom:.75rem; }
.edit-item {
  display:flex; justify-content:space-between; align-items:center;
  padding:.5rem 0;
  border-bottom:1px solid var(--border);
  font-size:.85rem;
}
.edit-item button {
  background:none; border:none; color:#e55; cursor:pointer;
  font-size:.8rem; padding:2px 8px; border-radius:4px;
  transition:.2s;
}
.edit-item button:hover { background:#fff0f0; }

/* =============================================================== ORIFLAME */
.oriflame-section {
  padding: 100px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.oriflame-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.oriflame-content .lead-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.oriflame-content p {
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.oriflame-benefits {
  background: var(--beige);
  padding: 2rem;
  border-radius: 16px;
  margin: 2rem 0;
  border-left: 4px solid var(--gold);
}

.oriflame-benefits h4 {
  color: var(--green-dark);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-family: 'Raleway', sans-serif;
}

.oriflame-benefits ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.oriflame-benefits li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.oriflame-benefits li::before {
  content: '🌿';
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.9rem;
}

.oriflame-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.social-link {
  font-size: 0.85rem !important;
  background: rgba(92, 122, 99, 0.1);
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
}
.social-link a { color: var(--green-dark); }
.social-link a:hover { color: var(--gold); }

.oriflame-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.os-card {
  background: #fff;
  padding: 2.2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.os-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.os-card h3 {
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}

.os-hours {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.os-hours li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.os-hours li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.os-hours li span:last-child {
  font-weight: 600;
  color: var(--text);
  text-align: right;
  line-height: 1.4;
}

.os-hours li .closed {
  color: #e55 !important;
}

.contact-card p {
  margin-bottom: 0.8rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-card a {
  color: var(--green-mid);
  font-weight: 600;
}

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

/* =============================================================== MAP */
.map-section {
  padding:100px 0;
  background: var(--beige);
}
.map-contact-grid {
  display:grid; grid-template-columns:1fr 360px;
  gap:3rem;
}
.map-wrap { border-radius:16px; overflow:hidden; box-shadow:var(--shadow); }
.contact-info h3 {
  font-size:1.5rem;
  color:var(--green-dark);
  margin-bottom:1.5rem;
}
.ci-list { display:flex; flex-direction:column; gap:.75rem; }
.ci-item {
  display:flex; gap:1rem;
  padding:1rem;
  background:#fff;
  border-radius:10px;
  border:1px solid var(--border);
  align-items:flex-start;
  font-size:.88rem;
}
.ci-icon { font-size:1.1rem; flex-shrink:0; margin-top:.1rem; }
.ci-item a { color:var(--green-mid); font-weight:600; }
.ci-item a:hover { color:var(--green-dark); }

/* =============================================================== MODAL */
.modal {
  position:fixed; inset:0; z-index:2000;
  display:flex; align-items:flex-start; justify-content:center;
  padding:40px 16px;
  pointer-events:none; opacity:0;
  transition: opacity .3s;
  overflow-y:auto;
}
.modal.active { opacity:1; pointer-events:auto; }
.modal-backdrop {
  position:fixed; inset:0; z-index:1999;
  background:rgba(15,25,10,.7);
  backdrop-filter:blur(4px);
  opacity:0; pointer-events:none; transition:opacity .3s;
}
.modal-backdrop.active { opacity:1; pointer-events:auto; }

.modal-inner {
  background:#fff;
  border-radius:20px;
  max-width:780px; width:100%;
  position:relative;
  padding:3rem;
  margin:auto;
  box-shadow:0 24px 80px rgba(0,0,0,.25);
}
.modal-close {
  position:absolute; top:1.5rem; right:1.5rem;
  background:var(--beige); border:none;
  width:36px; height:36px; border-radius:50%;
  font-size:1rem; cursor:pointer;
  color:var(--text-muted);
  transition:.2s;
}
.modal-close:hover { background:var(--border); }

.modal-content h2 {
  font-size:1.8rem;
  color:var(--green-dark);
  margin-bottom:2rem;
  padding-bottom:1rem;
  border-bottom:2px solid var(--beige);
}
.pr-section { margin-bottom:1.75rem; }
.pr-section h3 {
  font-family:'Raleway',sans-serif;
  font-size:.85rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--green-mid);
  margin-bottom:.75rem;
}
.pr-section p {
  font-size:.9rem;
  color:var(--text-muted);
  line-height:1.7;
}
.pr-table { width:100%; border-collapse:collapse; font-size:.88rem; }
.pr-table td {
  padding:.5rem .75rem;
  border-bottom:1px solid var(--border);
}
.pr-table td:first-child { color:var(--text-muted); width:160px; }
.pr-table td:last-child { font-weight:600; color:var(--text); }

/* =============================================================== FOOTER */
.footer {
  background: #0f1e0a;
  padding:60px 0 30px;
}
.footer-grid {
  display:grid; grid-template-columns:1fr 1fr 1fr;
  gap:3rem;
  padding-bottom:3rem;
  border-bottom:1px solid rgba(255,255,255,.1);
  margin-bottom:2rem;
}
.footer-brand { display:flex; flex-direction:column; gap:.75rem; }
.footer-brand .logo-leaf { font-size:1.5rem; }
.footer-brand h3 {
  font-size:1.2rem;
  color:#fff;
}
.footer-brand p { color:rgba(255,255,255,.5); font-size:.85rem; line-height:1.6; }
.footer-links h4, .footer-contact h4 {
  font-family:'Raleway',sans-serif;
  font-size:.75rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:rgba(255,255,255,.4);
  margin-bottom:1rem;
}
.footer-links ul { list-style:none; display:flex; flex-direction:column; gap:.5rem; }
.footer-links a { color:rgba(255,255,255,.6); font-size:.88rem; transition:.2s; }
.footer-links a:hover { color:var(--gold-light); }
.footer-contact p { color:rgba(255,255,255,.6); font-size:.88rem; margin-bottom:.4rem; }
.footer-contact a { color:rgba(255,255,255,.7); }
.footer-contact a:hover { color:var(--gold-light); }
.btn-footer-link {
  background:none; border:1px solid rgba(255,255,255,.2);
  color:rgba(255,255,255,.6); padding:6px 16px;
  border-radius:20px; cursor:pointer; font-size:.8rem;
  transition:.2s; margin-top:.5rem;
  font-family:'Raleway',sans-serif;
}
.btn-footer-link:hover { border-color:var(--gold); color:var(--gold-light); }

.footer-bottom p { color:rgba(255,255,255,.3); font-size:.8rem; text-align:center; }

/* =============================================================== RESPONSIVE */
@media (max-width:900px) {
  .about-grid { grid-template-columns:1fr; }
  .about-photo-wrap { margin-bottom: 3rem; }
  .about-stat-1 { left: 10px; }
  .about-stat-2 { right: 10px; }
  .vouchers-grid,
  .map-contact-grid { grid-template-columns:1fr; }
  .payment-box { grid-template-columns:1fr; }
  .pay-qr { display:none; }
  .hours-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr; gap:2rem; }
  .massages-grid { grid-template-columns:1fr; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width:720px) {
  /* OPRAVENÉ POZADÍ A ROZLOŽENÍ MOBILNÍHO MENU */
  .nav-links { 
    display: none; 
    flex-direction: column; 
    position: absolute; /* Změněno z fixed */
    top: 100%; /* Přichytí se vždy přesně pod lištu, i když se při scrollování zmenší */
    left: 0; 
    right: 0;
    height: 100vh; /* Překryje zbytek obrazovky směrem dolů */
    background: var(--cream) !important; /* Vynucené, neprůhledné pozadí */
    padding: 2rem; 
    gap: 1.5rem; 
    z-index: 999;
    text-align: center;
    border-top: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }
  
  .nav-links.open { 
    display: flex; 
  }
  
  /* Oprava neviditelného textu a zvětšení pro prsty */
  .nav-links a {
    color: var(--green-dark) !important;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px;
    display: block;
  }
  
  /* Tlačítko provozního řádu v mobilním menu */
  .nav-links a.btn-nav {
    display: inline-block;
    color: #fff !important;
    background: var(--green-dark) !important;
    margin-top: 1rem;
    padding: 12px 24px;
    font-size: 1rem !important;
    border-radius: 50px;
  }

  .nav-toggle { display:flex; }
  
  /* Zbytek vašich původních mobilních stylů... */
  .hero-content { padding:100px 24px 60px; }
  .hero-ctas { flex-direction:column; }
  .ps-inner { flex-direction:column; text-align:center; }
  .hours-grid { grid-template-columns:1fr; }
  .hours-item { border-right:none; border-bottom:1px solid rgba(255,255,255,.1); }
  .pt-row { grid-template-columns:1fr 80px 90px; padding:.75rem 1rem; font-size:.82rem; }
  .modal-inner { padding:2rem 1.5rem; }
}


/* =============================================================== GALLERY */
.gallery {
  padding: 100px 0;
  background: var(--beige);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--green-dark);
  box-shadow: 0 3px 14px rgba(44,74,30,.12);
  transition: transform .3s, box-shadow .3s;
}
.gallery-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s, filter .3s;
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(.85); }

.gallery-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(15,30,10,.4);
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  background: rgba(44,74,30,.6);
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.3);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(5,12,3,.93);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.lightbox.active { opacity: 1; pointer-events: auto; }

.lb-inner {
  max-width: 90vw; max-height: 90vh;
  text-align: center;
}
.lb-inner img {
  max-width: 100%; max-height: 82vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  display: block; margin: 0 auto;
}
.lb-caption {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  margin-top: .75rem;
}

.lb-close {
  position: fixed; top: 20px; right: 24px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; width: 42px; height: 42px; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer;
  transition: background .2s;
  z-index: 10;
}
.lb-close:hover { background: rgba(255,255,255,.2); }

.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; width: 50px; height: 50px; border-radius: 50%;
  font-size: 1.6rem; cursor: pointer; line-height: 1;
  transition: background .2s;
  z-index: 10;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.2); }

/* =============================================================== ANIMATIONS */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}
.fade-up {
  opacity:0;
  animation: fadeUp .7s ease forwards;
}
.fade-up-delay-1 { animation-delay:.15s; }
.fade-up-delay-2 { animation-delay:.3s; }
.fade-up-delay-3 { animation-delay:.45s; }
/* ====================================================================
   VYLEPŠENÁ MAPA A KONTAKT (Rozdělené původní rozložení)
   ==================================================================== */
   .section-location {
    padding: 100px 0;
    background-color: var(--beige);
  }
  
  .location-wrapper {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem; /* Zpět na původní velkou mezeru mezi mapou a kontakty */
    background: transparent; /* Odstraněno společné bílé pozadí */
    border-radius: 0;
    box-shadow: none; /* Odstraněn společný stín */
    border: none;
  }
  
  .location-map {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 20px; /* Moderní zaoblení nyní aplikováno jen na mapu */
    overflow: hidden;
    box-shadow: var(--shadow-lg); /* Stín pouze pod mapou */
    border: 1px solid var(--border);
  }
  
  .location-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .location-info {
    padding: 0; /* Zrušeno zbytečné vnitřní odsazení */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
  }
  
  .location-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--green-dark);
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .ci-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .ci-item {
    display: flex;
    gap: 16px;
    padding: 16px 20px;
    background: #fff; /* Bílé pozadí přesunuto na jednotlivé kontaktní kartičky */
    border-radius: 12px;
    border: 1px solid var(--border);
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.5;
    box-shadow: var(--shadow); /* Přidán jemný stín kartičkám */
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .ci-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
  }
  
  .ci-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .ci-item strong {
    color: var(--green-dark);
    display: block;
    margin-bottom: 4px;
    font-family: 'Raleway', sans-serif;
  }
  
  .ci-item a {
    color: var(--green-mid);
    font-weight: 600;
    text-decoration: none;
  }
  
  .ci-item a:hover {
    color: var(--gold);
  }
  
  /* Responsivita pro mobilní telefony a tablety */
  @media (max-width: 900px) {
    .oriflame-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .location-wrapper {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
    .location-map {
      min-height: 350px;
    }
  }