/* =============== БАЗА И ПАЛИТРА =============== */

:root {
  --neon-pink: #F535AA;
  --soft-pink: #FCCCDC;
  --bg-dark: #050308;
  --bg-dark-alt: #0B0613;
  --text-main: #ffffff;
  --text-muted: #b3a9c7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Базовый шрифт для текста */
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #130722 0, var(--bg-dark) 45%, #000000 100%);
  color: var(--text-main);
  line-height: 1.6;
}

/* Контейнер */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Заголовки секций */

.section {
  padding: 80px 0;
}

/* H2 — Bebas Neue */
.section h2 {
  font-family: 'Inter', system-ui, sans-serif;
  text-align: center;
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  /* было 0.18em */
  margin-bottom: 24px;
  color: var(--text-main);
  text-shadow: 0 0 18px rgba(245, 53, 170, 0.9);
}

.benefits-line {
  display: inline-block;
  transform: translateX(0.7em);
  /* подбираешь: 0.2–0.6em по вкусу */
}

/* Дополнительный текст секций — Inter */
.section-intro {
  font-family: 'Inter', system-ui, sans-serif;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
  color: var(--soft-pink);
  font-size: 0.98rem;
}

/* Общие сетки */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background:
    radial-gradient(circle at top left,
      rgba(245, 53, 170, 0.18),
      rgba(5, 3, 8, 0.95));
  border-radius: 18px;
  border: 1px solid rgba(245, 53, 170, 0.7);
  padding: 26px 24px 24px;
  box-shadow:
    0 0 24px rgba(245, 53, 170, 0.25),
    0 20px 45px rgba(0, 0, 0, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--neon-pink);
  box-shadow:
    0 0 34px rgba(245, 53, 170, 0.6),
    0 24px 60px rgba(0, 0, 0, 0.9);
}

/* Заголовки карточек — Bebas Neue, текст — Inter */
.card h3 {
  font-family: 'Bebas Neue', system-ui, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--soft-pink);
}

