* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #111;
  background-color: #ffffff; /* ← фикс белого фона */
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */

.header {
  padding: 30px 0;
  position: sticky;
  top: 0;
  background: #fff; /* важно, чтобы не было прозрачности */
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 260px;
}

.nav a {
  margin-left: 40px;
  text-decoration: none;
  color: #111;
  font-size: 14px;
  letter-spacing: 1px;
}

/* HERO */

.hero {
  padding: 140px 0;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #111;
  text-decoration: none;
  color: #111;
  transition: 0.3s;
}

.btn:hover {
  background: #111;
  color: #fff;
}

/* ABOUT */

.about {
  padding: 120px 0;
  text-align: center;
  font-size: 20px;
  max-width: 800px;
  margin: auto;
}

/* SERVICES */

.services {
  padding: 120px 20px;
  min-height: 100vh;
}

.services .container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.service h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service p {
  color: #666;
  font-size: 14px;
}

/* CONTACTS */

.contacts {
  padding: 100px 0;
  text-align: center;
  font-size: 18px;
}
.contacts {
  padding: 60px 0;
}

.contacts h2 {
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 16px;
  justify-content: center;
}

.contact-item i {
  font-size: 18px;
  width: 24px;
  text-align: center;
  color: #333;
}

.contact-item a {
  text-decoration: none;
  color: #333;
  transition: 0.2s;
}

.contact-item a:hover {
  color: #E1306C; /* Instagram акцент */
}

/* FOOTER */

.footer {
  padding: 40px 0;
  text-align: center;
  font-size: 10px;
  color: #777;
  margin-top: 80px;
  opacity: 0.8;
}

.footer-content p {
  margin-bottom: 5px;
}


/* instagram */
.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: #E1306C;
  text-decoration: none;
  font-weight: 500;
}

.insta-link i {
  font-size: 20px;
}

.insta-link:hover {
  opacity: 0.8;
}

/* SMOOTH SCROLL */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

/* ADAPTIVE */

@media (max-width: 900px) {
  .services .container {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 32px;
  }

  .logo img {
    width: 110px;
  }
}