/* === БАЗОВЫЕ НАСТРОЙКИ === */
* {
  box-sizing: border-box;
}
body {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.6;
  color: #222;
  background-color: #f9fafb;
  margin: 0;
  padding: 0;
}
img {
    display: block;
    margin: 0 auto;
    height: auto;
    border-radius: 10px;
    width: 60%;
    padding-right: 7px;
}
 @media (max-width: 768px) 
 {.news-item img {display: block; text-decoration: none;  outline: none; border: none !important;width:100%; border-radius: 10px;} }

.blog-article { padding-top: 26px;}

/* === КОНТЕЙНЕР === */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


/* === ЦВЕТОВАЯ ПАЛИТРА === */
:root {
  --pink: #e91e63;
  --pink-light: #fce4ec;
  --gray-100: #f9fafb;
  --gray-200: #f3f4f6;
  --gray-300: #e5e7eb;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --white: #ffffff;
}

/* === ШАПКА === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  padding: 1rem 0;
  padding-left: 10px;
  padding-right: 10px;
 z-index: 1000;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
 /* font-size: 1.1rem;*/
  font-weight: 600;
  color: var(--gray-800);
}
.logo a  {color: var(--pink);  text-decoration: none;}
.logo-heart {
  color: var(--pink);
  margin-right: 0.5rem;
  font-size: 1.4rem;
}

/* === МЕНЮ === */
.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.7rem;
}
.main-nav a {
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--pink);
}
.main-nav a.active {
  font-weight: 600;
}

/* === БУРГЕР-МЕНЮ === */
.hamburger-menu {
  display: none; /* Скрыт на десктопе */
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger-menu span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* === НОВОСТНОЙ БАННЕР === */
.news-banner {
  background-color: var(--pink);
  color: var(--white);
  padding: 0.75rem 0;
}
.news-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.news-date {font-weight: 300;}
.news-desc {
  margin: 0;
  font-size: 0.95rem;
}
.news-banner a {
  background: var(--white);
  color: var(--pink);
  text-decoration: none;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
}

/* === ГЕРОЙ === */
.hero-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 5rem 0;
}
.hero-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--gray-800);
}
.hero-text h1 .highlight {
  color: var(--pink);
}
.hero-text p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
}
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  transition: all 0.3s;
  text-align: center;
}
.btn-primary {
  background-color: var(--pink);
  color: var(--white);
}
.btn-primary:hover {
  background-color: #d81b60;
}
.btn-outline {
  border: 2px solid var(--pink);
  color: var(--pink);
}
.btn-outline:hover {
  background-color: var(--pink-light);
}

/* === ИЗОБРАЖЕНИЕ В ГЕРОЕ === */
.hero-image {
  position: relative;
  max-width: 400px;
}
.hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.hero-info-card {z-index: 0;
 /* position: absolute;*/
  bottom: -20px;
  left: -20px;
  background: var(--white);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--pink);
}
.info-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}
.info-value {
  font-weight: 600;
  margin: 0;
}
.news-item {text-align:left;
letter-spacing: -0.9px;
 
 border-bottom: 1px solid var(--pink);
 padding:10px 0 10px 0;
}
.news-item a {color: var(--pink);font-size: 1.2em;
    text-decoration: none;}
.news-item p {font-weight: 400; font-size: 1.25rem;line-height: 26px;}
.more  {font-size: 0.9em !important;}
/* === СТИЛИ ЗАГОЛОВКОВ СЕКЦИЙ === */
.section-title {
  text-align: center;
  margin-bottom: 4rem; /* = mb-16 в Tailwind */
}
.section-title2 {
    margin-bottom: 4rem; 
}
.section-title h2 {
  font-size: 2.25rem; /* = text-3xl */
  font-weight: 700;   /* = font-bold */
  color: var(--gray-800);
  margin-bottom: 1rem; /* = mb-4 */
}
.section-divider {
  width: 80px;        /* = w-20 (20 * 4px = 80px) */
  height: 4px;        /* = h-1 (1 * 4px = 4px) */
  background-color: var(--pink);
  margin: 0 auto;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 1.875rem; /* ~30px */
  }
}

/* === АДАПТИВ ДЛЯ МОБИЛЬНЫХ === */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .news-content {
    flex-direction: column;
    text-align: center;
  }

  /* Показываем бургер на мобильных */
  .hamburger-menu {
    display: flex;
  }

  /* Скрываем обычное меню */
  .main-nav ul {
    display: none;
  }

  /* Показываем меню при открытии */
  body.mobile-nav-open .main-nav ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: white;
    padding: 4rem 1.5rem;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1); 
    z-index: 99999;
  }

  /* Анимация бургер → крестик */
  body.mobile-nav-open .hamburger-menu span:nth-child(1) {z-index: 99999;
    transform: rotate(45deg) translate(6px, 6px);
  }
  body.mobile-nav-open .hamburger-menu span:nth-child(2) {z-index: 99999;
    opacity: 0;
  }
  body.mobile-nav-open .hamburger-menu span:nth-child(3) {z-index: 99999;
    transform: rotate(-45deg) translate(6px, -6px);
  }
}




/* === АТМОСФЕРА САЛОНА === */
.atmosphere-section {
  padding: 5rem 0;
  background-color: var(--white);
}
.atmosphere-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}
.atmosphere-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1rem 0 0.75rem;
  color: var(--gray-800);
}
.atmosphere-item p {
  font-size: 1rem;
  color: var(--gray-600);
  margin: 0;
}

/* === НАШ БЛОГ === */

