.city-section {
  display: flex;
  gap: 40px;
  padding: 60px 5%;
  color: #fff;
  background: #000;
  flex-wrap: wrap;
}

.city-left {
  flex: 1;
  /*min-width: 350px;*/
}

.city-block {
  margin-bottom: 40px;
}

.city-block img.city-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  /*filter: grayscale(100%);*/
  transition: filter 0.4s ease;
}

.city-block img.city-image:hover {
  filter: grayscale(0%);
}

.city-block h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 10px 0;
  color: #fff;
}

.city-block p {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
}

/* Right side */

.city-right {
  flex: 1;
  /*min-width: 400px;*/
}

.video-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.video-card img.video-thumb {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.video-card:hover img.video-thumb {
  transform: scale(1.05);
}

.video-overlay {
  position: relative;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: white;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.video-overlay:hover .play-btn {
  opacity: 1;
}

.video-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

/* Photo Grid */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}

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

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

.more-photos {
  display: flex;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 0;
  text-decoration: none;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}

.more-photos:hover {
  background: rgba(255,255,255,0.3);
}

/* Responsive Design */

@media (max-width: 992px) {
  .city-section {
    flex-direction: column;
  }
}

@media (max-width: 992px) {
  .city-right {
    margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .city-block h2 {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .city-block p {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .video-text {
    font-size: 14px;
  }
}

/* Slider container */

.city-slider {
  position: relative;
  overflow: hidden;
}

/* Slide track (holds all blocks in one row) */

.city-slide-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Each slide */

.city-block {
  min-width: 100%;
  box-sizing: border-box;
}

/* Navigation buttons */

.city-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.city-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.city-btn.prev {
  left: 10px;
}

.city-btn.next {
  right: 10px;
}

/* Lightbox Overlay */

#lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

