/* City Page Styles */
.city-page {
  background: var(--light-bg, var(--light-bg));
  font-family: var(--font-body);
}

.city-hero {
  background: rgba(191, 166, 107, 0.15);
  color: var(--secondary-color, var(--secondary-color));
  padding: 5rem 0;
  text-align: center;
  position: relative;
}

.city-hero .container {
  max-width: 800px;
}

.city-hero h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-family: var(--font-title, "Playfair Display", serif);
  color: var(--secondary-color, var(--secondary-color));
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.city-hero .lead {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  opacity: 0.8;
  line-height: 1.6;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color, var(--text-primary));
}

.city-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(191, 166, 107, 0.1);
  border-radius: var(--radius, 12px);
  border: 1px solid rgba(191, 166, 107, 0.2);
  transition: all 0.3s ease;
  min-width: 140px;
}

.stat-item:hover {
  background: rgba(191, 166, 107, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(191, 166, 107, 0.15);
}

.stat-item .number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-color, var(--primary-color));
  margin-bottom: 0.5rem;
  font-family: var(--font-title, "Playfair Display", serif);
}

.stat-item .label {
  font-size: 0.95rem;
  color: var(--text-color, var(--text-primary));
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  opacity: 0.8;
}

.city-logements,
.city-activities {
  padding: 4rem 0;
  background: var(--bg-white, var(--bg-white)fff);
  border-bottom: 1px solid var(--light-border, var(--border-light));
}

.city-activities {
  background: var(--light-bg, var(--light-bg));
}

.city-logements h2,
.city-activities h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-family: var(--font-title, "Playfair Display", serif);
  color: var(--secondary-color, var(--secondary-color));
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.city-info {
  background: var(--bg-white, var(--bg-white)fff);
  padding: 5rem 0;
  border-top: 3px solid var(--primary-color, var(--primary-color));
}

.city-info h2 {
  color: var(--secondary-color, var(--secondary-color));
  margin-bottom: 2rem;
  font-family: var(--font-title, "Playfair Display", serif);
  font-size: 2.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.city-info p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-color, var(--text-primary));
  margin-bottom: 2rem;
}

.city-info ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
}

.city-info ul li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--light-border, var(--border-light));
  position: relative;
  padding-left: 2rem;
  color: var(--text-color, var(--text-primary));
  font-size: 1.1rem;
  line-height: 1.6;
}

.city-info ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color, var(--primary-color));
  font-weight: bold;
  font-size: 1.2rem;
}

.city-info ul li:last-child {
  border-bottom: none;
}

.city-highlights {
  background: var(--light-bg, var(--light-bg));
  padding: 2.5rem;
  border-radius: var(--radius, 12px);
  border-left: 4px solid var(--primary-color, var(--primary-color));
  margin-top: 2rem;
  box-shadow: 0 4px 20px rgba(191, 166, 107, 0.08);
  transition: all 0.3s ease;
}

.city-highlights:hover {
  box-shadow: 0 8px 32px rgba(191, 166, 107, 0.15);
  transform: translateY(-2px);
}

.city-highlights h3 {
  color: var(--secondary-color, var(--secondary-color));
  margin-bottom: 1.5rem;
  font-family: var(--font-title, "Playfair Display", serif);
  font-size: 1.5rem;
  font-weight: 600;
}

.city-highlights ul {
  list-style: none;
  padding: 0;
}

.city-highlights ul li {
  padding: 0.75rem 0;
  position: relative;
  padding-left: 2rem;
  color: var(--text-color, var(--text-primary));
  border-bottom: 1px solid rgba(191, 166, 107, 0.1);
}

.city-highlights ul li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--primary-color, var(--primary-color));
  font-size: 1.1rem;
}

.city-highlights ul li:last-child {
  border-bottom: none;
}
  padding: 0;
}

.city-highlights ul li {
  padding: 0.75rem 0;
  color: var(--text-muted);
}

.city-highlights ul li i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  width: 20px;
}

/* Breadcrumb styling */
.breadcrumb-nav {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb {
  background: transparent;
  margin-bottom: 0;
  padding: 0;
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--secondary-color);
}

.breadcrumb-item.active {
  color: var(--text-muted);
}

/* Enhanced responsive design */
@media (max-width: 768px) {
  .city-hero {
    padding: 4rem 0;
  }
  
  .city-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .city-hero .lead {
    font-size: 1.2rem;
  }
  
  .city-stats {
    gap: 2rem;
  }
  
  .stat-item {
    padding: 1.5rem 1rem;
    min-width: 120px;
  }
  
  .stat-item .number {
    font-size: 2.5rem;
  }
  
  .city-logements,
  .city-activities,
  .city-info {
    padding: 3rem 0;
  }
  
  .city-info h2 {
    font-size: 2.25rem;
  }
  
  .city-logements h2,
  .city-activities h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .city-hero {
    padding: 3rem 0;
  }
  
  .city-hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .city-hero .lead {
    font-size: 1.1rem;
  }
  
  .city-stats {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .stat-item {
    min-width: 160px;
  }
  
  .city-info h2 {
    font-size: 1.875rem;
  }
  
  .city-info p {
    font-size: 1.05rem;
  }
  
  .city-info ul li {
    padding-left: 2.5rem;
    font-size: 1rem;
  }
  
  .city-logements,
  .city-activities {
    padding: 2.5rem 0;
  }
  
  .city-info {
    padding: 3rem 0;
  }
}

/* City page specific breadcrumb styling */
.city-page .breadcrumb-nav {
  background: var(--bg-white);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--light-border);
}

.city-page .breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.city-page .breadcrumb-item a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.city-page .breadcrumb-item.active {
  color: var(--text-color);
  font-weight: 600;
}
