* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #FFFFFF;
  color: #333333;
  line-height: 1.6;
  overflow-x: hidden;
}

@font-face {
  font-family: 'Incrediball Adventures';
  src: url('../assets/fonts/IncrediballAdventures.otf.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

h1, h2, h3, h4, .site-header h1, .logo-text h1 {
  font-family: 'Incrediball Adventures', 'Segoe UI', sans-serif;
  font-weight: normal;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  border-bottom: 1px solid #F0F0F0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

.logo-img {
  height: 60px;
  width: auto;
}

.logo-text h1 {
  font-size: 28px;
  margin: 0;
  color: #2C2C2C;
  letter-spacing: 0.5px;
}

.logo-text p {
  font-size: 12px;
  margin: 0;
  color: #8B7355;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.nav-link {
  font-size: 14px;
  text-decoration: none;
  color: #4A4A4A;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #8B7355;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #8B7355;
}

.nav-link:hover::after {
  width: 100%;
}

.header-contact {
  text-align: right;
}

.header-contact p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #2C2C2C;
  padding: 8px 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.header-contact p:hover {
  color: #8B7355;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #4A4A4A;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 20px 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 42px;
  color: #2C2C2C;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: #8B7355;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.site-footer {
  background: #2C2C2C;
  color: #fff;
  padding: 60px 0 30px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.footer-logo h3 {
  color: #d4b483;
  font-size: 24px;
  margin: 0;
}

.footer-logo p {
  color: #aaa;
  font-size: 12px;
  margin: 5px 0 0;
}

.footer-description {
  color: #aaa;
  line-height: 1.6;
  font-size: 14px;
}

.footer-phone {
  display: inline-block;
  background: #8B7355;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 10px;
  width: fit-content;
}

.footer-phone:hover {
  background: #d4b483;
  color: #2C2C2C;
  transform: translateY(-2px);
}

.footer-section h4 {
  color: #d4b483;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #8B7355;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-links a:hover {
  color: #d4b483;
  padding-left: 5px;
}

.footer-contacts-info p {
  color: #aaa;
  margin-bottom: 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contacts-info strong {
  color: #d4b483;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aaa;
  text-decoration: none;
  padding: 8px 15px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.social-link img {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  background: #8B7355;
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
  color: #aaa;
  font-size: 12px;
}

.copy-notification {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: #8B7355;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.copy-notification.show {
  opacity: 1;
}

/* Улучшенная адаптация под телефон */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 12px 20px;
  }
  
  .logo-img {
    height: 45px;
  }
  
  .logo-text h1 {
    font-size: 18px;
  }
  
  .logo-text p {
    font-size: 10px;
  }
  
  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    gap: 15px;
  }
  
  .nav.active {
    display: flex;
  }
  
  .nav-link {
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #F0F0F0;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .header-contact {
    display: none;
  }
  
  main {
    padding: 100px 15px 30px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-container {
    padding: 0 20px;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .social-link {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .footer-phone {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .footer-logo h3 {
    font-size: 20px;
  }
}