/* ==================== CITY PAGES STYLES ==================== */

.city-page {
  max-width: 900px;
  margin: 0 auto;
}

/* Breadcrumb - Dark Grey Style */
.breadcrumb {
  background: #374151;
  padding: 12px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 13px;
}

.breadcrumb a {
  color: #D1D5DB;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #22C55E;
}

.breadcrumb span {
  color: #6B7280;
  margin: 0 6px;
}

.breadcrumb .current {
  color: white;
  font-weight: 500;
}

.city-header {
  text-align: center;
  margin-bottom: 32px;
}

.city-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  color: #1F2937;
  margin: 16px 0 8px;
}

.city-header p {
  color: #6B7280;
  font-size: 16px;
}

.city-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  font-size: 14px;
  color: #6B7280;
}

.city-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* City Submenu - CENTERED */
.city-submenu {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 24px 0;
  text-align: center;
}

.city-submenu h4 {
  font-size: 14px;
  color: #6B7280;
  margin: 0 0 12px;
  text-align: center;
}

.city-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.city-link {
  padding: 8px 14px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  text-decoration: none;
  color: #1F2937;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}

.city-link:hover {
  background: #F0FDF4;
  border-color: #22C55E;
  color: #166534;
}

/* Local Tip */
.local-tip {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border: 1px solid #F59E0B;
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
}

.local-tip h3 {
  font-size: 16px;
  margin: 0 0 8px;
  color: #92400E;
}

.local-tip p {
  color: #78350F;
  margin: 0;
  line-height: 1.6;
}

/* Exchange Options */
.exchange-options {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
}

.exchange-options h3 {
  font-size: 18px;
  color: #1F2937;
  margin: 0 0 16px;
}

.option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #F3F4F6;
}

.option-row:last-child {
  border-bottom: none;
}

.option-name {
  color: #4B5563;
  font-size: 14px;
}

.rating-good { color: #16A34A; font-weight: 600; font-size: 13px; }
.rating-ok { color: #F59E0B; font-weight: 600; font-size: 13px; }
.rating-bad { color: #DC2626; font-weight: 600; font-size: 13px; }

/* Areas Section */
.areas-section {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
}

.areas-section h3 {
  font-size: 18px;
  color: #1F2937;
  margin: 0 0 8px;
}

.areas-hint {
  font-size: 13px;
  color: #9CA3AF;
  margin: 0 0 16px;
}

.area-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.area-tag {
  padding: 10px 16px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 14px;
  color: #4B5563;
}

/* Area Link with Map Tooltip */
.area-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #4B5563;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  transition: all 0.2s;
}

.area-link:hover {
  background: #DCFCE7;
  border-color: #22C55E;
  color: #166534;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

/* Map Tooltip on Hover */
.area-link::before {
  content: '🗺️ Open in Maps';
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.area-link::after {
  content: '';
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #1F2937;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.area-link:hover::before,
.area-link:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

.area-icon {
  font-size: 14px;
}

/* CTA Section */
.converter-cta-section {
  margin: 32px 0;
}

.converter-cta-box {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  color: white;
}

.converter-cta-box h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  margin: 0 0 8px;
  color: white;
}

.converter-cta-box p {
  opacity: 0.9;
  margin: 0 0 20px;
}

.converter-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-block;
  background: white;
  color: #16A34A;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s;
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
}

.cta-btn-secondary {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .city-header h1 {
    font-size: 26px;
  }
  
  .city-meta {
    flex-direction: column;
    gap: 8px;
  }
  
  .area-grid {
    justify-content: center;
  }
  
  .breadcrumb {
    padding: 10px 14px;
    font-size: 12px;
  }
}

/* Footer handled by landing-pages.css */
