/**
 * City Landing - Styles
 */

.city-landing { font-family: 'Nunito', sans-serif; }

/* Professional & Clean City Hero */
.city-hero {
  background-color: #f8fafc;
  color: #1e293b;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
}

/* Accent Border Container */
.hero-content-card {
  background: white;
  border: 3px solid #E91E63;
  border-radius: 32px;
  padding: 3rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

/* Subtle decorative elements on light background */
.city-hero-shapes span {
  position: absolute;
  display: block;
  border-radius: 50%;
  opacity: 0.5;
}

.city-hero-shapes span:nth-child(1) { width: 300px; height: 300px; top: -150px; right: -50px; background: #fff1f2; }
.city-hero-shapes span:nth-child(2) { width: 150px; height: 150px; bottom: -50px; left: -20px; background: #f0f9ff; }
.city-hero-shapes span:nth-child(3) { 
  width: 80px; height: 80px; top: 20%; left: 10%; 
  border: 15px solid #fff1f2; background: transparent; 
}

.city-hero .container { position: relative; z-index: 2; }

.city-hero h1 { 
  font-family: 'Fredoka', cursive;
  font-size: 3.5rem; 
  font-weight: 400;
  margin-bottom: 1rem;
  color: #1e293b;
  line-height: 1.1;
}

.city-hero p { 
  font-size: 1.25rem; 
  font-weight: 600;
  max-width: 600px;
  margin-bottom: 2rem;
  color: #64748b;
}

.btn-hero-search {
  background: #E91E63;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 1rem 2.5rem;
  font-weight: 800;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.25);
  text-decoration: none;
}

.btn-hero-search:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(233, 30, 99, 0.35);
  color: white;
  background: #d81b60;
}

.city-stats-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff1f2;
  color: #E91E63;
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(233, 30, 99, 0.1);
}

/* Breadcrumb */
.breadcrumb-seo { 
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem; 
  font-weight: 700;
}
.breadcrumb-seo a { 
  color: #94a3b8; 
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-seo a:hover { color: #E91E63; }
.breadcrumb-seo .sep { color: #cbd5e1; font-weight: 400; }
.breadcrumb-seo .current { color: #1e293b; }

/* Place Cards */
.place-card {
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid #f1f5f9;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}
.place-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  border-color: #E91E63;
}
.place-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #f8fafc;
}
.place-card-body { padding: 1.5rem; }
.place-card-title { font-size: 1.25rem; font-weight: 800; color: #1e293b; margin-bottom: 0.5rem; }
.place-card-city { font-size: 0.9rem; color: #64748b; display: flex; align-items: center; gap: 0.4rem; }

/* SEO Links Section */
.seo-links { background: #f8fafc; padding: 4rem 0; border-top: 1px solid #e2e8f0; }
.seo-links h2 { font-family: 'Fredoka', cursive; font-size: 1.75rem; margin-bottom: 2rem; color: #1e293b; font-weight: 400; }
.seo-link-list { list-style: none; padding: 0; margin: 0; }
.seo-link-list li { margin-bottom: 0.75rem; }
.seo-link-list a {
  color: #475569;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.seo-link-list a:hover { color: #E91E63; transform: translateX(4px); }

@media (max-width: 768px) {
  .hero-content-card { padding: 2rem; border-radius: 24px; border-width: 2px; }
  .city-hero h1 { font-size: 2.25rem; }
  .city-hero { padding: 2rem 0; }
  .city-hero p { font-size: 1.1rem; }
}
