/* ===== HAPPY PLAY CORNER — STYLESHEET ===== */
/* Font: Poppins + Playfair Display | Color: Purple/Magenta premium */

:root {
  --primary: #C62BDD;
  --primary-dark: #A01BB8;
  --primary-light: #E879F9;
  --accent: #FF1744;
  --accent-light: #FF6B9D;
  --warm: #FF6D00;
  --dark: #1C1230;
  --dark-2: #2D1B4E;
  --text: #1A0A2E;
  --text-light: #5A4A7A;
  --bg: #F5EEFF;
  --white: #FFFFFF;
  --border: #EDE7F6;
  --radius: 20px;
  --radius-lg: 32px;
  --shadow: 0 8px 32px rgba(156,39,176,0.10);
  --shadow-lg: 0 20px 60px rgba(156,39,176,0.18);
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', 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; }

/* TOPBAR — теперь внутри fixed header */
.topbar { display: none; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn-main { background: var(--primary); color: white; box-shadow: 0 4px 16px rgba(198,43,221,0.35); }
.btn-main:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(198,43,221,0.55); }
.btn-main:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(198,43,221,0.3); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,0.7); color: white; }
.btn-ghost:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.btn-ghost:active { transform: translateY(0); }
.btn-white-outline { background: transparent; border-color: rgba(255,255,255,0.7); color: white; }
.btn-white-outline:hover { background: rgba(255,255,255,0.15); }
.btn-ghost-dark { background: transparent; border-color: var(--dark); color: var(--dark); }
.btn-ghost-dark:hover { background: var(--dark); color: white; }
.btn-link { color: var(--primary); font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }
.btn-link:hover { color: var(--primary-dark); }

/* PILLS/TAGS */
.pill-tag {
  display: inline-block;
  background: rgba(156,39,176,0.1);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(28,18,48,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(156,39,176,0.2);
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo-shape {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.logo-shape.small { width: 36px; height: 36px; font-size: 1.1rem; border-radius: 10px; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: white; font-weight: 700; line-height: 1; }
.logo-sub { font-size: 0.75rem; color: var(--primary-light); letter-spacing: 2px; text-transform: uppercase; }

.nav-links { display: flex; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 600; transition: all var(--transition); padding: 6px 4px; border-bottom: 2px solid transparent; }
.nav-links a:hover { color: var(--primary-light); border-bottom-color: var(--primary-light); }
.nav-links a.active { color: var(--primary-light); border-bottom-color: var(--primary-light); font-weight: 700; }

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all var(--transition);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(156,39,176,0.4); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 26px; height: 2px; background: white; border-radius: 2px; transition: all var(--transition); }

/* HERO SPLIT */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 72px;
}
.hero-left {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 100%);
  display: flex;
  align-items: center;
  padding: 80px 60px;
}
.hero-left-inner { max-width: 520px; }
.hero-tag {
  display: inline-block;
  background: rgba(198,43,221,0.2);
  border: 1px solid rgba(198,43,221,0.4);
  color: var(--primary-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-left-inner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-left-inner h1 span { color: var(--accent-light); }
.hero-left-inner > p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 36px; max-width: 440px; }
.hero-actions { display: flex; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; }

.hero-badges { display: flex; align-items: center; gap: 0; }
.badge { display: flex; flex-direction: column; }
.badge-num { font-size: 1.6rem; font-weight: 700; color: white; font-family: 'Playfair Display', serif; }
.badge-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.badge-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.2); margin: 0 24px; }

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: white;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: floatCard 3s ease-in-out infinite;
}
@keyframes floatCard { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } }
.float-icon { font-size: 2rem; }
.float-text strong { display: block; font-size: 0.9rem; color: var(--dark); }
.float-text span { font-size: 0.8rem; color: var(--primary); font-weight: 600; }

/* INTRO BAND */
.intro-band {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.intro-band-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.intro-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}
.intro-item:last-child { border-right: none; }
.intro-icon { font-size: 2rem; }
.intro-item strong { display: block; font-size: 0.95rem; color: var(--dark); margin-bottom: 2px; }
.intro-item p { color: var(--text-light); font-size: 0.82rem; }

/* BENTO GRID */
.zones-bento { padding: 100px 0; }
.bento-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.bento-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--dark);
}
.bento-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.bento-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.bento-item:hover img { transform: scale(1.06); }
.bento-hero { grid-row: span 2; }
.bento-wide { grid-column: span 2; }
.bento-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px 20px;
  background: linear-gradient(transparent, rgba(28,18,48,0.88));
  color: white;
  transform: translateY(60px);
  transition: transform var(--transition);
}
.bento-item:hover .bento-overlay { transform: translateY(0); }
.bento-overlay h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 4px; }
.bento-overlay p { font-size: 0.82rem; color: rgba(255,255,255,0.75); }

