/* Общие стили */
:root {
  --primary-color: #FF7043;
  --secondary-color: #FF9E80;
  --text-color: #333;
  --light-text: #666;
  --bg-color: #f8f9fa;
  --footer-bg: #2d3748;
  --footer-text: #e2e8f0;
}



/* Навигация */
.navbar {
  /* background-color: white; */
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  /* position: sticky; */
  /* top: 0; */
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.logo {
  /* font-family: 'Pacifico', cursive; */
  /* font-family: 'Roboto-Medium'; */
  /* font-size: 24px; */
  color: var(--primary-color);
  display: flex;
  align-items: center;
}

.logo img{
    width: 45px;
    height: auto;
    margin-right: 5px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  /* color: var(--text-color); */
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
}

/* Мобильное меню */
.mobile-menu {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 1000;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu-link {
  color: var(--text-color);
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  transition: color 0.3s;
}

.mobile-menu-link:hover {
  color: var(--primary-color);
}


.close-btn i {
    font-size: 24px;
    color: var(--text-color);
    transition: color 0.3s;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    position: relative;
}
.close-btn:hover {
    background-color: #f5f5f5;
}

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }

}

/* Верхний хедер */
.top-header {
  padding: 6px 0;
  border-bottom: 1px solid #ececec;
  position: sticky;
  top: 0;
  z-index: 1100;
}
.top-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.top-header-phone , .top-header-email {
  font-size: 15px;
  padding: 7px 0px;
}

.top-header-sep {
  display: none;
}

@media (max-width: 768px) {
  .top-header-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .top-header-phone, .top-header-email {
    width: auto;
  }
  .top-header {
    padding: 4px 0;
  }
}