.blog-section {
  padding: 2rem 0;
  background-color: var(--gray-300);
  
}

img {
    display: block;
    margin: 0 auto;
    height: auto;
    border-radius: 10px;
    width: 60%;
    padding-right: 7px;
}
 @media (max-width: 768px) 
 {.news-item img {display: block; text-decoration: none;  outline: none; border: none !important;width:100%;} }

/* === НАШИ УСЛУГИ === */
.services-section {
  padding: 5rem 0;
  background-color: var(--gray-100);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}





.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.service-content {
  padding: 1.5rem;
}
.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

h3 {font-size: 1.6rem;line-height: 24px;}
.service-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0;
}
/*.service-duration {
  background: var(--pink-light);
  color: var(--pink);
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
}*/

.service-duration {
  display: inline-flex;        /* или flex, если блок */
  align-items: center;         /* вертикальное центрирование */
  justify-content: center;     /* горизонтальное центрирование */
  background: var(--pink-light);
  color: var(--pink);
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 1.1rem;          /* управляем размером текста */
  font-weight: 700;
  line-height: 1;              /* устранение дополнительных отступов */
  text-align: center;
}

.service-content p {
  font-size: 1rem;
  color: var(--gray-600);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}
.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
}
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}


/* Laser Epilation Section */
.laser-section {
    padding: 64px 0;
    background: linear-gradient(90deg, #5b21b6, #db2777);
    color: white;
}

.laser-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.laser-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.laser-tab {
    padding: 8px 24px;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.laser-tab.active,
.laser-tab:hover {
    background: white;
    color: #db2777;
}

.laser-content {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
}

.laser-content.active {
    display: block;
}

.laser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.laser-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.laser-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.laser-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1.125rem;
}

.laser-list li span {
    flex: 1;
}

.laser-list li strong {
    background: #db2777;
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 700;
}

.btn-wide {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 24px auto 0;
    padding: 16px;
    font-size: 1.125rem;
    font-weight: 700;
    background: white;
    color: #db2777;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-wide:hover {
    background: #f3f4f6;
}

/* Mobile */
@media (max-width: 768px) {
    .laser-grid {
        grid-template-columns: 1fr;
    }

    .laser-header h2 {
        font-size: 1.875rem;
    }

    .laser-tabs {
        flex-direction: column;
        align-items: center;
    }
}

/* === КОНТАКТНАЯ СЕКЦИЯ === */
#contact {
  background-color: var(--white);
  padding: 5rem 0;
}

#contact .section-title {
  text-align: left;
  margin-bottom: 2.5rem;
}

#contact .section-title .section-divider {
  margin-left: 0;
  margin-right: auto;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon1 {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-text h4 {
  font-weight: 600;
  color: var(--gray-800);
  margin: 0 0 0.375rem;
  font-size: 1.125rem;
}
.contact-text1 h4 {
  font-weight: 600;
  color: var(--gray-200);
  margin: 0 0 0.375rem;
  font-size: 1.125rem;
}

.contact-text p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Форма записи */
.contact-form {
  background-color: var(--gray-200);
  padding: 2rem;
  border-radius: 12px;
}

.contact-form h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  background-color: white;
}

.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.contact-form .btn {
  margin-top: 1rem;
}

/* === ФУТЕР === */
.site-footer {
  background-color: var(--gray-800);
  color: white;
  padding: 3rem 0 2rem;
}

.site-footer a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer a:hover {color: white;}

.footer-bottom {
  max-width: 1280px;
  margin: 2rem auto 0;
  padding: 0 1.5rem;
  border-top: 1px solid #374151;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
  #contact .md\:flex {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-form {padding: 1.5rem;}

  .site-footer > .container > div {
    flex-direction: column; align-items: flex-start;}

  .site-footer .logo {margin-bottom: 1.5rem;}
}

.footer-social {
  /*display: flex;*/
  gap: 0.1rem;
  margin-top: 0.5rem;
}
.footer-social img {width:90%;}

.footer-social a {text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.2s;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.heart::after {content: "\2764\FE0F";  color: red;  font-size: 14px;}

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    transform: translateX(200%);
    transition: transform 0.3s ease;
    max-width: 320px;
}
.toast.show {transform: translateX(0);}
.toast.success {background-color: #10b981;}
.toast.error {background-color: #ef4444;}/* Кнопка "Записаться" */
.booking-btn {
  background-color: #e91e63; /* pink-500 */
  color: white;
  padding: 0.7rem 2rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.booking-btn:hover {background-color: #d81b60;}

/* Попап */
#bookingModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#bookingModal.show {display: flex;}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
}

.modal-content h3 {margin-top: 0;color: #1f2937;}
.modal-content label {display: block;margin: 0.75rem 0 0.25rem;color: #4b5563;font-weight: 500;}

.modal-content input,
.modal-content select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: inherit;
}

.modal-content button[type="submit"] {
  background-color: #e91e63;
  color: white;
  padding: 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  width: 100%;
  cursor: pointer;
  margin-top: 1rem;
}

.modal-content button[type="submit"]:hover {background-color: #d81b60;}

.modal-content button.close {
  background: none;
  border: none;
  color: #6b7280;
  margin-top: 0.5rem;
  cursor: pointer;
}

/* Уведомление */
#toast {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 16px 24px;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 9999;
  transform: translateX(200%);
  transition: transform 0.3s ease;
  max-width: 320px;
}

#toast.show {transform: translateX(0);}

#toast.success {background-color: #10b981;}

#toast.error {background-color: #ef4444;}
.header--icon{margin-top:-3px}



