:root {
  --pine: #16241a;        /* darkest green */
  --forest: #2c4a34;      /* primary green */
  --forest-light: #52705a;
  --cream: #faf8f1;
  --warm: #eef0e2;        /* tinted section bg */
  --moss: #dee5d0;
  --dark: #22301f;
  --mid: #48584a;         /* body text */
  --gold: #c9a84c;
  --gold-light: #e0b96a;
  --gold-pale: #f0d898;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 112.5%; }
body {
  background: var(--cream);
  color: var(--dark);
  font-family: "Cormorant Garamond", serif;
  overflow-x: hidden;
}

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url("assets/hero-web.jpg");
  background-size: cover; background-position: center;
  animation: slowzoom 20s ease-in-out infinite alternate;
}
@keyframes slowzoom { from { transform: scale(1.0); } to { transform: scale(1.07); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,18,12,0.30) 0%, rgba(10,18,12,0.72) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 2rem; }
@keyframes fadeup { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-subtitle { font-family: "Raleway", sans-serif; font-weight: 400; letter-spacing: 0.35em; text-transform: uppercase; font-size: 1.05rem; color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,0.5); margin-bottom: 1.8rem; animation: fadeup 1.2s 0.2s ease both; }
.hero-names { font-family: "Lora", serif; font-size: clamp(4rem, 11vw, 8rem); color: #fff; line-height: 1.05; font-style: italic; font-weight: 400; animation: fadeup 1.2s 0.4s ease both; }
.hero-names .gold { color: var(--gold-pale); }
.hero-amp { display: block; font-size: clamp(2.5rem, 6vw, 5rem); color: var(--gold-light); margin: 0.15em 0; }
.hero-date { margin-top: 1.8rem; font-family: "Lora", serif; font-style: italic; font-size: clamp(1.5rem, 3.5vw, 2.2rem); color: var(--gold-pale); animation: fadeup 1.2s 0.7s ease both; }
.hero-location { font-family: "Raleway", sans-serif; font-weight: 400; font-size: 1rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.88); margin-top: 0.6rem; animation: fadeup 1.2s 0.9s ease both; }
.scroll-down { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); width: 40px; height: 60px; display: flex; justify-content: center; align-items: center; z-index: 2; }
.scroll-down span { display: block; width: 20px; height: 20px; border-bottom: 3px solid var(--gold-light); border-right: 3px solid var(--gold-light); transform: rotate(45deg); animation: scrollArrow 1.6s infinite; filter: drop-shadow(0 0 4px rgba(224,185,106,0.6)); }
@keyframes scrollArrow {
  0% { opacity: 0; transform: rotate(45deg) translate(-6px, -6px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: rotate(45deg) translate(8px, 8px); }
}

/* SHARED */
.container { max-width: 880px; margin: 0 auto; }
section { padding: 5rem 2rem; }
.section-title { font-family: "Lora", serif; font-size: clamp(2.2rem, 5vw, 3.2rem); text-align: center; color: var(--forest); margin-bottom: 2rem; font-weight: 400; }
.divider { display: flex; align-items: center; gap: 1.5rem; margin: 0 auto 2.5rem; max-width: 400px; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--gold)); }
.divider::after { background: linear-gradient(to left, transparent, var(--gold)); }
.divider span { color: var(--gold); }

/* MÍSTO (dark map section) */
.misto-bg { background: var(--pine); }
.misto-bg .section-title { color: var(--gold-pale); }
.misto-note { text-align: center; font-size: clamp(1.15rem, 2vw, 1.35rem); line-height: 1.9; color: var(--moss); margin-bottom: 2rem; }
.misto-note strong { color: var(--gold-pale); font-weight: 600; }
.misto-note + .misto-note { margin-top: 1.6rem; }
.mapa-embed { display: block; width: 100%; height: 420px; border: 3px solid var(--gold); border-radius: 2px; box-shadow: 0 6px 24px rgba(0,0,0,0.4); background: var(--moss); }
.mapa-link { text-align: center; margin-top: 1.2rem; font-family: "Raleway", sans-serif; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; }
.mapa-link a { color: var(--gold-light); text-decoration: none; border-bottom: 1px solid rgba(224,185,106,0.5); padding-bottom: 2px; }
.mapa-link a:hover { color: var(--gold-pale); border-color: var(--gold-pale); }
@media (max-width: 650px) { .mapa-embed { height: 320px; } }