/* BIRTHDAY HORIZONTAL */
.birthday-horizontal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.bday-visual { position: relative; overflow: hidden; }
.bday-visual img { width: 100%; height: 100%; object-fit: cover; }
.bday-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--warm);
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
}
.bday-copy {
  background: linear-gradient(135deg, var(--primary-dark), var(--dark));
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.bday-copy h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
.bday-copy > p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 32px; }
.bday-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}
.bday-feat {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}

/* COMFORT SECTION */
.comfort-section { padding: 100px 0; background: white; }
.comfort-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.comfort-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.comfort-img img { width: 100%; height: 460px; object-fit: cover; }
.comfort-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 20px;
}
.comfort-content > p { color: var(--text-light); margin-bottom: 36px; }
.comfort-list { display: flex; flex-direction: column; gap: 20px; }
.comfort-item { display: flex; gap: 16px; align-items: flex-start; }
.c-icon {
  width: 44px;
  height: 44px;
  background: rgba(156,39,176,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.comfort-item strong { display: block; color: var(--dark); font-size: 0.95rem; margin-bottom: 2px; }
.comfort-item span { color: var(--text-light); font-size: 0.85rem; }

/* STAGE SECTION */
.stage-section { position: relative; height: 520px; overflow: hidden; }
.stage-img { position: relative; width: 100%; height: 100%; }
.stage-img img { width: 100%; height: 100%; object-fit: cover; }
.stage-content-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,18,48,0.9) 0%, rgba(28,18,48,0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  color: white;
  max-width: 600px;
}
.stage-content-overlay h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 16px;
}
.stage-content-overlay p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }

/* REVIEWS */
.reviews-section { padding: 100px 0; background: var(--bg); }
.reviews-header { text-align: center; margin-bottom: 56px; }
.reviews-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--dark);
}
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.review-card.highlighted { background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; }
.review-card.highlighted p { color: rgba(255,255,255,0.9); }
.review-card.highlighted strong { color: rgba(255,255,255,0.7); }
.review-avatar { font-size: 2.5rem; margin-bottom: 8px; }
.review-stars { color: #FFD700; font-size: 1.1rem; margin-bottom: 16px; }
.review-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.75; margin-bottom: 20px; }
.review-card strong { font-size: 0.85rem; color: var(--primary); }

/* FINAL CTA */
.final-cta {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  padding: 100px 0;
  text-align: center;
}
.cta-inner { max-width: 800px; margin: 0 auto; padding: 0 32px; }
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: white;
  margin-bottom: 16px;
}
.cta-inner p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.site-footer { background: var(--dark); padding-top: 64px; }
.footer-inner {
  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;
}
.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-brand strong { display: block; font-size: 1.1rem; color: white; margin-bottom: 8px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-col h4 { color: white; font-size: 0.95rem; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--primary-light); }
.footer-col p { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom { text-align: center; padding: 20px; color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* RESPONSIVE */
@media (max-width: 1200px) {
  .intro-band-inner { grid-template-columns: repeat(2, 1fr); }
  .intro-item:nth-child(2) { border-right: none; }
  .hero-split { padding-top: 100px; }
}
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 50vh; }
  .hero-left { padding: 60px 40px; }
  .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .bento-hero { grid-row: span 1; }
  .birthday-horizontal { grid-template-columns: 1fr; }
  .bday-visual { height: 350px; }
  .bday-copy { padding: 60px 40px; }
  .comfort-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
  .reviews-grid .review-card:nth-child(2) { display: none; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .site-header { top: 0; }
  .navbar { padding: 14px 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--dark); padding: 24px; gap: 18px; }
  .nav-links.active { display: flex; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .hero-left { padding: 40px 24px; }
  .bento-grid { grid-template-columns: 1fr; height: auto; }
  .bento-item { height: 240px; }
  .bento-hero, .bento-wide { grid-row: span 1; grid-column: span 1; }
  .bday-features { grid-template-columns: 1fr; }
  .bday-copy { padding: 40px 24px; }
  .bday-copy h2 { font-size: 2rem; }
  .stage-content-overlay { padding: 40px 24px; max-width: 100%; }
  .stage-content-overlay h2 { font-size: 2rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid .review-card:nth-child(2) { display: block; }
  .intro-band-inner { grid-template-columns: 1fr; }
  .intro-item { border-right: none; border-bottom: 1px solid var(--border); }
}

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

/* ===== ЯРКИЕ ЦВЕТА — УСИЛЕНИЕ ===== */
:root {
  --primary: #C62BDD;
  --primary-dark: #A01BB8;
  --primary-light: #E879F9;
  --accent: #FF1744;
  --warm: #FF6D00;
}

/* Усиление btn-main */
.btn-main {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 4px 18px rgba(198,43,221,0.45);
}
.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(198,43,221,0.65);
  filter: brightness(1.1);
}
.btn-main:active { transform: translateY(0); filter: brightness(0.95); }

/* Текстовый контраст */
.text-light { color: #5A3A7A !important; }
p { color: inherit; }
