/* ===== Общи стилове ===== */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #222;
}

/* Навигация */
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;
}


/* ===== Секция "Where to find us" ===== */
.find-us {
  padding: 90px 50px;
  text-align: center;
  background-color: #fff;
}

.find-us h2 {
  font-size: 60px;
  margin-bottom: 40px;
}

.find-us .line {
  width: 100px;
  height: 4px;
  background: #e63946;
  margin: 15px auto 25px;
  border-radius: 2px;
}

.find-us .subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 100px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.main-btn {
  display: inline-block;
  background: #000000;
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.main-btn:hover {
  background: #000000;
  transform: translateY(-2px);
}

/* ===== Информационни кутии ===== */
.info-boxes {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap; /* 🔥 забранява пренасянето на нов ред */
  gap: 25px;
  margin-top: 60px;
  max-width: 1400px;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.info-box {
  background: #f7f7f7;
  border-radius: 15px;
  padding: 40px 25px;
  flex: 1;
  min-width: 280px;
  height: 100%;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.info-box:hover {
  transform: translateY(-10px); /* 🔥 вдига кутията нагоре */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25); /* 🔥 по-силна сянка */
  background: #ffffff; /* малко по-ярък фон при hover */
}
.info-box:hover i {
  color: #e63946; /* червена иконка при hover */
  transform: scale(1.1);
  transition: color 0.3s ease, transform 0.3s ease;
}

.info-box i {
  font-size: 3.5em;
  color: #000;
  margin-top: 10px;  /* 🔼 иконата по-нагоре */
  margin-bottom: 15px;
}

.info-box h3 {
  font-size: 1.4em;
  color: #222;
  margin-bottom: 10px;
}

.info-box p {
  font-size: 1em;
  color: #555;
  margin-bottom: 40px; /* 🔽 текстът с повече отстояние от strong */
}

.info-box strong {
  color: #000;
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 10px; /* малко разстояние отдолу */
}


/* ===== Карта ===== */
.map-section {
  padding: 80px 40px;
  background: #fff;
  text-align: center;
}

.map-section h2 {
  font-size: 50px;
  color: #222;
  margin-bottom: 30px;
}

.map-container {
  max-width: 1200px;
  height: 500px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ===== Footer ===== */
footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 25px 0;
  font-size: 0.95em;
}

footer p {
  margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .find-us h2 {
    font-size: 40px;
  }

  .map-section h2 {
    font-size: 35px;
  }

  .info-boxes {
    flex-direction: column;
    align-items: center;
  }

  .info-box {
    width: 90%;
  }
}

.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);
}




