/* CITIES HERO */

.cities-hero {
  padding-top: 160px;
  padding-bottom: 80px;
  text-align: center;
}

.cities-hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin: 20px 0;
}

.cities-hero-content h1 span {
  color: #11b7c3;
}

.cities-hero-content p {
  color: #5b6977;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* TABS */

.cities-section {
  padding-bottom: 120px;
}

.city-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.city-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 16px;
  border: 1px solid #edf2f5;
  background: white;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #52606d;
  cursor: pointer;
  transition: 0.3s;
}

.city-tab:hover {
  border-color: #11b7c3;
  color: #11b7c3;
}

.city-tab.active {
  background: #11b7c3;
  color: white;
  border-color: #11b7c3;
}

.tab-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.tab-badge.available {
  background: rgba(255,255,255,0.25);
  color: white;
}

.city-tab:not(.active) .tab-badge.available {
  background: #ebfbfd;
  color: #11b7c3;
}

.tab-badge.soon {
  background: #fff3e0;
  color: #e07b00;
}

.city-tab.active .tab-badge.soon {
  background: rgba(255,255,255,0.2);
  color: white;
}

/* PANELS */

.city-panel {
  display: none;
}

.city-panel.active {
  display: block;
}

/* OVERVIEW */

.city-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 70px;
  align-items: start;
}

.city-main-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.city-main-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.city-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: white;
}

.city-overlay h2 {
  font-size: 2rem;
  margin-bottom: 4px;
}

.city-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.city-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.city-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border: 1px solid #edf2f5;
  border-radius: 18px;
  padding: 18px 22px;
  transition: 0.3s;
}

.city-stat:hover {
  border-color: #11b7c3;
}

.stat-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.city-stat h4 {
  font-size: 0.85rem;
  color: #8fa0b2;
  margin-bottom: 3px;
  font-weight: 500;
}

.city-stat p {
  font-weight: 600;
  font-size: 0.95rem;
  color: #0d1b2a;
  margin: 0;
}

/* ABOUT */

.city-about {
  background: #f7fafb;
  border-radius: 28px;
  padding: 50px;
  margin-bottom: 70px;
}

.city-about h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.city-about-text p {
  color: #5b6977;
  line-height: 1.9;
  margin-bottom: 16px;
}

.city-about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.city-about-tags span {
  background: white;
  border: 1px solid #edf2f5;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #0d1b2a;
}

/* PHOTOS */

.city-photos {
  margin-bottom: 70px;
}

.city-photos h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 16px;
}

.photo-card {
  border-radius: 20px;
  overflow: hidden;
}

.photo-card.tall {
  grid-row: span 2;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.photo-card:hover img {
  transform: scale(1.04);
}

/* ACTIVITIES */

.city-activities {
  margin-bottom: 70px;
}

.city-activities h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.activity-card {
  background: white;
  border: 1px solid #edf2f5;
  border-radius: 24px;
  padding: 32px;
  transition: 0.3s;
}

.activity-card:hover {
  border-color: #11b7c3;
  transform: translateY(-3px);
}

.activity-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.activity-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.activity-card p {
  color: #5b6977;
  line-height: 1.7;
  font-size: 0.92rem;
}

/* CTA */

.city-cta {
  text-align: center;
  background: #ebfbfd;
  border-radius: 28px;
  padding: 60px 40px;
}

.city-cta h3 {
  font-size: 2rem;
  margin-bottom: 14px;
  color: #0d1b2a;
}

.city-cta p {
  color: #5b6977;
  margin-bottom: 30px;
  font-size: 1rem;
}

/* COMING SOON */

.coming-soon-panel {
  text-align: center;
  padding: 100px 40px;
  max-width: 620px;
  margin: 0 auto;
}

.coming-soon-icon {
  font-size: 5rem;
  margin-bottom: 30px;
}

.coming-soon-panel h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.coming-soon-panel p {
  color: #5b6977;
  line-height: 1.8;
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.coming-soon-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.coming-soon-tags span {
  background: #f7fafb;
  border: 1px solid #edf2f5;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* NAV ACTIVE */

.nav-active {
  color: #11b7c3 !important;
}

/* DARK MODE */

body.dark-mode .city-tab {
  background: #111c2a;
  border-color: #1d2b3b;
  color: #dce5ec;
}

body.dark-mode .city-tab.active {
  background: #11b7c3;
  color: white;
}

body.dark-mode .city-stat {
  background: #111c2a;
  border-color: #1d2b3b;
}

body.dark-mode .city-stat p {
  color: white;
}

body.dark-mode .city-about {
  background: #0d1724;
}

body.dark-mode .city-about-tags span,
body.dark-mode .coming-soon-tags span {
  background: #111c2a;
  border-color: #1d2b3b;
  color: #dce5ec;
}

body.dark-mode .activity-card {
  background: #111c2a;
  border-color: #1d2b3b;
}

body.dark-mode .city-cta {
  background: #0d1724;
}

body.dark-mode .city-cta h3 {
  color: white;
}

/* MOBILE */

@media (max-width: 950px) {

  .cities-hero-content h1 {
    font-size: 2.6rem;
  }

  .city-overview {
    grid-template-columns: 1fr;
  }

  .photos-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .photo-card.tall {
    grid-row: span 1;
  }

  .city-about {
    padding: 30px;
  }

}