/* ===========================
   IMPORTS & VARIABLES
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
  --cyan: #00BBEE;
  --cyan-light: #33CCFF;
  --cyan-dark: #0099CC;
  --navy: #1B2869;
  --navy-light: #243380;
  --red: #E31E24;
  --red-dark: #C01A1F;
  --white: #FFFFFF;
  --gray-light: #F4F7FB;
  --gray: #E2E8F0;
  --gray-text: #64748B;
  --text: #1B2869;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 8px;
  --shadow: 0 2px 16px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
  --transition: 0.22s ease;

  --nav-height: 68px;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 800; line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { font-size: 1rem; line-height: 1.7; color: var(--navy); }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.section { padding: 80px 0; }
.page-offset { margin-top: var(--nav-height); }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 6px;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; border: 2px solid transparent; transition: var(--transition);
  white-space: nowrap;
}
.btn-red  { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); }
.btn-cyan { background: var(--cyan); color: var(--navy); border-color: var(--cyan); }
.btn-cyan:hover { background: var(--cyan-dark); border-color: var(--cyan-dark); }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  background: var(--white);
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
  display: flex; align-items: center;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 16px; }

.nav-logo { display: flex; flex-direction: column; line-height: 1.25; flex-shrink: 0; }
.nav-logo-name { font-family: var(--font-heading); font-weight: 800; font-size: 1rem; color: var(--navy); }
.nav-logo-subtitle { font-size: 0.68rem; color: var(--gray-text); font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-family: var(--font-heading); font-weight: 600; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--navy);
  padding: 7px 11px; border-radius: 5px; transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--cyan-dark); }

.nav-social { display: flex; align-items: center; gap: 10px; }
.nav-social a {
  color: var(--gray-text); font-size: 0.95rem; transition: var(--transition);
  display: flex; align-items: center;
}
.nav-social a:hover { color: var(--navy); }

.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-actions .btn { padding: 8px 16px; font-size: 0.78rem; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: var(--white); padding: 20px 20px 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10); z-index: 999;
  flex-direction: column; gap: 4px;
  overflow: visible;
}
.nav-mobile.open { display: flex; }
.nav-mobile a:not(.btn) {
  font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--navy);
  padding: 12px 0; border-bottom: 1px solid var(--gray);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav-mobile .btn {
  text-align: center; justify-content: center; margin-top: 8px;
  white-space: normal; overflow: visible;
  font-size: 0.78rem; padding: 12px 16px;
  margin-left: 3px; margin-right: 3px;
  box-sizing: border-box;
}

/* ===========================
   HERO — ÚVOD (home)
=========================== */
.hero-home {
  background: var(--cyan);
  padding: 48px 0 0;
  overflow: hidden;
}
.hero-home .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-end;
}
.hero-home-text { padding-bottom: 40px; }
.hero-home-text h1 { color: var(--navy); margin-bottom: 20px; font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
.hero-home-name {
  font-family: var(--font-heading); font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy); line-height: 1; margin-bottom: 6px;
}
.hero-home-subtitle { font-size: 0.95rem; color: var(--navy); opacity: 0.85; margin-bottom: 28px; }
.hero-home-image {
  display: flex; justify-content: center; align-items: flex-end;
  position: relative;
}
.hero-home-image img {
  width: 100%; max-width: 380px;
  object-fit: contain; object-position: bottom;
}

/* ===========================
   HERO — O MNE
=========================== */
.hero-omne {
  background: var(--cyan);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.hero-omne .container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: flex-end;
  min-height: 280px;
}
.hero-omne-photo { position: relative; align-self: flex-end; }
.hero-omne-photo img {
  width: 260px;
  height: auto;
  object-fit: contain;
  display: block;
}
.hero-omne-text {
  padding: 40px 0 36px;
  align-self: center;
}
.hero-omne-text h1 { color: var(--navy); margin-bottom: 8px; }
.hero-omne-text .hero-subtitle { font-size: 1rem; color: var(--navy); opacity: 0.8; font-weight: 500; }

/* Social bubble — len na mobile */
.hero-omne-photo { position: relative; }

.hero-omne-social {
  display: none;
  position: absolute;
  bottom: 24px;
  right: -8px;
  background: var(--navy);
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 130px;
}
.hero-omne-social-label {
  font-family: var(--font-heading); font-weight: 700; font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #ffffff; display: block; margin-bottom: 8px;
}
.hero-omne-social-icons {
  display: flex; gap: 8px;
}
.hero-omne-social-icons a {
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.12); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; transition: var(--transition);
}
.hero-omne-social-icons a:hover { background: var(--cyan); color: var(--navy); }

/* ===========================
   HERO — SIMPLE (Program, etc.)
=========================== */
.hero-simple {
  background: var(--cyan);
  padding: 56px 0 48px;
}
.hero-simple h1 { color: var(--navy); }

