/* Общие стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Verdana', sans-serif;
  background-color: #f9f9f9;
  color: #000;
  overflow-x: hidden;
}

.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 15px 60px;
  min-height: 100vh;
  overflow: hidden;
}

/* Абсолютные декоративные элементы */
.decor {
  position: absolute;
  z-index: 0;
  opacity: 0.9;
  max-width: 230px;
}

/* ---- Левая сторона ---- */
.decor-top-left { top: -25px; left: -67px; transform: rotate(15deg); }
.decor-top-left-2 { top: 217px;
  left: -181px;
  transform: rotate(5deg);
  max-width: 406px !important;
   }

.decor-top-left-3 { top: 637px;
  left: -30px;
  transform: rotate(43deg);
  max-width: 120px !important;}
.decor-top-left-4 { top: 862px;
  left: -36px;
  transform: rotate(-39deg);
  max-width: 187px !important; }

/* ---- Правая сторона ---- */
.decor-top-right { top: 20px;
  right: -104px;
  transform: rotate(-60deg); }
.decor-top-right-2 { top: 263px;
  right: -50px;
  transform: rotate(-37deg);
  max-width: 145px !important; }
.decor-top-right-3 { top: 413px;
  right: -55px;
  transform: rotate(0deg);
  max-width: 166px !important;}
.decor-top-right-4 { top: 601px;
  right: -122px;
  transform: rotate(-68deg); }
.decor-top-right-5 { top: 828px;
  right: -74px;
  transform: rotate(5deg); }

/* ---- Центр сверху ---- */
.decor-top-center {
  top: 0px;
  left: 73%;
  transform: translateX(-50%) rotate(-50deg);
  max-width: 130px !important;
}

/* ---- Нижняя бутылка слева ---- */
.decor-bottom-left {
  bottom: 80px; /* подгоняется под футер */
  left: -20px;
  transform: rotate(8deg);
}




.decor-bottom-left { bottom: 40px; left: -20px; transform: rotate(10deg); }
.decor-bottom-right { bottom: 30px; right: -25px; transform: rotate(-20deg); }

/* Контент поверх декора */
.header, .content, .footer {
  position: relative;
  z-index: 2;
  text-align: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 10px;
}
.logo-circle {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1),
              0 2px 8px rgba(0, 0, 0, 0.05);
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.logo-text {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 2px;
  color: #000;
}

/* Адаптив для мобильных устройств */
@media (max-width: 480px) {
  .logo-circle {
    width: 90px;
    height: 90px;
  }
  .logo-text {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .logo-circle {
    width: 140px;
    height: 140px;
  }
  .logo-text {
    font-size: 26px;
  }
}
.subtitle {
  font-size: 1.45rem;
  color: #263238;
}

.desc {
  font-size: 0.95rem;
  color: #000;
  margin-bottom: 15px;
}

/* Соцсети */
.socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 15px 0;
}

.socials img {
  width: 25px;
  height: 27px;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.socials img:hover {
  transform: scale(1.2);
}

/* Кнопки */
.buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0;
}

.btn {
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  color: #333;
  background: white;
  border-radius: 30px;
  padding: 18px 55px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn img {
  position: absolute;
  left: 18px;
  width: 20px;
  height: 20px;
}

.btn span {
  flex: 1;
  text-align: center;
}

.btn:hover {
  border: 2px solid white;
  background: #f0f0f0;
  transform: translateY(-2px);
}

.btn img {
  width: 20px;
  height: 20px;
}

/* Заголовки секций */
h3 {
  font-size: 1rem;
  margin-top: 45px;
  color: #000;
}

/* Footer */
.footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.9rem;
  color: #777;
  margin-top: 120px;
}

.footer a {
  color: #000;
  text-decoration: underline;
}

.footer a:hover {
  text-decoration: underline;
}

/* ----- Адаптивность ----- */

/* Минимум 320px (мобильные) */
@media (max-width: 480px) {
  .decor { max-width: 230px; }
  .logo { font-size: 1.5rem; }
  .btn { font-size: 0.9rem; padding: 18px 47px; }
}

/* Планшеты (до ~768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .decor { max-width: 230px; }
  .btn { font-size: 1rem; padding: 18px 47px; }
  .logo { font-size: 2rem; }
}

/* Десктопы */
@media (min-width: 769px) {
  .wrapper { padding: 40px; }
  .decor { max-width: 230px; }
  .logo { font-size: 2.2rem; }
  .btn { max-width: 400px; font-size: 1rem; }
}
