/* ===== Общи стилове ===== */
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;
}





.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);
}






.ski-zone {
  text-align: center;
  background: #fff;
  padding: 80px 0;
  color: #111;
}

.ski-zone h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.ski-zone p {
  max-width: 850px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: #444;
}

/* === Камери === */
.camera-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  justify-content: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px;
}

.camera-card {
  position: relative;
  width: 100%;
  height: 420px;

  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 100, 255, 0.1), rgba(0, 150, 255, 0.15));
  box-shadow: 0 10px 30px rgba(0, 100, 255, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.camera-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 150, 255, 0.35);
}

/* 📷 Камера (снимка/iframe) винаги пасва изцяло на кутията */
.camw {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ✅ показва цялата камера без да я реже */
  border: none;
  display: block;
  background-color: #000; /* лек фон, ако има черни полета */
  transition: transform 0.4s ease, filter 0.4s ease;
}

.camera-card:hover .camw {
  transform: scale(1.02);
  filter: brightness(1.05) contrast(1.1) saturate(1.1);
}



@media (max-width: 900px) {
  .camera-grid {
    grid-template-columns: 1fr;
  }
  .camera-card {
    height: 360px;
  }
}




/* ===== Ski Slopes Section ===== */
.ski-slopes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 100px 10%;
  background: #fff;
  color: #111;
}

.slopes-content {
  flex: 1;
}

.slopes-content h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #000;
}

.slopes-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #333;
  max-width: 500px;
}

.slopes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.slopes-list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 18px;
  line-height: 1.5;
  color: #222;
}

.slopes-list .color {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  margin-right: 12px;
  border: 1px solid #111;
}

/* 🎨 Цветове на пистите */
.slopes-list .green { background: #4CAF50; }
.slopes-list .blue { background: #2196F3; }
.slopes-list .red { background: #E53935; }
.slopes-list .black { background: #111; }
.slopes-list .orange { background: #FF9800; }   /* оранжево */
.slopes-list .yellow { background: #FFD600; } 
 

.slopes-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.slopes-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}

/* 📱 За телефони и таблети */
@media (max-width: 950px) {
  .ski-slopes {
    flex-direction: column;
    text-align: center;
  }

  .slopes-image img {
    max-width: 100%;
    margin-top: 30px;
  }

  .slopes-list li {
    justify-content: center;
  }
}

.lift-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 40px;
  font-family: "Poppins", sans-serif;
  color: #111;
  line-height: 1.6;
}

.lift-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 30px;

}



.lift-section .hours {
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.lift-section .intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #333;
}

.lift-content {
  display: flex;
  align-items: center; /* центрира вертикално текста спрямо снимката */
  gap: 40px;
  justify-content: space-between;
}
.lift-image {
  width: 45%;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.lift-text {
  width: 85%;
  font-size: 1rem;
  color: #222;
}

.only-text {
  max-width: 1500px;
  margin: 0 auto;
}

.lift-section.alt {
  padding-top: 60px;
  padding-bottom: 60px;
}