/* ===========================
   HERO — FORM OVERLAP (Kontakt, Darovat)
   Form card is INSIDE the cyan hero section
=========================== */
.hero-form {
  background: var(--cyan);
  padding: 56px 0 64px;
}
.hero-form .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
.hero-form-text h1 { color: var(--navy); margin-bottom: 16px; }
.hero-form-text p { color: var(--navy); font-size: 0.97rem; margin-bottom: 14px; line-height: 1.7; }
.hero-form-text p strong { font-weight: 700; }
.hero-form-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 36px;
}
.hero-form-card h3 { color: var(--white); margin-bottom: 24px; font-size: 1.2rem; }

/* ===========================
   FORM FIELDS (dark bg)
=========================== */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.65); margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 10px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px; color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem; transition: var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--cyan); background: rgba(255,255,255,0.13);
}
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { height: 110px; resize: vertical; }

.form-gdpr {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 16px;
}
.form-gdpr input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px;
  accent-color: var(--cyan);
}
.form-gdpr label {
  font-size: 0.8rem; color: rgba(255,255,255,0.55); font-weight: 400;
  line-height: 1.5; margin-bottom: 0;
}

.btn-submit {
  width: 100%; justify-content: center;
  background: var(--navy-light); color: var(--white);
  border: 2px solid var(--cyan); font-size: 0.85rem;
  padding: 12px;
}
.btn-submit:hover { background: var(--cyan); color: var(--navy); }

/* Light form variant (reminder) */
.form-light input {
  background: var(--white); border: 1.5px solid var(--gray);
  color: var(--navy); border-radius: 6px; padding: 11px 14px;
  font-family: var(--font-body); font-size: 0.95rem; width: 100%;
}
.form-light input:focus { outline: none; border-color: var(--cyan); }
.form-light input::placeholder { color: var(--gray-text); }

/* ===========================
   INTRO SECTION
=========================== */
.intro-section { padding: 56px 0 48px; }
.intro-text { max-width: 800px; font-size: 1.1rem; font-weight: 500; line-height: 1.8; color: var(--navy); }
.intro-text strong { font-weight: 800; }

/* ===========================
   PROGRAM POINTS (úvod list)
=========================== */
.program-points { padding: 0 0 64px; }
.program-list { margin-top: 8px; display: flex; flex-direction: column; gap: 32px; }
.program-item { display: flex; gap: 20px; align-items: flex-start; }
.program-num {
  flex-shrink: 0; width: 32px; height: 32px;
  background: var(--cyan); color: var(--navy);
  font-family: var(--font-heading); font-weight: 900; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
  margin-top: 3px;
}
.program-item-content h3 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.program-item-content p { font-size: 0.93rem; color: var(--gray-text); }

/* ===========================
   "PREČO ZMENA" SECTION
=========================== */
.why-section { background: var(--gray-light); padding: 72px 0; }
.why-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-image img { width: 100%; border-radius: 10px; box-shadow: var(--shadow-lg); }
.why-text h2 { margin-bottom: 16px; }
.why-text p { margin-bottom: 14px; font-size: 0.97rem; color: var(--gray-text); }
.why-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.why-list li { display: flex; gap: 10px; font-size: 0.93rem; color: var(--gray-text); }
.why-list li::before { content: '→'; color: var(--cyan-dark); font-weight: 700; flex-shrink: 0; }

/* ===========================
   FAQ ACCORDION
=========================== */
.faq-section { padding: 64px 0; }
.faq-section.bg-light { background: var(--gray-light); }
.faq-section h2 { margin-bottom: 32px; }
.accordion { border: 1px solid var(--gray); border-radius: var(--radius); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--gray); }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
  width: 100%; text-align: left; background: var(--white); border: none;
  padding: 18px 24px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: var(--font-heading); font-weight: 700;
  font-size: 0.92rem; color: var(--navy); transition: var(--transition); gap: 16px;
}
.accordion-trigger:hover { background: var(--gray-light); }
.accordion-trigger.active { background: var(--cyan); color: var(--navy); }
.accordion-icon {
  flex-shrink: 0; width: 26px; height: 26px;
  background: var(--gray); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: var(--transition);
}
.accordion-trigger.active .accordion-icon { background: var(--navy); color: var(--white); transform: rotate(45deg); }
.accordion-body { display: none; padding: 4px 24px 20px; font-size: 0.93rem; color: var(--gray-text); line-height: 1.75; }
.accordion-body.open { display: block; }

/* ===========================
   O MNE — EXPERIENCE ITEMS
=========================== */
.experience-section { padding: 64px 0; }
.experience-section > .container > h2 { margin-bottom: 48px; }
.experience-list { display: flex; flex-direction: column; gap: 48px; }
.experience-item {
  display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start;
  padding-bottom: 48px; border-bottom: 1px solid var(--gray);
}
.experience-item:last-child { border-bottom: none; padding-bottom: 0; }
.experience-text h3 { margin-bottom: 12px; font-size: 1.05rem; }
.experience-text p { color: var(--gray-text); font-size: 0.95rem; }
.experience-text strong { color: var(--navy); font-weight: 700; }
.experience-image img {
  width: 100%; border-radius: 10px;
  object-fit: cover; box-shadow: var(--shadow);
  max-height: 320px;
}

