/* Общи стилове */
body {
  font-family: Arial, Helvetica, sans-serif;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #fff;
}

h1, h2 {
  font-weight: bold;
  margin-bottom: 1rem;
}

section {
  padding: 4rem 1rem;
}

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

/* Hero секция */
.hero {
  background: #1f2937; /* тъмно сиво */
  color: #fff;
  text-align: center;
  padding: 5rem 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

/* Бутон */
.btn {
  display: inline-block;
  background: #dc2626; /* червен */
  color: #fff;
  font-weight: bold;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn:hover {
  background: #b91c1c;
}

/* Предимства */
.advantages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.adv-box {
  background: #dc2626;
  color: #fff;
  font-weight: bold;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (min-width: 600px) {
  .advantages {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .advantages {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Галерия */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

@media (min-width: 600px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Карта */
.map-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 56.25%; /* 16:9 */
}

.map-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.slider-container {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  display: none;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  border-radius: 0.5rem;
}

/* Стрелки */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 0.3rem;
  user-select: none;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
  background: rgba(220,38,38,0.8);
}
/* Основен стил за навигацията */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(226, 226, 226, 0.95);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Лого + текст */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #000;
  font-weight: bold;
  white-space: nowrap;
}

.site-logo {
  height: clamp(40px, 8vw, 70px); /* респонсив височина */
  width: auto;
}

.logo-text {
  font-size: clamp(1rem, 4vw, 2.2rem); /* респонсив текст */
  line-height: 1;
  display: flex;
  align-items: center;
}

/* Меню */
.menu {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.menu li a {
  display: inline-block;
  background: #dc2626;
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.3rem;
  border-radius: 30px;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
}

.menu li a:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

/* Хамбургер бутон */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

/* Мобилен изглед */
@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #111;
    flex-direction: column;
    width: 220px;
    padding: 1rem;
    border-radius: 0 0 0 10px;
  }

  .menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* Футър */
.site-footer {
  background: #3f3f3f;
  color: #eee;
  padding: 1.5rem 1rem;
  margin-top: 3rem;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-social {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.footer-social a {
  background: #dc2626;
  color: #fff;
  text-decoration: none;
  padding: 0.35rem 0.9rem;   /* по-малки бутони */
  border-radius: 20px;
  font-size: 0.8rem;        /* по-малък текст */
  transition: background 0.3s, transform 0.2s;
}

.footer-social a:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

.footer-copy {
  font-size: 0.75rem;       /* по-малък шрифт */
  line-height: 1.3;
  color: #bbb;
}
.contacts-section {
  padding: 8rem 1.5rem 3rem;
  background: #f9f9f9;
}

.contacts-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contacts-info .btn {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.contacts-info p {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  color: #333;
}

.contacts-text {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #111;
}

@media (max-width: 768px) {
  .contacts-container {
    grid-template-columns: 1fr;
  }
}
/* Галерия */
.gallery-section {
  padding: 8rem 1.5rem 0.1rem;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -20px;
  padding: 16px;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  user-select: none;
  transition: 0.3s;
}

.prev:hover, .next:hover {
  color: #dc2626;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}
.about-section {
  background: #f9f9f9;
  padding: 3rem 1.5rem;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #111;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.about-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-services li {
  font-size: 1.05rem;
  color: #111;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Отзивчивост */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
  }
}

.reviews-section {
  padding: 4rem 1.5rem;
  background: #f9f9f9;
}

.reviews-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* СТИЛ НА КАРТИЧКАТА */
.review-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 2rem;
  border: 1px solid #e5e5e5;
  box-shadow:
    0 3px 8px rgba(0,0,0,0.08),
    0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}

/* Ефект при ховър */
.review-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 6px 14px rgba(0,0,0,0.12),
    0 10px 25px rgba(0,0,0,0.09);
}

/* Текст */
.review-text {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Автор */
.review-author {
  font-weight: bold;
  color: #dc2626;
  text-align: right;
  font-size: 1.1rem;
}

/* Без хоризонтално скролване */
.review-card, .reviews-grid, .reviews-section {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .review-text {
    font-size: 1rem;
  }
  .review-card {
    padding: 1.5rem;
  }
}
