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

body {
  font-family: "Zain", 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 */
.about-hero {
  background: url("../images/salon1.png") no-repeat center center/cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.about-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(60, 47, 47, 0.5);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.about-hero-content h1 {
  font-family: "Poiret One", sans-serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

.about-hero-content p {
  font-size: 1.2rem;
  color: #f3e9dd;
}

/* STORY & PHILOSOPHY */
.about-row {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

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

.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,
.about-text ul {
  font-size: 1.1rem;
  color: #5c4033;
  line-height: 1.7;
}

.about-text ul {
  margin-top: 10px;
  padding-left: 20px;
}

.about-image {
  flex: 1;
  text-align: center;
}

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

/* WHY CHOOSE US */
.about-why {
  text-align: center;
  padding: 60px 20px;
  background: #a678564f;
}

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

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 1.2rem;
  font-weight: 600;
  color: #5c4033;
}

/* TEAM PREVIEW */
.about-team-preview {
  text-align: center;
  padding: 60px 20px;
}

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

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

.about-team-preview .btn {
  background: #6b4226;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.about-team-preview .btn:hover {
  background: #a67856;
}

/* Footer */
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);
  }
}