/* ===== FAMILY FUN STATION — STYLESHEET ===== */
/* Font: Outfit + Fraunces | Theme: Terracotta/Amber */

:root {
  --primary: #E53935;
  --primary-dark: #C62828;
  --primary-light: #FF6E40;
  --amber: #FFCA28;
  --amber-dark: #FFB300;
  --dark: #1C1008;
  --dark-2: #2E1B0E;
  --text: #2C1A0E;
  --text-light: #7D5B3A;
  --bg: #FDF8F3;
  --white: #FFFFFF;
  --border: #EDE0D4;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 8px 32px rgba(216,67,21,0.08);
  --shadow-lg: 0 20px 56px rgba(216,67,21,0.15);
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.label-tag {
  display: inline-block;
  background: rgba(216,67,21,0.1);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* BUTTONS */
.btn-amber { display: inline-flex; align-items: center; padding: 14px 32px; background: var(--amber); color: var(--dark); border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: all var(--transition); box-shadow: 0 4px 16px rgba(255,202,40,0.4); }
.btn-amber:hover { background: var(--amber-dark); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(255,202,40,0.6); }
.btn-amber:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(255,202,40,0.3); }
.btn-outline-w { display: inline-flex; align-items: center; padding: 14px 32px; background: transparent; color: white; border: 2px solid rgba(255,255,255,0.7); border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: all var(--transition); }
.btn-outline-w:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-outline-w:active { transform: translateY(0); }

/* ANNOUNCE BAR — скрываем, интегрируем в header */
.announce-bar { display: none; }

/* HEADER */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 16px 48px; background: rgba(28,16,8,0.97); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,0.08); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-text span { display: block; font-family: 'Fraunces', serif; font-size: 1.15rem; color: white; font-weight: 700; line-height: 1; }
.brand-text small { font-size: 0.68rem; color: var(--amber); letter-spacing: 2px; text-transform: uppercase; }
.nav-menu { display: flex; gap: 32px; }
.nav-menu a { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 600; transition: all var(--transition); padding: 6px 2px; border-bottom: 2px solid transparent; }
.nav-menu a:hover { color: var(--amber); border-bottom-color: var(--amber); }
.nav-menu a.active { color: var(--amber); border-bottom-color: var(--amber); font-weight: 700; }
.nav-book-btn { background: var(--amber); color: var(--dark); padding: 10px 22px; border-radius: 50px; font-weight: 700; font-size: 0.85rem; transition: all var(--transition); }
.nav-book-btn:hover { background: var(--amber-dark); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-burger span { display: block; width: 26px; height: 2px; background: white; border-radius: 2px; }

/* HERO CENTERED */
.hero-centered { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg-img { position: absolute; inset: 0; }
.hero-bg-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-mask { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,16,8,0.65) 0%, rgba(28,16,8,0.55) 50%, rgba(28,16,8,0.92) 100%); }
.hero-center-content { position: relative; z-index: 2; text-align: center; padding: 0 32px; max-width: 860px; }
.hero-eyebrow { display: inline-block; background: rgba(255,179,0,0.15); border: 1px solid rgba(255,179,0,0.4); color: var(--amber); padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 24px; }
.hero-center-content h1 { font-family: 'Fraunces', serif; font-size: clamp(3rem, 8vw, 6.5rem); color: white; line-height: 1.05; margin-bottom: 24px; font-weight: 800; }
.hero-center-content h1 em { color: var(--primary-light); font-style: italic; }
.hero-center-content p { color: rgba(255,255,255,0.8); font-size: 1.15rem; max-width: 560px; margin: 0 auto 36px; }
.hero-actions-centered { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-feature-cards { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; background: rgba(28,16,8,0.9); backdrop-filter: blur(8px); display: flex; justify-content: center; flex-wrap: wrap; padding: 20px 32px; gap: 0; border-top: 1px solid rgba(255,255,255,0.08); }
.hfc { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 10px 32px; border-right: 1px solid rgba(255,255,255,0.1); }
.hfc:last-child { border-right: none; }
.hfc-icon { font-size: 1.6rem; }
.hfc span { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 500; }

/* ABOUT STRIP */
.about-strip { padding: 100px 0; background: white; }
.about-strip-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { font-family: 'Fraunces', serif; font-size: 2.4rem; color: var(--dark); margin-bottom: 20px; line-height: 1.25; }
.about-text p { color: var(--text-light); font-size: 1rem; margin-bottom: 36px; line-height: 1.8; }
.about-numbers { display: flex; gap: 32px; }
.an-item strong { display: block; font-family: 'Fraunces', serif; font-size: 2.2rem; color: var(--primary); }
.an-item span { color: var(--text-light); font-size: 0.85rem; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 460px; object-fit: cover; }

/* ACTIVITIES */
.act-section { padding: 100px 0; background: var(--bg); }
.act-header { text-align: center; margin-bottom: 56px; }
.act-header h2 { font-family: 'Fraunces', serif; font-size: 2.6rem; color: var(--dark); margin-bottom: 12px; }
.act-header p { color: var(--text-light); max-width: 540px; margin: 0 auto; }
.act-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 20px; }
.act-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); }
.act-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.act-card.ac-big { grid-row: span 2; display: flex; flex-direction: column; }
.act-card.ac-big .act-img { flex: 1; }
.act-card.ac-wide { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
.act-card.ac-wide .act-img { height: auto; }
.act-img { overflow: hidden; }
.act-img img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s; }
.act-card.ac-big .act-img img { height: 100%; min-height: 340px; }
.act-card:hover .act-img img { transform: scale(1.05); }
.act-body { padding: 24px; }
.act-badge { display: inline-block; background: rgba(216,67,21,0.08); color: var(--primary); padding: 4px 12px; border-radius: 50px; font-size: 0.78rem; font-weight: 700; margin-bottom: 10px; }
.act-body h3 { font-family: 'Fraunces', serif; font-size: 1.3rem; color: var(--dark); margin-bottom: 8px; }
.act-body p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* MID BANNER */
.mid-banner { background: linear-gradient(135deg, var(--primary), var(--dark-2)); padding: 80px 0; text-align: center; }
.mid-banner-inner { max-width: 800px; margin: 0 auto; padding: 0 32px; }
.mid-banner h2 { font-family: 'Fraunces', serif; font-size: clamp(1.6rem, 3.5vw, 2.8rem); color: white; font-style: italic; }

