/* Скидання стилів */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans KR", sans-serif;
}

/* Контейнер */
.container-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Хедер */
.site-header {
  background-color: #1e1e1e;
  color: #fff;
}

/* Логотип */
.logo a {
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

/* Навігація */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.main-nav a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #f39c12;
}

/* Контактний блок */
.contact-block {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-block .phone {
  font-size: 16px;
}

.contact-block .btn-online {
  padding: 8px 16px;
  background-color: #f39c12;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.contact-block .btn-online:hover {
  background-color: #e67e22;
}

/* Адаптив */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 15px;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 10px;
  }
  .container-logo {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  background: url("images/hero-bg.webp") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* затемнення для контрасту тексту */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 800px;
}

.hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: bold;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Кнопки CTA */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  padding: 12px 25px;
  background-color: #f39c12;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #e67e22;
}

.btn-secondary {
  padding: 12px 25px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

/* Адаптив для мобільних */
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

/* Services Section */
.services {
  padding: 80px 20px;
  background-color: #f8f8f8;
  color: #333;
  text-align: center;
}

.services .section-title {
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: bold;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.service-item {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-item img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.service-link {
  text-decoration: none;
  color: #f39c12;
  font-weight: bold;
  transition: color 0.3s;
}

.service-link:hover {
  color: #e67e22;
}

/* Адаптив */
@media (max-width: 768px) {
  .services .section-title {
    font-size: 28px;
  }
}

/* Advantages Section */
.advantages {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
  color: #333;
}

.advantages .section-title {
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: bold;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  justify-items: center;
}

.advantage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s;
}

.advantage-item:hover {
  transform: translateY(-5px);
}

.advantage-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.advantage-item h3 {
  font-size: 18px;
  font-weight: bold;
}

/* Адаптив */
@media (max-width: 768px) {
  .advantages .section-title {
    font-size: 28px;
  }
  .advantages-grid {
    gap: 30px;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 80px 20px;
  background-color: #f8f8f8;
  text-align: center;
  color: #333;
}

.testimonials .section-title {
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: bold;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.testimonial-item {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-item p {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.stars {
  color: #f39c12;
  font-size: 16px;
}

/* Адаптив */
@media (max-width: 768px) {
  .testimonials .section-title {
    font-size: 28px;
  }
  .testimonial-item {
    text-align: center;
  }
  .testimonial-info {
    flex-direction: column;
    gap: 10px;
  }
}

/* Booking Section */
.booking {
  padding: 80px 20px;
  background-color: #fff;
  color: #333;
  text-align: center;
}

.booking .section-title {
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: bold;
}

.booking-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group select {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #f39c12;
}

.booking-form .btn-primary {
  padding: 12px 25px;
  background-color: #f39c12;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.booking-form .btn-primary:hover {
  background-color: #e67e22;
}

.form-confirmation {
  margin-top: 15px;
  font-size: 16px;
  color: green;
  display: none;
}

/* Показати повідомлення після валідного відправлення форми (без JS) */
.booking-form:valid .form-confirmation {
  display: block;
}

/* Адаптив */
@media (max-width: 768px) {
  .booking .section-title {
    font-size: 28px;
  }
}
/* Footer Section */
.site-footer {
  background-color: #1e1e1e;
  color: #fff;
  padding: 50px 20px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-contacts h4,
.footer-links h4,
.footer-social h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-contacts p {
  margin-bottom: 5px;
  font-size: 14px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #f39c12;
}

.footer-social .social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #f39c12;
}

.footer-map iframe {
  border-radius: 8px;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding-top: 15px;
  font-size: 14px;
}

/* Адаптив */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .footer-map iframe {
    height: 180px;
  }
}

/* Privacy Policy Section */
.privacy-policy {
  padding: 80px 20px;
  background-color: #f8f8f8;
  color: #333;
}

.privacy-policy h1 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.privacy-policy h2 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #f39c12;
}

.privacy-policy p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.privacy-policy ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.privacy-policy ul li {
  margin-bottom: 8px;
  font-size: 16px;
}

.privacy-policy .container {
  max-width: 900px;
  margin: 0 auto;
}
/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  border-radius: 8px;
  padding: 15px 20px;
  gap: 15px;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, opacity 0.3s;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
}

.cookie-banner a {
  color: #f39c12;
  text-decoration: underline;
}

.cookie-btn {
  padding: 8px 15px;
  background-color: #f39c12;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cookie-btn:hover {
  background-color: #e67e22;
}

.cookie-checkbox {
  display: none;
}

/* При активному чекбоксі приховуємо банер */
.cookie-checkbox:checked + .cookie-content {
  transform: translateY(120%);
  opacity: 0;
}
.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* About Us Section */
.about-us {
  padding: 80px 20px;
  background-color: #f8f8f8;
  color: #333;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #f39c12;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Адаптив */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-text h2 {
    font-size: 28px;
  }
}
