* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #4a2c2a;
  line-height: 1.6;
  background-color: #f9f6f2;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px; 
  background: #fdfaf7;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo a {
  font-family: 'Borel', cursive;
  text-decoration: none;
  color: #6b4226; 
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 0.1;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  font-family: "Zain", sans-serif;
   font-size: 1.6rem;
  text-decoration: none;
  color: #6b4226;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #a67856; 
}

.hero {
  background: url('../images/hero-bg.jpg') no-repeat center center/cover;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: "Poiret One", sans-serif;
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 3px 6px rgba(0,0,0,0.4);
}

.hero p {
  font-family: "Zain", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 25px;
  color: #f9f6f2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.btn {
  font-family: "Poiret One", sans-serif;
  display: inline-block;
  padding: 12px 28px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  background: #6b4226;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn:hover {
  background: #a67856; 
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}


.about-salon {
  padding: 60px 40px;
  max-width: 1100px;
  margin: auto;
}

.about-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.about-row.reverse {
  flex-direction: row-reverse; 
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-family: "Poiret One", sans-serif;
  font-size: 2rem;
  color: #6b4226;
  margin-bottom: 20px;
  text-shadow: 0 0 3px #6b4226;
}

.about-text p {
  font-family: "Zain", sans-serif;
  font-size: 1.4rem;
  color: #5c4033;
  line-height: 1.7;
}


footer {
  font-family: "Zain", sans-serif;
  background: #3c2f2f; 
  color: #f3e9dd; 
  text-align: center;
  padding: 15px;
  font-size: 1.4rem;
}

/* --- Burger Menu --- */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #6b4226;
}

/* Mobile */
@media (max-width: 768px) {
  /* Скрываем меню по умолчанию */
  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fdfaf7;
    position: absolute;
    top: 70px;
    left: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 20px 0;
  }

  /* Когда активное */
  nav.active {
    display: flex;
    animation: dropdown 0.3s ease forwards;
  }

  /* Стили списка */
  nav ul {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  nav ul li a {
    font-size: 1.4rem;
    display: block;
    padding: 10px 0;
  }

  .menu-toggle {
    display: block; /* бургер показывается */
  }
}

/* Анимация выпадающего меню */
@keyframes dropdown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}