/* ============================================================
   VAZIMSI.CZ — Redesign 2026
   Teplý, spirituální, ženský styl
   Barvy: oranžová/meruňková #E8856A, krémová, tmavá
   ============================================================ */

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

:root {
  --orange: #E8856A;
  --orange-light: #F2A98B;
  --orange-dark: #C96845;
  --cream: #FDF8F3;
  --cream-dark: #F5EDE3;
  --brown: #5C3D2E;
  --brown-light: #8B6355;
  --text: #2C1F17;
  --text-muted: #7A5C4E;
  --white: #FFFFFF;
  --shadow: rgba(92, 61, 46, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

/* ── Typography ────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }

p { margin-bottom: 1.2rem; }
a { color: var(--orange-dark); text-decoration: none; }
a:hover { color: var(--orange); }

/* ── NAVBAR ────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(232,133,106,0.2);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px var(--shadow); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--orange-dark);
  letter-spacing: 0.04em;
}
.nav-logo span { color: var(--brown); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brown);
  transition: color .2s;
}
.nav-links a:hover { color: var(--orange); }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: .45rem 1.2rem;
  border-radius: 50px;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  transition: .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FDF8F3 0%, #F5EDE3 40%, #EDD9C8 100%);
  padding: 120px 5% 80px;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-circle:nth-child(1) {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,133,106,.15) 0%, transparent 70%);
  top: -200px; right: -150px;
}
.hero-bg-circle:nth-child(2) {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,104,69,.1) 0%, transparent 70%);
  bottom: -100px; left: -100px;
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }

.hero-tag {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
  padding: .4rem 1.2rem;
  border: 1px solid rgba(232,133,106,.4);
  border-radius: 50px;
}

.hero h1 {
  color: var(--brown);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.hero h1 em { font-style: normal; color: var(--orange-dark); }

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.btn {
  display: inline-block;
  padding: .9rem 2.2rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all .25s;
  cursor: pointer;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,133,106,.4);
}
.btn-primary:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(232,133,106,.5);
}
.btn-outline {
  border: 1.5px solid var(--orange);
  color: var(--orange-dark);
  margin-left: 1rem;
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── SECTIONS ──────────────────────────────────────── */
.section {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.section-wide {
  padding: 80px 5%;
}
.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-title h2 { color: var(--brown); margin-bottom: .8rem; }
.section-title p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.section-title .divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  margin: 1rem auto;
}

/* ── CARDS GRID ───────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 20px var(--shadow);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-light), var(--orange-dark));
}
.card:hover { transform: translateY(-6px); box-shadow: 0 8px 40px var(--shadow); }
.card-icon {
  width: 48px; height: 48px;
  margin-bottom: 1.2rem;
  color: var(--orange);
}
.card h3 { color: var(--brown); margin-bottom: .8rem; }
.card p { color: var(--text-muted); font-size: .93rem; margin-bottom: 1.2rem; }
.card a { font-size: .85rem; color: var(--orange); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }

/* ── ABOUT SECTION ─────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text h2 { color: var(--brown); margin-bottom: 1.5rem; }
.about-text p { color: var(--text-muted); }
.about-image {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--cream-dark), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image svg { width: 80px; height: 80px; color: var(--white); opacity: .6; }

/* ── PERSON CARD ───────────────────────────────────── */
.person-section {
  background: var(--white);
  padding: 80px 5%;
}
.person-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.person-card { text-align: center; }
.person-avatar {
  width: 180px; height: 180px;
  border-radius: 50%;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--cream-dark), var(--orange-light));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 30px rgba(232,133,106,.3);
}
.person-avatar svg { width: 70px; height: 70px; color: var(--white); }
.person-card h3 { font-size: 2rem; color: var(--brown); margin-bottom: .4rem; }
.person-card .role { color: var(--orange); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.2rem; }
.person-card p { color: var(--text-muted); font-size: .95rem; }

/* ── HERO-PAGE (inner pages) ──────────────────────── */
.page-hero {
  min-height: 45vh;
  background: linear-gradient(135deg, #FDF8F3, #EDD9C8);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 130px 5% 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.page-hero h1 { color: var(--brown); font-style: italic; }
.page-hero .hero-tag { margin-bottom: 1.2rem; }

/* ── CONTENT PAGE ─────────────────────────────────── */
.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 5%;
}
.page-content h2 { color: var(--brown); margin: 2.5rem 0 1rem; }
.page-content h3 { color: var(--brown-light); margin: 2rem 0 .8rem; }
.page-content p { color: var(--text-muted); }
.page-content ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
}
.page-content ul li {
  padding: .5rem 0 .5rem 2rem;
  color: var(--text-muted);
  position: relative;
  border-bottom: 1px solid rgba(232,133,106,.12);
}
.page-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.highlight-box {
  background: linear-gradient(135deg, var(--cream-dark), #EDD9C8);
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.highlight-box p { color: var(--brown); margin: 0; font-style: italic; }

/* ── CONTACT FORM ─────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { color: var(--brown); margin-bottom: 2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-item svg { width: 22px; height: 22px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.contact-item strong { display: block; color: var(--brown); font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .2rem; }
.contact-item span { color: var(--text-muted); }

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 700; color: var(--brown); letter-spacing: .05em; text-transform: uppercase; margin-bottom: .5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1.2rem;
  border: 1.5px solid rgba(92,61,46,.2);
  border-radius: 10px;
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,133,106,.15);
}
.form-group textarea { height: 150px; resize: vertical; }

/* ── GALLERY ──────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-dark), var(--orange-light));
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform .3s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item svg { width: 40px; height: 40px; color: var(--white); opacity: .7; }

/* ── CTA SECTION ──────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--brown) 0%, var(--orange-dark) 100%);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { color: var(--white); font-style: italic; margin-bottom: 1rem; position: relative; }
.cta-section p { color: rgba(255,255,255,.8); max-width: 580px; margin: 0 auto 2.5rem; position: relative; }
.cta-section .btn-primary { background: var(--white); color: var(--orange-dark); position: relative; }
.cta-section .btn-primary:hover { background: var(--cream); color: var(--orange-dark); }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--brown);
  color: rgba(255,255,255,.7);
  padding: 60px 5% 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: .8rem;
}
.footer-brand p { font-size: .9rem; line-height: 1.8; }
.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: .9rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--orange-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  text-align: center;
  font-size: .8rem;
  max-width: 1200px;
  margin: 0 auto;
  color: rgba(255,255,255,.4);
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid, .person-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--cream); padding: 1.5rem 5%; gap: 1.2rem; border-bottom: 1px solid rgba(232,133,106,.2); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .btn-outline { margin-left: 0; margin-top: .8rem; }
  .hero { padding-top: 100px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
}