/* REVIEWS */
.reviews-clean { padding: 100px 0; background: white; }
.reviews-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rv-card { background: var(--bg); border-radius: var(--radius); padding: 32px 28px; border: 2px solid var(--border); transition: all var(--transition); }
.rv-card:hover { border-color: var(--primary-light); transform: translateY(-4px); }
.rv-card.rv-featured { background: var(--primary); color: white; border-color: transparent; }
.rv-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.rv-stars { color: var(--amber); font-size: 1rem; }
.rv-name { font-size: 0.82rem; color: var(--text-light); font-weight: 600; }
.rv-card.rv-featured .rv-name { color: rgba(255,255,255,0.7); }
.rv-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.75; }
.rv-card.rv-featured p { color: rgba(255,255,255,0.88); }

/* CONTACT QUICK */
.contact-quick { padding: 80px 0; background: var(--dark); }
.cq-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 60px; align-items: center; }
.contact-quick .label-tag { background: rgba(255,179,0,0.15); color: var(--amber); }
.contact-quick h2 { font-family: 'Fraunces', serif; font-size: 2rem; color: white; margin-bottom: 12px; }
.contact-quick > .container > .cq-inner > div > p { color: rgba(255,255,255,0.65); }
.cq-details { display: flex; flex-direction: column; gap: 10px; }
.cq-item { color: rgba(255,255,255,0.75); font-size: 0.9rem; display: flex; align-items: flex-start; gap: 8px; }
.cq-item a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.cq-item a:hover { color: var(--amber); }

/* FOOTER */
.site-footer { background: var(--dark-2); padding-top: 64px; }
.footer-wrap { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); align-items: start; }
.fw-brand { display: flex; gap: 14px; align-items: flex-start; }
.fw-brand strong { display: block; font-family: 'Fraunces', serif; font-size: 1.15rem; color: white; margin-bottom: 8px; }
.fw-brand p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.fw-col h5 { color: white; font-size: 0.9rem; margin-bottom: 16px; font-family: 'Fraunces', serif; }
.fw-col ul { display: flex; flex-direction: column; gap: 10px; }
.fw-col ul a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: color var(--transition); }
.fw-col ul a:hover { color: var(--amber); }
.fw-col p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 8px; }
.fw-col a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.fw-col a:hover { color: var(--amber); }
.footer-bottom { text-align: center; padding: 20px; color: rgba(255,255,255,0.28); font-size: 0.8rem; }

/* RESPONSIVE */
@media (max-width: 1200px) {
  .cq-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 1024px) {
  .act-grid { grid-template-columns: 1fr 1fr; }
  .act-card.ac-big { grid-row: span 1; }
  .act-card.ac-wide { grid-column: span 1; display: flex; flex-direction: column; }
  .reviews-row { grid-template-columns: 1fr; }
  .footer-wrap { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .announce-bar { display: none; }
  .site-header { top: 0; }
  .nav-wrap { padding: 14px 20px; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--dark); padding: 24px; gap: 16px; }
  .nav-menu.active { display: flex; }
  .nav-book-btn { display: none; }
  .nav-burger { display: flex; }
  .hero-feature-cards { flex-wrap: wrap; gap: 0; }
  .hfc { padding: 10px 16px; }
  .act-grid { grid-template-columns: 1fr; }
  .footer-wrap { grid-template-columns: 1fr; }
}

/* ===== RIPPLE ANIMATION ===== */
@keyframes ripple {
  to { transform: scale(3); opacity: 0; }
}

/* ===== ЯРКИЕ ЦВЕТА — УСИЛЕНИЕ ===== */
:root {
  --primary: #E53935;
  --primary-dark: #C62828;
  --primary-light: #FF6E40;
  --amber: #FFCA28;
  --amber-dark: #FFB300;
}

/* nav active */
.nav-menu a.active { color: var(--amber) !important; border-bottom-color: var(--amber) !important; }

/* Кнопки ярче */
.nav-book-btn {
  background: var(--amber);
  color: var(--dark);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(255,202,40,0.45);
}
.nav-book-btn:hover {
  background: var(--amber-dark);
  box-shadow: 0 8px 24px rgba(255,202,40,0.6);
  transform: translateY(-2px);
}

/* Контраст текста */
.text-light { color: #5A3A1A !important; }
