* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-image: url(fon2.jpg);
  background-size: cover;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Кнопка-гамбургер */
.hamburger-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 0;
}

.line {
  display: block;
  width: 100%;
  height: 4px;
  background-color: white;
  border-radius: 2px;
  transition: 
    transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    opacity 0.3s ease;
}

/* Анимация гамбургер → крестик */
.hamburger-btn.open .line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.open .line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open .line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Выпадающее меню */
.dropdown-menu {
  position: fixed;
  top: -100%; /* изначально скрыто над экраном */
  left: 0;
  width: 100%;
  background: aqua;
  background-image: url(fon1.avif);
  background-size: cover;
  background-repeat: no-repeat;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 999;
  overflow: hidden;
  transition: top 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dropdown-menu.open {
  top: 0; /* выезжает вниз до верха экрана */
}

/* Список меню */
.menu-list {
  list-style: none;
  padding: 60px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}

.menu-list li {
  opacity: 0;
  transform: translateY(-20px);
  transition: 
    opacity 0.5s ease,
    transform 0.5s ease;
}

/* Плавное появление пунктов меню */
.dropdown-menu.open .menu-list li {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(0.1s * var(--i));
}

.menu-list a {
  color: #333;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 800;
  font-style: italic;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  padding: 8px 15px;
  border-radius: 8px;
  display: inline-block;
  transition: background 0.3s, color 0.3s;
}

.menu-list a:hover {
  background: #eef2ff;
  color: #4f46e5;
}

.container1 {
  width: 100%;
  height: auto;
}

.container {
  margin-left: 25vw;
  padding-top: 10vh;
  padding-bottom: 10vh;
    text-align: center;
    max-width: 800px;
    width: 90%;
}

h1 {
    color: red;
    font-size: 60pt;
    letter-spacing: 2px;
    line-height: 1.2;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-style: italic;
    font-weight: 900;
     justify-content: center;
    align-items:start;
    padding-top: 15vh;
    padding-bottom: 10vh;
    margin-bottom: 15vh;
    height: 15vh;
}

h1:hover {
  color: aqua;
}

h2 {
  padding-top: 10vh;
  margin-top: 5vh;
  color: azure;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 900;
  font-size: 25pt;
}

h3 {
  padding: 3vh;
  color: aqua;
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bolder;
  font-size: 25pt;
}

h3:hover {
  color: #d9534f;
}

p {
  color: azure;
  font-size: 20pt;
  font-style: inherit;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  padding: 3vw;
}

.mi_foto {
  float: left;
  margin-left: -20vw;
  border-radius: 25px;
}

.title {
  float: left;
  width: 40%;
  margin-left: 5vw;
  margin-top: 3vh;
  margin-bottom: 3vh;
  background-image: url(fon.jpg);
  background-repeat: no-repeat;
  border-radius: 25px 25px 25px 25px;
}

.intro {
  float: right;
    width: 40%;
    margin-right: 5vw;
  margin-top: 3vh;
  margin-bottom: 3vh;
  background-image: url(fon.jpg);
  background-repeat: no-repeat;
  border-radius: 25px 25px 25px 25px;

}

.price {
  float: left;
  width: 40%;
  margin-top: 10vh;
  margin-left: 5vw;
}

.price-1 {
  float: right;
  width: 40%;
   margin-top: 10vh;
  margin-right: 5vw;
}

h4 {
    padding: 3vh;
  color: #333
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bolder;
  font-size: 25pt;
}

h5 {
    color: #4f46e5;
  font-size: 20pt;
  text-align: inherit;
  font-style: inherit;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  padding: 1vw;

}

.color {
  color: red;
  
}

.plus {
  width: 60%;
  padding-top: 320vh;
  margin-left: 5vw;
  margin-right: 30vw;
  
}

.plus-1 {
  float: left;
  margin-left: 5vw;
  width: 55%;
}

.form-container {
  float: right;
  margin-right: 5vw;
  margin-top: 30vh;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
 width: 40%;
  max-width: 500px;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
  color: #007bff;
  font-weight: 400;
}

label {
  display: block;
  margin-bottom: 5px;
  color:#0056b3;
}
input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

textarea {
  resize: vertical;
}

button {
  background-color: #007bff;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
}

button:hover {
  background-color: #0056b3;
}

#status {
  margin-top: 15px;
  text-align: center;
  color: #d9534f;
}

.telegram {
  text-align: center;
  float: left;
  width: 55%;
  margin-left: 8vw;
  margin-top: 8vh;
  padding:2vw;
  border-radius: 30px;
  background-color: #d9534f;
   border: #d9534f 2px solid;
}

.telegram-text {
   text-decoration: none;
  font-size: 22pt;
  color: aqua;
  font-style: inherit;
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-weight: bold;
}

.telegram:hover {
  background-color: #007bff;
  border: #4f46e5 2px solid;
}

.telegram-text:hover {
   color: #eef2ff;
}

.telegram-text:active {
  color: #d9534f;
}

.program {
  text-decoration: none;
  color: #ddd;
  
}

.program:hover {
  color: aqua;
}

.program1 {
  text-decoration: none;
  color: black;
}

.program1:hover {
  color: blue;
}

.program-image {
  border-radius: 15px;
  text-align: center;
  justify-content: center;
  margin-left: 10%;
  transition: transform 0.3s ease;
  object-fit: cover;
}

.salon {
  border-radius: 25px 25px 25px 25px;
  transition: transform 0.3s ease;
  margin: 2px;
}

.salon:hover {
  transform: scale(1.1);
  border: 2px solid white;
}