/* Основни стилове */
body {
  font-family: 'Arial', sans-serif;
  background-color: #fff;
  color: #111;
  margin: 0;
  padding: 0;
}

a {
  color: #111;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Навигация */
header {
  position: sticky;
  top: 0;
  background-color: #111;
  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  padding: 10px 20px;
}

.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0 auto; /* центрира UL-то */
}

.nav-links li a {
  color: #eee;
  font-weight: bold;
}

/* ===== DROPDOWN MENU (оптимизирано) ===== */

/* Родителят трябва да има позиция за абсолютното позициониране */
.nav-links li.dropdown {
  position: relative;
}

/* Скритото меню */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;         /* пада точно под линка */
  left: 50%;         /* центрираме по хоризонтала */
  transform: translateX(-50%); /* изместваме за да е точно под текста */
  background-color: #111;
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  padding: 10px 0;
  z-index: 999;
  text-align: left;
}

/* Показване при hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Вътрешни линкове */
.dropdown-menu li {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-menu li a:hover {
  background-color: #e63946;
  color: #fff;
}




/* Hero секция */
/* Фонова секция */
.hero {
  position: relative;
  min-height: 105vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* 🎥 Видео фон */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2; /* най-отзад */
}


/* лек тъмен слой */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

/* Контейнер за съдържанието */
.hero-overlay {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Център */
.hero-center {
  position: sticky;
  text-align: center;
  color:#111;
  flex: 1 1 500px;
   padding-top: 0;
  margin-top: -350px;
}
.hero-title {
  max-width: 900px; /* регулирай според нуждите */
  width: 100%;
  height: auto;
  display: block;
}

.hero-sub {
  font-size: 44px;
  margin: -90px 0 5dvh;
}

/* Промо вдясно */
.hero-promo {
  flex: 1 1 300px;
  background: rgba(0,0,0,0.60s);
  padding: 40px 60px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 25px rgba(255,0,0,0.4);
}
.promo-top {
  font-size: 36px;
  font-weight: 700;
  color: #ff0000;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.promo-bottom {
  font-size: 72px;
  font-weight: 900;
  color:#111;
  line-height: 1;
}

/* Респонсив */
@media (max-width: 768px) {
  .hero-overlay {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
}

/* Контейнерът на кръга */
.promo-circle {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 5;
}

/* Въртящ се текст */
.circle-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 12s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}
.circle-text span {
  position: absolute;
  width: 100%;
  text-align: center;
  transform-origin: center;
  color: #ff0000;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 16px;
}

/* заобикаляме текста по кръг */
.circle-text span:nth-child(1) { transform: rotate(0deg)   translate(90px) rotate(0deg); }
.circle-text span:nth-child(2) { transform: rotate(90deg)  translate(90px) rotate(-90deg); }
.circle-text span:nth-child(3) { transform: rotate(180deg) translate(90px) rotate(-180deg); }
.circle-text span:nth-child(4) { transform: rotate(270deg) translate(90px) rotate(-270deg); }

/* Централен бутон */
.circle-btn {
  position: relative;
  background: #ff0000;
  color: #111;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.3s;
  z-index: 2;
}
.circle-btn:hover {
  background: #cc0000;
}

/* Анимация за въртене */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}





.btn {
  background-color: #ff0000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #cc0000;
}

/* Услуги */
.services {
  padding: 60px 20px;
  text-align: center;
}

.service-boxes {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  color: #fff;
}

.service {
  background-image: url('ogo_za_box.png');
   background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 25px;              /* малко повече вътрешно разстояние */
  border-radius: 15px;
  width: 350px;               /* по-широка кутия */
  height: 400px;              /* по-висока кутия */
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.services h2 {
  font-size: 60px;
  margin-bottom: 30px;
  color: #222;
}

.service h3 {
  margin-top: 0;
  font-size: 2em; /* увеличава размера на заглавието */
  color: #ffffff;   /* червен цвят */
  font-weight: bold;
  letter-spacing: 1px;
}

.service p {
  flex-grow: 5; /* за да може текста да се разтяга и центрира */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-size: 1.3em; /* увеличен размер на текста */
  line-height: 1.5; /* по-добра четимост */
 
}

.service-btn {
  background: #ffffff;
  color: #000000;
  border: none;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  font-size: 1.5em;
}

.service-btn:hover {
  background: #c82333;
  transform: translateY(-2px);
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}







.footer {
  background-color: #111;
  color: #eee;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between; /* всички колони на един ред */
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap; /* за мобилни устройства */
}

.footer-box {
  flex: 1 1 200px; /* всички колони гъвкави и еднакви */
  min-width: 190px;
}

.footer-box h3 {
  color: #ff0000;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-box p,
.footer-box ul {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 6px;
}

.footer-box ul li a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-box ul li a:hover {
  color: #ff0000;
}

/* Партньори - вертикално подредени логота */
.footer-partners {
  display: flex;
  flex-direction: column; /* едно под друго */
  gap: 40px;
}

.footer-partners a {
  display: block;
  width: 70%;
  height: 50px;
  background: #fff;
  padding: 5px;
  border-radius: 5px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.footer-partners a:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.footer-partners img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 13px;
}
.partners-logos {
  display: flex;
  flex-direction: column; /* вертикално подредени */
  gap: 10px; /* разстояние между кутиите */
  align-items: flex-start; /* или center, ако искаш кутиите центрирани */
}

.partners-logos a {
  display: block;
  width: 220px;   /* намалена ширина */
  height: 40px;   /* намалена височина */
  background: #fff;
  padding: 3px;   /* по-малко вътрешно разстояние */
  border-radius: 5px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.partners-logos a:hover {
  transform: scale(1.05);
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.partners-logos img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Социални мрежи — малки квадратчета */
/* Контейнерът остава вертикален */
.social-logos {
  display: flex;
  flex-direction: column;
  gap: px;
}

/* Само логото — кликваемо */
.social-logos a {
  display: inline-block;
  width: fit-content; 
  height: fit-content;
}

/* Контролираш размера на самата иконка */
.social-logos img {
  width: 70px;    /* ширина на иконата */
  height: 70px;   /* височина на иконата */
  object-fit: contain;
  transition: transform 0.25s ease;
}

.social-logos img:hover {
  transform: scale(1.12);
}






/* Бутон обаждане */
.call-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #ff0000;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 1000;
}

.call-btn:hover {
  background-color: #cc0000;
}

/* галерия */
.gallery {
  padding: 60px 20px;
  background-color: #fff;
  color: #eee;
  text-align: center;
}

.gallery h2 {
  font-size: 60px;
  margin-bottom: 30px;
  color:#222;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.gallery-grid img {
  background: #111;
  width: 400px;             /* зададена ширина */
  height: 500px;            /* зададена височина */
  text-align: center;
  box-shadow: 0 4px 12px rgba(167, 13, 13, 0.3);
  transition: all 0.3s ease;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.5);
}

.modal-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow: auto;
}

.modal-content {
  background-color: #111;
  padding: 40px;
  border-radius: 12px;
  max-width: 90%;
  text-align: center;
  color: #eee;
  box-shadow: 0 4px 20px rgba(255,0,0,0.5);
}

.modal-content h2 {
  color: #ff0000;
  margin-bottom: 30px;
}

.modal-content .gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.modal-content .gallery-grid img {
  width: 250px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.modal-content .gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(255,0,0,0.5);
}

.btn.closeModal {
  margin-top: 20px;
  background-color: #ff0000;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn.closeModal:hover {
  background-color: #cc0000;
}
/* Swiper контейнер вътре в модала */
/* Swiper контейнер в модалите */
.swiper {
  width: 90%;
  max-width: 800px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  width: 300px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(255,0,0,0.4);
  transition: transform 0.3s;
}

.swiper-slide img:hover {
  transform: scale(1.05);
}






/* Модал за резервации */
/* Модал за резервации */
.reservation {
  display: none; /* скрита по подразбиране */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9); /* полупрозрачен черен фон */
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.reservation-content {
  background-color: #111; /* черно като сайта */
  padding: 40px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  color: #eee;
  box-shadow: 0 4px 20px rgba(255,0,0,0.5); /* червена сянка за акцент */
}

.reservation-content h2 {
  color: #ff0000;
  margin-bottom: 30px;
  font-size: 32px;
}

.reservation input,
.reservation textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ff0000;
  background-color: #222;
  color: #eee;
  font-size: 16px;
}

.reservation input:focus,
.reservation textarea:focus {
  outline: none;
  border-color: #cc0000;
}

.reservation button.btn {
  margin-top: 10px;
  background-color: #ff0000;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.reservation button.btn:hover {
  background-color: #cc0000;
}

.close-btn {
  margin-top: 15px;
  background-color: #222;
  border: 1px solid #ff0000;
}

.close-btn:hover {
  background-color: #fff;
  border-color: #cc0000;
}



.video-hero {
  position: relative;
  width: 100%;
  height: 110vh;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Тук добавяме позициониране и z-index за текста */
.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
}

.video-overlay h1 {
  font-size: 4rem;
  margin: 0 0 20px;
  letter-spacing: 2px;
}

.video-overlay p {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 300;
}

/* Отзивчивост за мобилни */
@media (max-width: 768px) {
  .video-overlay h1 {
    font-size: 2.5rem;
  }

  .video-overlay p {
    font-size: 1.1rem;
  }
}