/* ===========================
   PROGRAM PAGE — BOD SECTIONS
=========================== */
.bod-section { padding: 72px 0; }
.bod-section:nth-child(even) { background: var(--gray-light); }
.bod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.bod-grid.reverse { direction: rtl; }
.bod-grid.reverse > * { direction: ltr; }
.bod-label { font-family: var(--font-heading); font-weight: 900; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--cyan-dark); margin-bottom: 10px; }
.bod-text h2 { margin-bottom: 16px; }
.bod-text p { color: var(--gray-text); font-size: 0.97rem; }
.bod-image img { width: 100%; border-radius: 10px; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-lg); }

/* ===========================
   VOLUNTEER / POMÔŽTE SECTION
=========================== */
.volunteer-section { background: var(--gray-light); padding: 64px 0; }
.volunteer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.volunteer-grid h2 { margin-bottom: 14px; }
.volunteer-grid p { color: var(--gray-text); font-size: 0.95rem; margin-bottom: 20px; }
.messenger-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px; border-radius: 6px;
  font-weight: 700; font-size: 0.9rem; border: none; cursor: pointer;
  text-decoration: none; transition: var(--transition); margin-bottom: 10px;
}
.messenger-btn.fb { background: #0084FF; color: var(--white); }
.messenger-btn.ig { background: linear-gradient(135deg,#405DE6,#833AB4,#E1306C,#FD1D1D); color: var(--white); }
.messenger-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ===========================
   REMINDER SECTION
=========================== */
.reminder-section { padding: 64px 0; }
.reminder-section h2 { margin-bottom: 8px; }
.reminder-section > .container > p { color: var(--gray-text); margin-bottom: 24px; }
.reminder-form { display: flex; gap: 12px; max-width: 500px; margin-bottom: 12px; }
.reminder-note { font-size: 0.8rem; color: var(--gray-text); max-width: 500px; }
.reminder-gdpr { display: flex; align-items: flex-start; gap: 8px; max-width: 500px; margin: 10px 0; }
.reminder-gdpr input { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; accent-color: var(--navy); }
.reminder-gdpr label { font-size: 0.8rem; color: var(--gray-text); line-height: 1.5; }

/* ===========================
   DONATE
=========================== */
.amount-label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.amount-buttons { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.amount-btn {
  padding: 8px 16px; border: 1.5px solid rgba(255,255,255,0.3);
  background: transparent; color: var(--white); border-radius: 6px;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem;
  cursor: pointer; transition: var(--transition);
}
.amount-btn:hover, .amount-btn.active { background: var(--cyan); border-color: var(--cyan); color: var(--navy); }
.qr-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.05); border-radius: 10px; padding: 20px;
}
.qr-img { width: 140px; height: 140px; background: var(--white); border-radius: 6px; padding: 8px; }
.qr-img img { width: 100%; height: 100%; object-fit: contain; }
.qr-label { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-top: 4px; }
.iban-box { background: rgba(255,255,255,0.07); border-radius: 8px; padding: 16px; margin-top: 16px; text-align: center; }
.iban-box p { color: rgba(255,255,255,0.55); font-size: 0.82rem; margin-bottom: 4px; }
.iban-box strong { color: var(--white); font-size: 0.95rem; display: block; letter-spacing: 0.02em; }

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--navy); color: var(--white); padding: 52px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer-logo-name { font-family: var(--font-heading); font-weight: 900; font-size: 1.05rem; color: var(--white); }
.footer-logo-sub { font-size: 0.7rem; color: rgba(255,255,255,0.45); font-weight: 400; margin-bottom: 10px; }
.footer-email { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: var(--transition); display: inline-block; margin-bottom: 14px; }
.footer-email:hover { color: var(--cyan); }
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 34px; height: 34px; background: rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: var(--transition); color: var(--white);
}
.social-icon:hover { background: var(--cyan); color: var(--navy); }
.footer-col h4 { font-family: var(--font-heading); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 960px) {
  .nav-links, .nav-social, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero home — foto pod textom na mobile */
  .hero-home .container {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-home-text { padding-bottom: 24px; }
  .hero-home-image {
    display: flex;
    justify-content: center;
  }
  .hero-home-image img {
    max-width: 260px;
    max-height: 280px;
  }

  /* Hero o mne — text hore, foto dole */
  .hero-omne .container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    min-height: auto;
  }
  .hero-omne-photo { display: flex; justify-content: center; order: 2; align-self: flex-end; }
  .hero-omne-photo img { width: 220px; height: auto; }
  .hero-omne { padding: 32px 0 0; }
  .hero-omne-text { padding: 0; order: 1; text-align: left; }
  .hero-omne-social { display: block; bottom: 16px; right: 0; }

  /* Hero form */
  .hero-form .container { grid-template-columns: 1fr; }

  .why-section .container,
  .volunteer-grid { grid-template-columns: 1fr; }

  .experience-item { grid-template-columns: 1fr; }
  .bod-grid, .bod-grid.reverse { grid-template-columns: 1fr; direction: ltr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 52px 0; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-form-card { padding: 24px; }
  .reminder-form { flex-direction: column; }
  .amount-buttons { justify-content: flex-start; }
  .experience-image { display: none; }
}
