/* ===== altonikola.com — LIGHT ONLY ===== */
:root{
  --bg:#f5f6fa;
  --text:#222832;
  --muted:#6b7280;
  --card:#ffffff;
  --brand:#276cf6;
  --brand-2:#1f5bd4;
  --shadow:0 8px 26px rgba(0,0,0,.10);
  --hero:url("/img/MainFierst1546X423last.png");
}

*,*::before,*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{
  color:var(--brand);
  text-decoration:none;
}

a:hover{
  color:var(--brand-2);
}

/* Декор-кусты по диагоналям */
.bush-diagonal{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
  background-image:
    url("/img/bushs.png"),
    url("/img/bushs.png"),
    url("/img/bushs.png"),
    url("/img/bushs.png");
  background-repeat:no-repeat;
  background-size:520px auto;
  background-position:
    -60px -80px,
    calc(100% + 60px) -80px,
    -60px calc(100% + 80px),
    calc(100% + 60px) calc(100% + 80px);
  filter:drop-shadow(0 6px 18px rgba(0,0,0,.25));
  opacity:.95;
}

/* Header */
.header{
  position:relative;
  z-index:2;
  background:#fff;
  box-shadow:0 2px 14px rgba(0,0,0,.06);
}

.header__inner{
  max-width:1100px;
  margin:0 auto;
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.header__logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  font-size:1.1rem;
}

.header__logo img{
  width:40px;
  height:auto;
}

.header__info{
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
  color:#2c3340;
  font-size:.98rem;
}

.header__info span{
  white-space:nowrap;
}

/* Соцсети справа */
.socials{
  position:fixed;
  right:12px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:5;
}

.socials a{
  width:48px;
  height:48px;
  border-radius:14px;
  background:#fff;
  display:grid;
  place-items:center;
  box-shadow:var(--shadow);
  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.socials a:hover{
  transform:translateY(-2px) scale(1.03);
  filter:brightness(1.04);
}

.socials img{
  width:24px;
  height:24px;
}

/* WhatsApp */
.whatsapp-float{
  position:fixed;
  left:16px;
  bottom:16px;
  width:64px;
  height:64px;
  border-radius:50%;
  background:#25d366;
  display:grid;
  place-items:center;
  box-shadow:0 10px 26px rgba(37,211,102,.35);
  z-index:6;
  transition:transform .08s, filter .12s;
}

.whatsapp-float:hover{
  transform:translateY(-2px) scale(1.02);
  filter:brightness(1.05);
}

/* Hero — баннер с Биглем и Ником */
.hero{
  position:relative;
  z-index:1;
  height:420px;
  background:var(--hero) center/cover no-repeat, #1f2937;
  border-bottom-left-radius:22px;
  border-bottom-right-radius:22px;
  box-shadow:0 6px 32px rgba(0,0,0,.07);
}

/* лёгкий fade под баннером */
.hero-fade{
  height:80px;
  margin-top:-20px;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,.18),
    rgba(0,0,0,0) 50%,
    rgba(255,255,255,.35)
  );
}

/* волна-разделитель */
.wave-sep{
  height:60px;
  overflow:hidden;
}

.wave-sep svg{
  width:100%;
  height:100%;
  display:block;
}

.wave-sep path{
  fill:rgba(255,255,255,.65);
}

/* Контент */
.section{
  position:relative;
  z-index:2;
  padding:0 16px 24px;
}

.card{
  background:var(--card);
  box-shadow:var(--shadow);
  border-radius:18px;
  padding:24px;
  max-width:1100px;
  margin:0 auto;
}

.grid{
  display:grid;
  gap:24px;
}

.grid-2{
  grid-template-columns:repeat(2, minmax(0,1fr));
}

.lead{
  font-size:1.06rem;
  color:#374151;
}

/* Форма: более квадратная и не такая длинная */
.form,
.contact-card{
  max-width:640px;
  margin:24px auto 32px;
  background:#fff;
  border-radius:14px;
  box-shadow:0 10px 26px rgba(0,0,0,.12);
  padding:24px;
  position:relative;
  z-index:2;
}

.form h3{
  margin:0 0 12px;
  font-size:1.2rem;
}

/* Две верхние ячейки в ряд */
.form-row-two{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin:10px 0;
}

/* Поля формы */
.form input,
.form textarea{
  width:100%;
  padding:12px 14px;
  margin:10px 0;
  border:1px solid #e5e7eb;
  border-radius:8px; /* более квадратные углы */
  font:inherit;
  color:inherit;
  background:#fff;
  outline:none;
  transition:border-color .12s, box-shadow .12s;
}

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