.card p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* =============== НАВИГАЦИЯ =============== */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(5, 3, 8, 0.97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(245, 53, 170, 0.6);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Логотип — Tilt Neon */
.logo {
  font-family: 'Tilt Neon', system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--neon-pink);
  text-shadow:
    0 0 14px rgba(245, 53, 170, 1),
    0 0 26px rgba(245, 53, 170, 0.9);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

/* Пункты меню — Bebas Neue */
.nav-links a {
  font-family: 'Bebas Neue', system-ui, sans-serif;
  text-decoration: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  /* было 0.14em */
  color: var(--soft-pink);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, text-shadow 0.2s ease;
}

.nav-links a:hover {
  color: var(--neon-pink);
  border-color: rgba(245, 53, 170, 0.7);
  text-shadow: 0 0 10px rgba(245, 53, 170, 0.9);
}

/* =============== HERO =============== */

.hero {
  margin-top: 64px;
  min-height: calc(100vh - 64px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 60px;
  background:
    linear-gradient(135deg,
      rgba(5, 3, 8, 0.15),
      /* было 0.9, делаем прозрачнее */
      rgba(50, 9, 56, 0.15)
      /* было 0.7 */
    ),
    url('images/78576.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(245, 53, 170, 0.35), transparent 60%),
    radial-gradient(circle at bottom right, rgba(245, 53, 170, 0.35), transparent 65%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 700px;
  text-align: center;
  z-index: 1;
  animation: heroFadeIn 1s ease-out;
}

/* Главный заголовок — Tilt Neon */
.hero h1 {
  font-family: 'Tilt Neon', system-ui, sans-serif;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  margin-bottom: 0px;
  color: #ffffff;
  text-shadow:
    0 0 22px rgba(245, 53, 170, 1),
    0 0 40px rgba(245, 53, 170, 0.9);
}

/* Подзаголовок и текст — Inter */

.hero-subtitle {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--soft-pink);
}

.hero-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.98rem;
  max-width: 560px;
  margin: 0 auto 26px;
  color: var(--text-main);
}

.hero-buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 14px;
}

.age-badge {
  position: absolute;
  top: 26px;
  left: 55px;
  z-index: 2;

  /* только текст, без фона и рамки */
  background: transparent;
  border: none;

  font-family: 'Tilt Neon', system-ui, sans-serif;
  /* или Inter, если хочешь спокойнее */
  font-size: 5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffffff;

  /* неоновая подсветка вокруг букв */
  text-shadow:
    0 0 6px rgba(245, 53, 170, 0.9),
    0 0 14px rgba(245, 53, 170, 0.8),
    0 0 24px rgba(245, 53, 170, 0.8);
}

/* чуть меньше и ближе к краю на мобилках */
@media (max-width: 480px) {
  .age-badge {
    top: 10px;
    left: 14px;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
  }
}

/* Кнопки — Inter (верхний регистр и трекинг создают фирменный вид) */

.cta-button,
.secondary-btn {
  font-family: 'Inter', system-ui, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cta-button {
  background: #F535AA;
  border-color: rgba(245, 53, 170, 0.9);
  color: #fff;
  box-shadow:
    0 0 14px rgba(245, 53, 170, 0.7),
    0 0 26px rgba(245, 53, 170, 0.8);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 24px rgba(245, 53, 170, 1),
    0 0 36px rgba(245, 53, 170, 0.9);
}

.secondary-btn {
  background: transparent;
  border-color: rgba(252, 204, 220, 0.9);
  color: var(--soft-pink);
  text-decoration: none;
}

.secondary-btn:hover {
  color: #111;
  background: rgba(252, 204, 220, 1);
  box-shadow: 0 0 18px rgba(252, 204, 220, 0.9);
}

.hero-note {
  font-family: 'Inter', system-ui, sans-serif;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--soft-pink);
}

/* =============== О СТУДИИ / ФОРМАТ / ПРЕИМУЩЕСТВА / FAQ =============== */

.about {
  background: radial-gradient(circle at top, #140720 0, #050308 55%, #020005 100%);
}

.format {
  background: #050308;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.format-card {
  background:
    radial-gradient(circle at top left,
      rgba(245, 53, 170, 0.18),
      rgba(5, 3, 8, 0.96));
  border-radius: 18px;
  border: 1px solid rgba(245, 53, 170, 0.7);
  padding: 24px 24px 22px;
  box-shadow:
    0 0 20px rgba(245, 53, 170, 0.25),
    0 18px 40px rgba(0, 0, 0, 0.8);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.format-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-pink);
  box-shadow:
    0 0 30px rgba(245, 53, 170, 0.6),
    0 20px 50px rgba(0, 0, 0, 0.9);
}

/* Заголовки формат-карт — Bebas Neue, текст — Inter */

.format-card h3 {
  font-family: 'Bebas Neue', system-ui, sans-serif;
  margin-bottom: 10px;
  color: var(--soft-pink);
}

.format-card ul {
  list-style: none;
}

.format-card li {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.94rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  position: relative;
  padding-left: 16px;
}

.format-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--neon-pink);
}

.benefits {
  background: radial-gradient(circle at top, #1a0a30 0, #040208 55%, #000000 100%);
}

/* FAQ */

.faq {
  background: #050308;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.faq-item {
  background:
    radial-gradient(circle at top left,
      rgba(245, 53, 170, 0.13),
      rgba(5, 3, 8, 0.96));
  border-radius: 16px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(245, 53, 170, 0.5);
}

.faq-item h3 {
  font-family: 'Bebas Neue', system-ui, sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--soft-pink);
}

.faq-item p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =============== КОМНАТЫ =============== */

