* {
  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; 
}

.contact-hero {
  background: url("../images/salon2.png") no-repeat center center/cover;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

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

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

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

/* CONTACT SECTION */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

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

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

.contact-info a {
  color: #6b4226;
  text-decoration: none;
}

.contact-info a:hover {
  color: #a67856;
}

.contact-info h3 {
  margin-top: 20px;
  font-family: "Zain", sans-serif;
  font-size: 1.9rem;
  color: #5c4033;
  line-height: 1.7;
}

.contact-info h1 {
  font-family: "Zain", sans-serif;
  font-size: 1.9rem;
  color: #5c4033;
  line-height: 1.7;
}

.socials {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.socials a:hover {
  color: #a67856;
}

/* FORM */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #d4c1b2;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Zain", sans-serif;
}

.contact-form button {
  background: #6b4226;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #a67856;
}


.map {
  margin: 60px auto;
  max-width: 1100px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.map iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

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);
  }
}