/* 🌍 Общие стили */
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #333;
  background: url("images/pexels-evie-shaffer-1259279-2395249.jpg") no-repeat center center fixed;
  background-size: cover;
}

/* Лёгкий оверлей для читаемости текста */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: -1;
}

/* 🔝 Хедер */
header {
  background: #111;
  color: white;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo span {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 1px;
}

nav {
  display: flex;
  gap: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #e50050;
}

/* 🎀 Hero секция */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding-left: 40px;
  height: 80vh;
  background: url("images/woman-6132393_1280.jpg") center/cover no-repeat;
  color: white;
}

/* 📦 Контейнер */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

/* 💇‍♀️ Сервисы */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.service:hover {
  transform: translateY(-5px);
}

.service img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service h3 {
  margin: 0 0 10px;
  color: #111;
}

.service p {
  color: #555;
  margin: 0 0 10px;
}

.price {
  font-weight: bold;
  color: #e5c100;
}

/* 🖼 Галерея */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.gallery img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* 📜 Сертификаты */
.certificates {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.certificates img {
  width: 250px;
  height: 360px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid #eee;
  background: #fff;
  padding: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.certificates img:hover {
  transform: scale(1.07);
}

/* ℹ️ About */
.about {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.about-section img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.about-text h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #62112f;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
  letter-spacing: 2px; /* чуть больше воздуха между буквами */
  text-transform: uppercase;
}

.about-text p {
   font-family: 'Cormorant Garamond', serif; /* читабельный элегантный */
  font-size: 1.8rem;
  font-weight: 500;
  color: #040404;
  text-transform: none; /* оставляем нормальный текст */
  letter-spacing: 1px;
}

/* 🕒 Часы работы */
.opening-hours {
  margin-top: 25px;
  padding: 15px;
  background: #fff0f5;
  border-radius: 10px;
  border-left: 5px solid #e50050;
}

.opening-hours h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #e50050;
}

.opening-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.opening-hours li {
  margin-bottom: 8px;
  font-weight: bold;
}

/* 📩 Контакты */
.contact-info {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #e50050;
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  margin: 40px auto;
  box-shadow: 0 6px 20px rgba(229, 0, 80, 0.25);
  text-align: left;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #e50050;
  text-align: center;
  text-shadow: 1px 1px 6px rgba(229, 0, 80, 0.3);
}

.contact-info p {
  font-size: 1.1rem;
  margin: 10px 0;
  color: #000;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(229, 0, 80, 0.2);
}

.contact-info strong {
  color: #e50050;
}

/* 🦶 Футер */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 25px;
  margin-top: 60px;
}

/* 📱 Адаптив */
@media (max-width: 992px) {
  .hero h2 { font-size: 3.5rem; }
  .hero p { font-size: 1.8rem; }
}

@media (max-width: 768px) {
  .about {
    flex-direction: column;
    gap: 20px;
  }

  .about img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .about-text {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero { padding-left: 20px; }

  
}
.hero h2 {
  font-family: 'Cinzel Decorative', serif; /* красивый заголовочный шрифт */
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffebf2;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
  text-transform: uppercase; /* делает ВСЕ БУКВЫ БОЛЬШИМИ */
}

.hero p {
  font-family: 'Cinzel Decorative', serif; /* можно другой шрифт */
  font-size: 2rem;
  color: #f8f8f8;
  text-transform: uppercase; /* тоже все большими */
}
.opening-hours .hours-content {
  display: flex;
  align-items: center;      /* выравнивание по центру */
  justify-content: space-between;
  gap: 20px;
}

.hours-text {
  flex: 1; /* текст занимает всю доступную ширину */
}

.hours-image img {
  max-width: 200px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  text-align: center;
  padding-top: 50px;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.lightbox:target {
  display: block;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  text-decoration: none;
  font-weight: bold;
}