.rooms {
  background: #050308;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.room-card {
  background: #050308;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(245, 53, 170, 0.6);
  box-shadow:
    0 0 20px rgba(245, 53, 170, 0.25),
    0 20px 40px rgba(0, 0, 0, 0.85);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 30px rgba(245, 53, 170, 0.6),
    0 24px 60px rgba(0, 0, 0, 0.95);
  border-color: var(--neon-pink);
}

.room-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.room-info {
  padding: 16px 16px 18px;
}

.room-info h3 {
  font-family: 'Bebas Neue', system-ui, sans-serif;
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--soft-pink);
}

.room-info p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =============== ФОРМА АНКЕТЫ =============== */

.form-section {
  background: radial-gradient(circle at top, #1a082a 0, #050308 55%, #000000 100%);
}

.form-subtitle {
  font-family: 'Inter', system-ui, sans-serif;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 34px;
  color: var(--soft-pink);
  font-size: 0.95rem;
}

.registration-form {
  max-width: 640px;
  margin: 0 auto;
  background:
    radial-gradient(circle at top left,
      rgba(245, 53, 170, 0.2),
      rgba(5, 3, 8, 0.98));
  border-radius: 20px;
  border: 1px solid rgba(245, 53, 170, 0.8);
  padding: 28px 26px 24px;
  box-shadow:
    0 0 24px rgba(245, 53, 170, 0.4),
    0 22px 50px rgba(0, 0, 0, 0.95);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  font-family: 'Inter', system-ui, sans-serif;
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft-pink);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', system-ui, sans-serif;
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(245, 53, 170, 0.7);
  background: rgba(5, 3, 8, 0.95);
  padding: 11px 12px;
  color: var(--text-main);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(252, 204, 220, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--neon-pink);
  box-shadow: 0 0 16px rgba(245, 53, 170, 0.9);
  background: #050308;
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #050308;
  color: var(--text-main);
}

.form-group.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-group.checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
}

.form-group.checkbox label {
  margin: 0;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.form-note {
  font-family: 'Inter', system-ui, sans-serif;
  margin-top: 5px;
  font-size: 0.75rem;
  color: var(--soft-pink);
}

/* Кнопка отправки */

.submit-btn {
  width: 100%;
  margin-top: 6px;
}

/* =============== FOOTER =============== */

.footer {
  background: #050308;
  border-top: 1px solid rgba(245, 53, 170, 0.5);
  padding: 32px 0 18px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-bottom: 18px;
}

.footer-section h3 {
  font-family: 'Bebas Neue', system-ui, sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--soft-pink);
  margin-bottom: 8px;
}

.footer-section p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-section a {
  font-family: 'Inter', system-ui, sans-serif;
  display: block;
  font-size: 0.84rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 3px;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer-section a:hover {
  color: var(--neon-pink);
  text-shadow: 0 0 8px rgba(245, 53, 170, 0.9);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 53, 170, 0.4);
  padding-top: 10px;
  text-align: center;
}

.footer-bottom p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =============== АНИМАЦИИ =============== */

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============== ADAPTIVE =============== */

@media (max-width: 900px) {
  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-content {
    max-width: 540px;
  }
}

@media (max-width: 640px) {
  .navbar-container {
    align-items: center;
  }

  .nav-links {
    justify-content: center;
  }

  .section {
    padding: 60px 0;
  }

  .section h2 {
    font-size: 2rem;
  }

  .registration-form {
    padding: 22px 18px 20px;
  }

  .room-card img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 0.9rem;
    letter-spacing: 0.24em;
  }

  .nav-links {
    gap: 10px;
  }

  .hero h1 {
    letter-spacing: 0.26em;
    font-size: 2.1rem;
  }

  .hero-text {
    font-size: 0.9rem;
  }

  .cta-button,
  .secondary-btn {
    width: 100%;
    font-size: 0.75rem;
    padding: 11px 18px;
  }

  .cards-grid,
  .format-grid,
  .faq-grid,
  .rooms-grid {
    gap: 18px;
  }
}