/* HARMONOGRAM */
.program-bg { background: var(--warm); }
.program-item { display: grid; grid-template-columns: 150px 1fr; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid rgba(90,110,90,0.25); max-width: 640px; margin: 0 auto; }
@media (max-width: 500px) { .program-item { grid-template-columns: 1fr; gap: 0.2rem; } }
.program-time { font-family: "Lora", serif; color: var(--dark); font-size: 1.2rem; padding-top: 0.1rem; }
.program-desc { font-size: 1.15rem; line-height: 1.85; color: var(--mid); text-align: center; max-width: 620px; margin: 0 auto 1.5rem; }
.program-desc strong { color: var(--forest); font-weight: 600; }
p.program-desc:first-of-type { font-family: "Lora", serif; font-style: italic; font-size: clamp(1.35rem, 2.8vw, 1.7rem); color: var(--forest); line-height: 1.6; margin-bottom: 2.4rem; }
.program-note { text-align: center; font-style: italic; font-size: 1.15rem; color: var(--forest-light); margin-top: 2.5rem; }

/* PRAKTICKÉ INFO */
.info-bg { background: var(--cream); }
.info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
@media (max-width: 640px) { .info-cards { grid-template-columns: 1fr; } }
.info-card { background: #fff; border-radius: 4px; padding: 2rem 1.8rem; border-left: 3px solid var(--gold); box-shadow: 0 2px 12px rgba(40,60,40,0.10); }
.info-icon { width: 36px; height: 36px; margin-bottom: 1rem; color: var(--gold); }
.info-icon svg { width: 100%; height: 100%; }
.info-card h3 { font-family: "Lora", serif; font-size: 1.3rem; color: var(--forest); margin-bottom: 0.8rem; font-weight: 400; }
.info-card p, .info-card li { font-size: 1.05rem; line-height: 1.85; color: var(--mid); }
.info-card ul { list-style: none; padding: 0; }
.info-card li { margin-bottom: 0.35rem; }
.info-card li::before { content: "— "; color: var(--gold); }

/* RSVP */
.rsvp-bg { background: var(--moss); text-align: center; padding: 5.5rem 2rem; border-top: 1px solid rgba(201,168,76,0.28); border-bottom: 1px solid rgba(201,168,76,0.28); }
.rsvp-intro { font-style: italic; font-size: clamp(1.25rem, 2.5vw, 1.55rem); color: var(--mid); margin: 0 auto 2.5rem; max-width: 620px; line-height: 1.7; }
.rsvp-button { display: inline-block; font-family: "Raleway", sans-serif; font-size: 0.88rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); background: var(--forest); border: 3px solid var(--gold); border-radius: 999px; padding: 1rem 2.7rem; text-decoration: none; transition: all 0.25s ease; box-shadow: 0 10px 24px rgba(20,35,22,0.18); }
.rsvp-button:hover { background: var(--gold); color: var(--pine); transform: translateY(-1px); }
.rsvp-note { margin-top: 1.4rem; font-family: "Raleway", sans-serif; font-size: 0.85rem; color: var(--forest-light); letter-spacing: 0.08em; }
@media (max-width: 520px) { .rsvp-button { width: 100%; max-width: 320px; padding-left: 1rem; padding-right: 1rem; } }

/* FOOTER */
footer { background: var(--pine); color: var(--moss); text-align: center; padding: 3rem 2rem; font-family: "Raleway", sans-serif; font-size: 0.9rem; font-weight: 300; letter-spacing: 0.2em; }
.footer-names { font-family: "Lora", serif; font-size: 1.8rem; color: var(--gold-pale); margin-bottom: 0.8rem; font-style: italic; }

/* MOBILE TYPE TUNING */
@media (max-width: 768px) {
  body { -webkit-text-size-adjust: 100%; }
  p { line-height: 1.6; }
}