.form input:focus,
.form textarea:focus{
  border-color:#c7d2fe;
  box-shadow:0 0 0 3px rgba(39,108,246,.18);
}

/* Кнопка */
.form button{
  padding:12px 18px;
  border:0;
  border-radius:10px;
  background:var(--brand);
  color:#fff;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(39,108,246,.25);
  transition:transform .12s, box-shadow .12s, background .15s;
}

.form button:hover{
  transform:translateY(-1px);
  background:var(--brand-2);
  box-shadow:0 12px 26px rgba(39,108,246,.28);
}

/* «тетрадный» вид бумаги */
.form.paper::before{
  content:"";
  position:absolute;
  left:46px;
  top:12px;
  bottom:12px;
  width:2px;
  background:#ff6666;
  opacity:.6;
  border-radius:1px;
}

.form.paper::after{
  content:"";
  position:absolute;
  left:50%;
  top:-12px;
  width:120px;
  height:22px;
  background:#fff6a8;
  border-radius:4px;
  box-shadow:0 6px 12px rgba(0,0,0,.12);
  transform:translateX(-50%) rotate(-2deg);
}

/* Лёгкое покачивание формы */
.form.paper{
  animation:form-bob 7s ease-in-out infinite;
  will-change:transform;
}

@keyframes form-bob{
  0%,100% { transform: translateY(0) rotate(-0.2deg); }
  50%     { transform: translateY(-6px) rotate(0.2deg); }
}

/* Уважение к пользователям без анимаций */
@media (prefers-reduced-motion: reduce){
  .form.paper{
    animation:none !important;
  }
}

/* Footer */
footer{
  margin:22px auto 28px;
  text-align:center;
  color:var(--muted);
  font-size:.95rem;
  padding:0 16px;
}

/* Back to top */
.back-to-top{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:7;
  width:46px;
  height:46px;
  border-radius:50%;
  background:var(--brand);
  box-shadow:0 10px 26px rgba(39,108,246,.3);
  display:grid;
  place-items:center;
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:opacity .18s, transform .18s, visibility .18s;
}

.back-to-top::before{
  content:"▲";
  color:#fff;
  font-size:18px;
  line-height:1;
  transform:translateY(-1px);
}

.back-to-top.show{
  opacity:1;
  visibility:visible;
  transform:none;
}

/* Адаптив */
@media (min-width:1240px){
  .header__inner,
  .card{
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
  }
}

@media (max-width:980px){
  .grid-2{
    grid-template-columns:1fr;
  }
  .header__inner{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
  .header__info span{
    white-space:normal;
  }
  .hero{
    height:360px;
  }
}

@media (max-width:820px){
  .hero{
    height:300px;
  }
  .socials{
    right:10px;
  }
}

@media (max-width:680px){
  .hero{
    height:260px;
  }
  .socials a{
    width:44px;
    height:44px;
  }
  .socials img{
    width:22px;
    height:22px;
  }
}

@media (max-width:540px){
  .socials{
    display:none;
  }
  .form,
  .contact-card{
    margin:18px auto 24px;
    padding:18px;
  }
  .form-row-two{
    grid-template-columns:1fr;
  }
}

@media (orientation:landscape) and (max-height:420px){
  .hero{
    height:200px;
  }
  .socials{
    display:none;
  }
}

/* Учёт safe area на айфонах */
.whatsapp-float,
.back-to-top{
  bottom:max(16px, env(safe-area-inset-bottom));
}

/* Блок про новую серию */
.promo-series {
  max-width: 900px;
  margin: 0 auto 32px;
  padding: 24px 20px 28px;
  text-align: center;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.promo-series h2 {
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.promo-series .promo-text {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 650px;
  margin: 0 auto 16px;
}

.promo-video {
  position: relative;
  width: 100%;
  max-width: 420px;        /* делаем видео компактнее */
  margin: 0 auto 18px;
  border-radius: 18px;
  overflow: hidden;
  background:#000;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* убираем старый псевдо-элемент с 16:9 */
.promo-video::before {
  content: none;
}

/* видео показываем целиком, без кропа */
.promo-video video {
  position: static;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  object-fit: contain;
}

.promo-btn {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffcf4a, #ff7b3b);
  color: #1b1207;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.55);
}

/* Мобильная адаптация промо-блока */
@media (max-width: 600px) {
  .promo-series {
    padding: 18px 14px 22px;
  }
  .promo-series h2 {
    font-size: 1.4rem;
  }
  .promo-series .promo-text {
    font-size: 0.95rem;
  }
}
