/* City Pages Styling */

/* Material Symbols Icons */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}

.icon-inline {
  font-size: 1em;
  vertical-align: middle;
  margin-right: 0.3em;
}

#first h1 .material-symbols-outlined {
  font-size: 0.8em;
  color: var(--primary);
  vertical-align: middle;
}

h2 .icon-inline {
  font-size: 0.9em;
}

h3 .icon-inline {
  font-size: 0.9em;
}

h4 .icon-inline {
  font-size: 0.9em;
}

.fun-facts li .icon-inline {
  color: var(--primary);
  margin-right: 0.5em;
}

.benefit-card h4 .icon-inline {
  color: white;
  opacity: 0.9;
}

.cta-section h3 .icon-inline {
  color: white;
  opacity: 0.95;
}

#first {
  min-height: 100vh;
  padding: 120px 0 80px;
}

#first h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

#first .lead {
  font-size: 1.5rem;
  color: #666;
  font-weight: 300;
  margin-bottom: 2rem;
}

.city-content {
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.city-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
  margin-top: 2rem;
}

.city-content h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  color: var(--secondary);
}

.city-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

.city-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #333;
}

/* Fun Facts Section */
.fun-facts {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.fun-facts ul {
  list-style: none;
  padding: 0;
}

.fun-facts li {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 0;
  color: #333;
}

.fun-facts li::before {
  content: none;
}

/* Music Benefits Section */
.music-benefits {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 3rem 2rem;
  border-radius: 15px;
  margin: 3rem 0;
  color: white;
}

.music-benefits h2 {
  color: white;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.music-benefits > p {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.95);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  background: rgba(255,255,255,0.15);
}

.benefit-card h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.benefit-card p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding: 3rem 2rem;
  border-radius: 15px;
  margin: 3rem 0;
  text-align: center;
  color: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta-section h3 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.95);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-section .btn {
  font-size: 1.1rem;
  padding: 1rem 2rem;
  margin: 0.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cta-section .btn-primary {
  background: white;
  color: #f5576c;
  border: none;
}

.cta-section .btn-primary:hover {
  background: #f0f0f0;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-section .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-section .btn-secondary:hover {
  background: white;
  color: #f5576c;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  #first h1 {
    font-size: 2rem;
  }
  
  #first .lead {
    font-size: 1.2rem;
  }
  
  .city-content h2 {
    font-size: 1.8rem;
  }
  
  .city-content h3 {
    font-size: 1.5rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .fun-facts,
  .music-benefits,
  .cta-section {
    padding: 1.5rem;
  }
  
  .cta-section .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.city-content > * {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.city-content > *:nth-child(1) { animation-delay: 0.1s; }
.city-content > *:nth-child(2) { animation-delay: 0.2s; }
.city-content > *:nth-child(3) { animation-delay: 0.3s; }
.city-content > *:nth-child(4) { animation-delay: 0.4s; }
.city-content > *:nth-child(5) { animation-delay: 0.5s; }



