/* ===== ОСНОВНОЙ СТИЛЬ САЙТА ПЕРФИЛЬЕВОЙ ОЛЬГИ ===== */

/* Цветовая палитра */
:root {
  --pink: #e6b3c7;
  --rose: #f7cad0;
  --light-pink: #fdf1f5;
  --text-dark: #3a3a3a;
  --text-gray: #666;
}

/* Общие настройки */
body {
  font-family: "Nunito", "Arial", sans-serif;
  color: var(--text-dark);
  background-color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.text-pink {
  color: var(--pink);
}

/* Навигация */
.navbar {
  background-color: #fff !important;
}

.navbar a {
  color: var(--text-dark) !important;
  transition: 0.3s;
}

.navbar a:hover {
  color: var(--pink) !important;
}

/* Hero */
.hero-section {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.hero-section p {
  color: #fff;
}

/* Блок о мастере */
.about-section img {
  border: 4px solid var(--rose);
  transition: transform 0.3s;
}

.about-section img:hover {
  transform: scale(1.03);
}

/* Работы */
.bg-light {
  background-color: var(--light-pink) !important;
}

img.rounded.shadow {
  transition: transform 0.3s, box-shadow 0.3s;
}

img.rounded.shadow:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(230, 179, 199, 0.5);
}

/* Форма */
form {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

form label {
  font-weight: 600;
}

form button {
  background-color: var(--pink);
  border: none;
  transition: 0.3s;
}

form button:hover {
  background-color: var(--rose);
}

/* Контакты */
.contact-section {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 80vh;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

/* Страница "Спасибо" */
.thankyou-section {
  position: relative;
}

.thankyou-section .bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.thankyou-section .container {
  z-index: 2;
}

.btn-primary {
  background-color: var(--pink);
  border: none;
}

.btn-primary:hover {
  background-color: var(--rose);
}

/* Подвал */
footer {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .hero-section {
    height: 80vh;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .about-section img {
    width: 90%;
  }
}
