/* ── Family Fun Homepage Custom CSS ── */



@keyframes ff-slide-in {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.hero-animate        { animation: ff-slide-in 0.6s ease both; }
.hero-animate-delay  { animation: ff-slide-in 0.6s 0.15s ease both; }
.hero-animate-delay2 { animation: ff-slide-in 0.6s 0.3s ease both; }

/* ── Hero ── */
.ff-hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 130px 24px 110px;
  background-position: center 30%;
  background-size: cover;
  background-repeat: no-repeat;
}
.ff-hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; }
.ff-hero-content { width: 55%; display: flex; flex-direction: column; align-items: flex-start; }
.ff-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #5fcac7; color: #fff;
  font-size: 15px; font-weight: 700; letter-spacing: 0.3px;
  padding: 8px 20px; border-radius: 50px; margin-bottom: 20px;
}
.ff-hero-title {
  font-size: 72px; line-height: 1.1; font-weight: 800;
  color: #fff; white-space: nowrap; margin: 0 0 20px;
  font-family: Poppins, sans-serif;
}
.ff-hero-title .hero-fun { color: #ffc43a; font-style: normal; }
.ff-hero-text { font-size: 18px; color: rgba(255,255,255,0.88); line-height: 1.6; margin: 0 0 20px; }
.ff-hero-text-link { color: #ffc43a; text-decoration: none !important; border-bottom: none !important; font-weight: 700; transition: opacity 0.15s; }
.ff-hero-text-link:hover { opacity: 0.8; }
.ff-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.ff-hero-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 24px; border-radius: 50px; font-weight: 700; font-size: 15px;
  text-decoration: none !important; border-bottom: none !important;
  transition: transform 0.15s, box-shadow 0.15s;
}
.ff-hero-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.ff-hero-btn-zp { background: #ffc43a; color: #333; }
.ff-hero-btn-pt { background: #5fcac7; color: #fff; }
.ff-hero-bottom { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; margin-top: 16px; }
.ff-hero-info {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 18px 22px;
  backdrop-filter: blur(8px);
  box-sizing: border-box;
}
.ff-hero-info-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.ff-hero-info-block { display: flex; flex-direction: column; }
.ff-hero-info-hours { flex: 1; }
.ff-hero-info-sep { width: 1px; align-self: stretch; background: rgba(255,255,255,0.2); flex-shrink: 0; margin: 0 4px; }
.ff-hero-hours-row { display: flex; gap: 20px; }
.ff-hero-hours-col { display: flex; flex-direction: column; gap: 1px; font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.ff-hero-hours-col strong { color: #fff; font-weight: 700; }
.ff-hero-hours-loc { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #ffc43a; margin-bottom: 3px; }
.ff-hero-hours-loc--pt { color: #5fcac7; }
.ff-hero-map-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-decoration: none !important; border-bottom: none !important;
  line-height: 1.8; transition: color 0.15s;
}
.ff-hero-map-btn:hover { color: #fff; }
@media (max-width: 600px) {
  .ff-hero-info { flex-direction: column; align-items: stretch; gap: 0; padding: 16px 18px; }
  .ff-hero-info-sep { width: auto; height: 1px; background: rgba(255,255,255,0.15); align-self: stretch; margin: 14px 0; }
  .ff-hero-info-hours { width: 100%; flex: none; }
  .ff-hero-info-hours .ff-hero-info-label { width: 100%; text-align: center; }
  .ff-hero-hours-row { width: 100%; justify-content: space-between; }
  .ff-hero-hours-col:first-child { text-align: left; }
  .ff-hero-hours-col:first-child span { display: block; }
  .ff-hero-hours-col:last-child { text-align: right; }
  .ff-hero-hours-col:last-child span { display: block; }
  .ff-hero-info-block:last-child { width: 100%; flex-direction: row; flex-wrap: wrap; justify-content: space-between; gap: 8px 0; }
  .ff-hero-info-block:last-child .ff-hero-info-label { width: 100%; text-align: center; margin-bottom: 4px; }
  .ff-hero-map-btn {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-bottom: 1px solid rgba(255,255,255,0.2) !important;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    line-height: 1;
  }
  .ff-hero-map-btn:hover { background: rgba(255,255,255,0.2); color: #fff; }
}
@media (max-width: 991px) {
  .ff-hero-content { width: 75%; }
  .ff-hero-title { font-size: 52px; }
}
@media (max-width: 767px) {
  .ff-hero { padding: 130px 20px 60px; }
  .ff-hero-content { width: 100%; align-items: center; text-align: center; }
  .ff-hero-title { font-size: 38px; white-space: normal; }
  .ff-hero-btns { justify-content: center; }
  .ff-hero-bottom { gap: 28px; }
  h2 { font-size: 30px !important; line-height: 1.3 !important; }
}
@media (max-width: 479px) { .ff-hero-title { font-size: 30px; } }

/* ── Quick info strip ── */
.ff-quickinfo { background: #fff; padding: 0 24px; }
.ff-quickinfo-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 22px 28px; background: #fffbf2; border: 1px solid #f0e8d8; border-radius: 22px; box-shadow: 0 6px 24px rgba(0,0,0,0.04); transform: translateY(-56px) !important; }
.ff-quickinfo-item { display: flex; align-items: center; gap: 14px; padding: 6px 4px; }
.ff-quickinfo-item + .ff-quickinfo-item { border-left: 1px solid #ece4d8; padding-left: 18px; }
.ff-quickinfo a.ff-quickinfo-item--cta { color: inherit !important; text-decoration: none !important; border-bottom: none !important; cursor: pointer; transition: transform 0.15s; }
.ff-quickinfo a.ff-quickinfo-item--cta:hover { transform: translateY(-1px); text-decoration: none !important; border-bottom: none !important; color: inherit !important; }
.ff-quickinfo a.ff-quickinfo-item--cta:hover .ff-quickinfo-arrow { transform: translateX(3px); }
.ff-quickinfo-arrow { display: inline-block; color: #ffc43a; font-weight: 800; margin-left: 4px; transition: transform 0.2s ease; }
.ff-quickinfo-item svg { flex-shrink: 0; }
.ff-quickinfo-label { font-size: 12px; color: rgba(0,0,0,0.5); font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase; }
.ff-quickinfo-value { font-size: 16px; color: #1a1a1a; font-weight: 700; margin-top: 2px; }
@media (max-width: 991px) { .ff-quickinfo-inner { grid-template-columns: repeat(2, 1fr); padding: 20px 22px; } .ff-quickinfo-item:nth-child(3) { border-left: none; padding-left: 4px; } }
@media (max-width: 600px) { .ff-quickinfo-inner { grid-template-columns: 1fr; gap: 14px; padding: 18px 20px; } .ff-quickinfo-item + .ff-quickinfo-item { border-left: none; border-top: 1px solid #ece4d8; padding-left: 4px; padding-top: 14px; } }

/* ── O nas ── */
.ff-about { padding: 64px 40px 96px; background: #fff; overflow: visible; }
.ff-about-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.ff-about-inner > * { min-width: 0; }
.ff-about-img { border-radius: 20px; width: 100%; height: 480px; object-fit: cover; }
.ff-about-label { font-family: Courgette, sans-serif; color: #00ACAA; font-size: 26px; font-weight: 400; margin: 0 0 8px; }
.ff-about-title { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; color: #1a1a1a; margin: 0 0 20px; text-transform: none; line-height: 1.2; }
.ff-about-title .fun-yellow { color: #ffc43a; }
.ff-about-text { font-size: 17px; color: #555; line-height: 1.7; margin: 0 0 28px; }
.ff-about-btns { display: flex; gap: 12px; flex-wrap: wrap; padding-bottom: 4px; }
.ff-about-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; border-radius: 50px; font-weight: 700; font-size: 15px; text-decoration: none !important; border-bottom: none !important; transition: transform 0.15s, box-shadow 0.15s; }
.ff-about-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); text-decoration: none !important; border-bottom: none !important; }
.ff-about-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.ff-about-btn-zp { background: #ffc43a; color: #333; border: 2px solid #ffc43a; }
.ff-about-btn-pt { background: #00ACAA; color: #fff; border: 2px solid #00ACAA; }
@media (max-width: 991px) { .ff-about-inner { grid-template-columns: 1fr; gap: 32px; } .ff-about-img { height: 320px; } }
@media (max-width: 767px) { .ff-about { padding: 64px 20px; } }
@media (max-width: 480px) { .ff-about-btns { flex-direction: column; } .ff-about-btn { justify-content: center; } }

/* ── Novice ── */
/* ── News section ── */
.ff-news-section { position: relative; padding: 96px 24px 104px; background: #fff; overflow: hidden; }
.ff-news-section .ff-news-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55; pointer-events: none; z-index: 0; }
.ff-news-section .ff-news-blob--a { width: 320px; height: 320px; background: rgba(255,196,58,0.18); top: -80px; left: -100px; }
.ff-news-section .ff-news-blob--b { width: 360px; height: 360px; background: rgba(0,172,170,0.14); bottom: -120px; right: -120px; }
.ff-news-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }

.ff-news-header { text-align: center; margin-bottom: 56px; }
.ff-news-header .ff-news-eyebrow { font-family: Courgette, sans-serif; color: #00ACAA; font-size: 26px; font-weight: 400; margin: 0 0 8px; }
.ff-news-header h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; color: #1a1a1a; margin: 0 0 12px; text-transform: none; line-height: 1.2; }
.ff-news-subtitle { font-size: 16px; color: rgba(0,0,0,0.55); margin: 0; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.6; }

.ff-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ff-news-empty { grid-column: 1 / -1; text-align: center; color: #999; padding: 40px 0; }

.ff-news-section a.ff-news-card {
  background: #fff;
  border: 1.5px solid #ece4d8;
  border-top: 4px solid #ffc43a;
  border-radius: 20px;
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
  border-bottom: 1.5px solid #ece4d8 !important;
  color: inherit;
  min-height: 320px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.ff-news-section a.ff-news-card::after {
  content: '→';
  position: absolute;
  top: 26px;
  right: 26px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fffbeb;
  border: 1.5px solid #ffe9a8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffc43a;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
  z-index: 2;
  pointer-events: none;
}
.ff-news-section a.ff-news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(20,20,20,0.08);
  border-color: #ffc43a !important;
  border-bottom-color: #ffc43a !important;
  text-decoration: none !important;
}
.ff-news-section a.ff-news-card:hover::after {
  background: #ffc43a;
  border-color: #ffc43a;
  color: #1a1a1a;
  transform: translate(2px, -2px);
}

.ff-news-card-date-chip {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, #ffc43a 0%, #f5b724 100%);
  color: #1a1a1a;
  padding: 9px 14px;
  border-radius: 13px;
  min-width: 58px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(255,196,58,0.32);
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ff-news-section a.ff-news-card:hover .ff-news-card-date-chip {
  transform: translateY(-2px) rotate(-3deg);
  box-shadow: 0 12px 24px rgba(255,196,58,0.42);
}
.ff-news-card-date-day {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}
.ff-news-card-date-mon {
  font-size: 10px;
  font-weight: 700;
  color: #1a1a1a;
  opacity: 0.65;
  letter-spacing: 0.10em;
  margin-top: 4px;
  text-transform: uppercase;
}

.ff-news-card-title {
  font-family: Poppins, sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-transform: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ff-news-card-excerpt {
  font-size: 14.5px;
  color: #5a4a3a;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ff-news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #00ACAA;
  margin-top: auto;
  transition: gap 0.2s ease;
}
.ff-news-section a.ff-news-card:hover .ff-news-card-link { gap: 10px; }
.ff-news-card-link svg { transition: transform 0.2s ease; }
.ff-news-section a.ff-news-card:hover .ff-news-card-link svg { transform: translateX(2px); }

.ff-news-footer { margin-top: 48px; display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }
.ff-news-section a.ff-news-all-btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 50px; background: #ffc43a; color: #1a1a1a; font-weight: 700; font-size: 15px; text-decoration: none !important; border: none !important; border-bottom: none !important; white-space: nowrap; transition: transform 0.15s, box-shadow 0.15s; box-shadow: 0 4px 14px rgba(255,196,58,0.35); }
.ff-news-section a.ff-news-all-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(255,196,58,0.5); text-decoration: none !important; color: #1a1a1a; }
.ff-news-section a.ff-news-all-btn svg { transition: transform 0.2s ease; }
.ff-news-section a.ff-news-all-btn:hover svg { transform: translateX(3px); }

.ff-news-footer-divider { font-size: 14px; color: rgba(0,0,0,0.4); font-style: italic; padding: 0 4px; }

.ff-news-section a.ff-news-fb-btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 50px; background: #1877F2; color: #fff !important; font-weight: 700; font-size: 15px; text-decoration: none !important; border: none !important; border-bottom: none !important; white-space: nowrap; transition: transform 0.15s, box-shadow 0.15s, background 0.15s; box-shadow: 0 4px 14px rgba(24,119,242,0.3); }
.ff-news-section a.ff-news-fb-btn:hover { transform: translateY(-2px); background: #166fe5; box-shadow: 0 8px 22px rgba(24,119,242,0.45); text-decoration: none !important; color: #fff !important; }

@media (max-width: 991px) { .ff-news-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (max-width: 600px) { .ff-news-grid { grid-template-columns: 1fr; gap: 20px; } }
@media (max-width: 767px) {
  .ff-news-section { padding: 64px 20px 72px; }
  .ff-news-header { text-align: center; margin-bottom: 36px; }
  .ff-news-header .ff-news-eyebrow-line { width: 24px; }
  .ff-news-footer { flex-direction: column; gap: 10px; }
  .ff-news-footer-divider { padding: 2px 0; }
  .ff-news-section a.ff-news-all-btn,
  .ff-news-section a.ff-news-fb-btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ── V našem parku ── */
.ff-park-section { padding: 80px 40px; background: #fffbf2; }
.ff-park-section-header { text-align: center; margin-bottom: 48px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.ff-park-section-header .ff-label { font-family: Courgette, sans-serif; color: #00ACAA; font-size: 26px; font-weight: 400; margin: 0 0 6px; }
.ff-park-section-header h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; color: #1a1a1a; margin: 0; text-transform: none; }
.ff-park-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.ff-park-card { background: #fff; border: 1.5px solid #ece4d8; border-top: 4px solid #ffc43a; border-radius: 20px; padding: 36px 32px; display: flex; flex-direction: column; }
.ff-park-list { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.ff-park-list li { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 700; color: #333; }
.ff-park-list li::before { content: '✓'; min-width: 24px; height: 24px; background: #fff3cc; color: #ffc43a; border-radius: 50%; font-size: 12px; font-weight: 900; display: grid; place-items: center; flex-shrink: 0; }
.ff-park-phone { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 50px; background: #ffc43a; color: #333; font-weight: 700; font-size: 16px; text-decoration: none !important; border-bottom: none !important; transition: transform 0.15s, box-shadow 0.15s; align-self: flex-start; }
.ff-park-phone:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); color: #333; text-decoration: none !important; }
.ff-park-photos { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; }
.ff-park-photo { border-radius: 14px; width: 100%; height: 100%; min-height: 180px; object-fit: cover; display: block; transition: transform 0.2s; }
.ff-park-photo:hover { transform: scale(1.02); }
@media (max-width: 991px) { .ff-park-inner { grid-template-columns: 1fr; align-items: start; } .ff-park-photos { grid-template-rows: 200px 200px; } }
@media (max-width: 767px) { .ff-park-section { padding: 48px 20px; } .ff-park-card { padding: 28px 24px; border-radius: 18px; } .ff-park-section-header { text-align: left; } }


/* ── Mnenja strank ── */
.ff-reviews { padding: 96px 40px; background: #fff; }
.ff-reviews-inner { max-width: 1200px; margin: 0 auto; }
.ff-reviews-header { text-align: center; margin-bottom: 16px; }
.ff-reviews-header .ff-label { font-family: Courgette, sans-serif; color: #00ACAA; font-size: 26px; font-weight: 400; margin: 0 0 6px; text-transform: none; }
.ff-reviews-header h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; color: #1a1a1a; margin: 0; text-transform: none; }
.ff-reviews-summary { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 20px 0 48px; }
.ff-reviews-summary-score { font-size: 40px; font-weight: 800; color: #1a1a1a; line-height: 1; }
.ff-reviews-summary-right { display: flex; flex-direction: column; gap: 2px; }
.ff-reviews-summary-stars { color: #ffc43a; font-size: 20px; letter-spacing: 3px; line-height: 1; }
.ff-reviews-summary-meta { font-size: 13px; color: #888; display: flex; align-items: center; gap: 6px; }
.ff-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ff-review-card { background: #fff; border: 1.5px solid #ece4d8; border-radius: 20px; padding: 28px; display: flex; flex-direction: column; }
.ff-review-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.ff-review-stars { color: #ffc43a; font-size: 16px; letter-spacing: 2px; line-height: 1; }
.ff-review-badge { display: flex; align-items: center; gap: 4px; font-size: 11px; color: #999; }
.ff-review-text { font-size: 15px; color: #444; line-height: 1.7; flex: 1; margin: 0 0 20px; }
.ff-review-author { display: flex; align-items: center; gap: 10px; padding-top: 16px; border-top: 1px solid #f0f0f0; }
.ff-review-avatar { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; background: #f0f9f8; padding: 6px; }
.ff-review-name { font-size: 14px; font-weight: 700; color: #1a1a1a; }
.ff-reviews-cta { text-align: center; margin-top: 36px; }
.ff-reviews .ff-reviews-cta-link { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; border-radius: 50px; background: #fff; color: #1a1a1a !important; border: 1.5px solid #ece4d8 !important; border-bottom: 1.5px solid #ece4d8 !important; font-weight: 700; font-size: 15px; text-decoration: none !important; transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s; }
.ff-reviews .ff-reviews-cta-link:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,0.08); border-color: #ffc43a !important; border-bottom-color: #ffc43a !important; text-decoration: none !important; color: #1a1a1a !important; }
.ff-reviews .ff-reviews-cta-link svg { transition: transform 0.2s ease; }
.ff-reviews .ff-reviews-cta-link:hover svg { transform: translateX(3px); }
@media (max-width: 991px) { .ff-reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ff-reviews-grid { grid-template-columns: 1fr; } .ff-reviews { padding: 56px 20px; } .ff-reviews-header { text-align: left; } .ff-reviews-summary { justify-content: flex-start; } }

/* ── Social CTA ── */
.ff-social-section { background: #fffbf2; padding: 60px 24px; text-align: center; border-top: 1px solid #f0e8d8; }
.ff-social-label { font-family: Courgette, sans-serif; color: #00ACAA !important; font-size: 26px !important; font-weight: 400; margin: 0 0 8px !important; }
.ff-social-section h2 { margin-bottom: 12px; text-transform: none; }
.ff-social-section p { color: rgba(0,0,0,0.5); font-size: 17px; margin-bottom: 36px; }
.ff-social-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.ff-social-btn-fb { display: inline-flex; align-items: center; gap: 10px; background: #1877f2; color: #fff; font-weight: 700; font-size: 16px; padding: 14px 28px; border-radius: 50px; text-decoration: none !important; border-bottom: none !important; transition: transform 0.15s, box-shadow 0.15s; }
.ff-social-btn-fb:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(24,119,242,0.35); color: #fff; }
.ff-social-btn-ig { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; font-weight: 700; font-size: 16px; padding: 14px 28px; border-radius: 50px; text-decoration: none !important; border-bottom: none !important; transition: transform 0.15s, box-shadow 0.15s; }
.ff-social-btn-ig:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(220,39,67,0.35); color: #fff; }

/* ── Ponudba section ── */
.ff-ponudba-section { padding: 80px 24px; background: #fffbf2; }
.ff-ponudba-inner { max-width: 1200px; margin: 0 auto; }
.ff-ponudba-header { text-align: center; margin-bottom: 48px; }
.ff-ponudba-header .ff-label { font-family: Courgette, sans-serif; color: #00ACAA; font-size: 26px; font-weight: 400; margin: 0 0 4px; }
.ff-ponudba-title { text-transform: none; margin: 0; color: #1a1a1a; font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; }
.ff-ponudba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ff-ponudba-card {
  background: linear-gradient(180deg, #fff8e6 0%, #fff 60%);
  border: 1.5px solid #ece4d8;
  border-top: 4px solid #ffc43a;
  border-radius: 20px;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.ff-ponudba-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20,20,20,0.06);
  border-color: #ffc43a;
}
.ff-ponudba-card:hover .ff-pc-icon {
  transform: scale(1.04) rotate(-2deg);
}
.ff-pc-icon {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #ffc43a;
  margin: 0 auto 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.ff-pc-icon img { width: 80px; height: 80px; object-fit: contain; }
.ff-pc-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0;
  text-align: center;
  gap: 12px;
}
.ff-pc-title {
  font-family: Poppins, sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
  text-transform: none;
}
.ff-pc-text {
  font-size: 15.5px;
  color: #5a4a3a;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.ff-pc-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.ff-pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none !important;
  border-bottom: none !important;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.ff-pc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  text-decoration: none !important;
  border-bottom: none !important;
}
.ff-pc-btn-primary { background: #ffc43a; color: #1a1a1a; }
.ff-pc-btn-zp      { background: #ffc43a; color: #1a1a1a; }
.ff-pc-btn-pt      { background: #00ACAA; color: #fff; }
.ff-pc-btn-phone   { background: #1a1a1a; color: #fff; }
@media (max-width: 991px) { .ff-ponudba-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
@media (max-width: 767px) {
  .ff-ponudba-section { padding: 48px 20px; }
  .ff-ponudba-header { text-align: left; margin-bottom: 28px; }
  .ff-pc-body { text-align: left; }
  .ff-pc-btn { text-align: center; }
}

/* ────────────────────────────────────────────── */
/* ──         MOBILE REDESIGN (≤767px)         ── */
/* ────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Globalni guard proti horizontal scrollu */
  html, body { overflow-x: hidden; max-width: 100%; }

  /* Typography rhythm — base 16px */
  h2 { font-size: 26px !important; line-height: 1.25 !important; }
  h3 { font-size: 18px; line-height: 1.3; }
  p { font-size: 16px; line-height: 1.6; }

  /* ── Hero ── */
  .ff-hero {
    min-height: auto;
    padding: 110px 20px 56px;
    background-position: center 35%;
  }
  .ff-hero-content { width: 100%; align-items: flex-start; text-align: left; gap: 12px; }
  .ff-hero-badge { font-size: 13px; padding: 7px 16px; margin-bottom: 14px; }
  .ff-hero-title { font-size: clamp(34px, 9vw, 44px) !important; line-height: 1.05; margin: 0 0 12px; white-space: normal; }
  .ff-hero-text { font-size: 16px; margin: 0 0 18px; line-height: 1.55; }
  .ff-hero-bottom { gap: 18px; margin-top: 8px; }
  .ff-hero-btns { flex-direction: column; width: 100%; gap: 10px; justify-content: stretch; }
  .ff-hero-btn { justify-content: center; min-height: 50px; font-size: 16px; padding: 0 22px; width: 100%; box-sizing: border-box; }
  .ff-hero-info { padding: 14px 16px; gap: 0; flex-direction: column; align-items: stretch; }
  .ff-hero-info-block { width: 100%; }
  .ff-hero-info-label { font-size: 11px; }
  .ff-hero-hours-row { gap: 16px; }
  .ff-hero-hours-col { font-size: 13px; }
  .ff-hero-map-btn { min-height: 40px; padding: 8px 14px; font-size: 13px; }

  /* ── Quickinfo strip — 2x2 grid (better than tall 1-col stack) ── */
  .ff-quickinfo { padding: 0 16px; }
  .ff-quickinfo-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0 !important;
    padding: 16px !important;
    border-radius: 16px;
    transform: translateY(-24px);
  }
  .ff-quickinfo-item,
  .ff-quickinfo-item + .ff-quickinfo-item {
    padding: 12px 8px !important;
    border: none !important;
    border-top: none !important;
    gap: 10px;
  }
  .ff-quickinfo-item:nth-child(2),
  .ff-quickinfo-item:nth-child(4) { border-left: 1px solid #ece4d8 !important; }
  .ff-quickinfo-item:nth-child(3),
  .ff-quickinfo-item:nth-child(4) { border-top: 1px solid #ece4d8 !important; }
  .ff-quickinfo-label { font-size: 10px; }
  .ff-quickinfo-value { font-size: 14px; }
  .ff-quickinfo-item svg { width: 18px; height: 18px; }

  /* ── About ── */
  .ff-about { padding: 32px 20px 56px; }
  .ff-about-inner { gap: 24px; }
  .ff-about-img { height: 240px; border-radius: 16px; }
  .ff-about-label { font-size: 22px; }
  .ff-about-title { font-size: 26px !important; margin-bottom: 14px; }
  .ff-about-text { font-size: 16px; line-height: 1.65; margin-bottom: 22px; }
  .ff-about-btns { flex-direction: column; gap: 10px; }
  .ff-about-btn { justify-content: center; min-height: 50px; padding: 0 24px; }

  /* ── News ── */
  .ff-news-section { padding: 56px 20px 64px !important; }
  .ff-news-section .ff-news-blob { display: none; }
  .ff-news-header { text-align: left; margin-bottom: 28px; }
  .ff-news-header h2 { font-size: 26px; }
  .ff-news-grid { gap: 14px; }
  .ff-news-section a.ff-news-card {
    padding: 22px 22px 24px;
    gap: 14px;
    border-radius: 18px;
    min-height: 0;
  }
  .ff-news-section a.ff-news-card::after {
    width: 30px; height: 30px;
    top: 20px; right: 20px;
    font-size: 16px;
  }
  .ff-news-card-date-chip {
    padding: 8px 12px;
    min-width: 52px;
    border-radius: 11px;
  }
  .ff-news-card-date-day { font-size: 19px; }
  .ff-news-card-date-mon { font-size: 9px; margin-top: 3px; }
  .ff-news-card-title { font-size: 17px; line-height: 1.3; -webkit-line-clamp: 3; }
  .ff-news-card-excerpt { font-size: 14px; line-height: 1.55; -webkit-line-clamp: 3; }
  .ff-news-footer { margin-top: 28px; flex-direction: column; gap: 10px; align-items: stretch; }
  .ff-news-section a.ff-news-all-btn,
  .ff-news-section a.ff-news-fb-btn {
    width: 100%;
    max-width: 100%;
    min-height: 44px;
    padding: 11px 20px !important;
    font-size: 14px;
    box-sizing: border-box;
    justify-content: center;
  }
  .ff-news-footer-divider { display: none; }

  /* ── Park ── */
  .ff-park-section { padding: 48px 20px !important; }
  .ff-park-section-header { text-align: left; margin-bottom: 28px; }
  .ff-park-card { padding: 24px 20px !important; border-radius: 18px; }
  .ff-park-list { gap: 10px; margin-bottom: 24px; }
  .ff-park-list li { font-size: 15px; gap: 10px; }
  .ff-park-list li::before { min-width: 22px; height: 22px; }
  .ff-park-phone {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    min-height: 44px;
    padding: 11px 20px !important;
    font-size: 15px;
    box-sizing: border-box;
    align-self: stretch;
  }
  .ff-park-photos { grid-template-columns: 1fr 1fr; grid-template-rows: 140px 140px !important; gap: 8px; }
  .ff-park-photo { min-height: 0 !important; }

  /* ── Reviews — horizontal scroll snap (carousel feel with peek) ── */
  .ff-reviews { padding: 56px 0 !important; overflow-x: hidden; }
  .ff-reviews-header { text-align: left !important; margin-bottom: 12px; padding: 0 20px; }
  .ff-reviews-summary { justify-content: flex-start !important; margin-bottom: 28px; padding: 0 20px; }
  .ff-reviews-summary-score { font-size: 36px; }
  .ff-reviews-inner { max-width: 100%; padding: 0; }
  .ff-reviews-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px;
    padding: 4px 20px 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .ff-reviews-grid::-webkit-scrollbar { display: none; }
  .ff-review-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
    padding: 20px;
  }
  .ff-reviews-cta { margin-top: 24px; padding: 0 20px; }
  .ff-reviews .ff-reviews-cta-link {
    width: 100%;
    max-width: 100%;
    min-height: 44px;
    padding: 11px 20px !important;
    font-size: 14px;
    box-sizing: border-box;
    justify-content: center;
  }

  /* ── Social ── */
  .ff-social-section { padding: 48px 20px 56px; }
  .ff-social-btns { flex-direction: column; gap: 10px; align-items: stretch; }
  .ff-social-btn-fb,
  .ff-social-btn-ig {
    width: 100%;
    max-width: 100%;
    min-height: 44px;
    padding: 11px 20px;
    font-size: 15px;
    box-sizing: border-box;
    justify-content: center;
  }

  /* ── Ponudba ── */
  .ff-ponudba-section, .ff-ponudba-inner, .ff-ponudba-grid { max-width: 100%; box-sizing: border-box; }
  .ff-ponudba-grid { grid-template-columns: 1fr !important; max-width: 100% !important; gap: 16px; }
  .ff-ponudba-card {
    padding: 28px 22px 22px !important;
    gap: 14px;
    border-radius: 18px;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
  }
  .ff-pc-icon {
    width: 110px !important;
    height: 110px !important;
    padding: 0 !important;
    margin: 0 auto 2px;
  }
  .ff-pc-icon img { width: 64px !important; height: 64px !important; }
  .ff-pc-body { padding: 0 !important; gap: 10px; box-sizing: border-box; min-width: 0; }
  .ff-pc-title { font-size: 19px; }
  .ff-pc-text { font-size: 15px; line-height: 1.55; }
  .ff-pc-btns { flex-direction: column; gap: 8px; width: 100%; margin-top: 4px; }
  .ff-pc-btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box !important;
    padding: 12px 18px !important;
    font-size: 15px;
    min-height: 44px;
  }
}

/* Smaller phones — extra tightening */
@media (max-width: 380px) {
  .ff-hero { padding: 100px 16px 48px; }
  .ff-hero-title { font-size: 30px !important; }
  .ff-quickinfo-inner { padding: 12px !important; }
  .ff-quickinfo-value { font-size: 13px; }
  .ff-quickinfo-label { font-size: 9px; }
}
