/* Locations Page */
.locations-page {
  margin-top: 100px;
  padding: 3rem 0 5rem;
  min-height: 80vh;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 3rem;
}

/* City Tabs */
.city-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.loading-message {
  color: var(--muted);
  font-size: 1.1rem;
  padding: 1rem 0;
  text-align: center;
  width: 100%;
}

.city-tab {
  padding: 1rem 2rem;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--dark);
  font-weight: 500;
  transition: all 0.3s;
  white-space: nowrap;
}

.city-tab:hover {
  border-color: var(--primary);
  background: #f9f9f9;
}

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

/* City Content */
.city-content {
  position: relative;
}

.city-section {
  display: none;
  animation: fadeIn 0.4s ease;
}

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

.city-heading {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 2rem;
  font-family: Georgia, serif;
}

/* Venues Grid */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.venue-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.venue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Venue Image with Gradient Overlay */
.venue-image {
  position: relative;
  height: 200px;
  background: linear-gradient(180deg, rgba(200,200,200,0.3) 0%, rgba(100,100,100,0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.venue-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin: 0;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Venue Info */
.venue-info {
  padding: 1.5rem;
}

.address {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.address .icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.address div p {
  margin: 0;
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.5;
}

.venue-description {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* Maps Button */
.maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #bfa27a;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.maps-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.maps-btn .icon {
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 1200px) {
  .venues-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .locations-page {
    margin-top: 80px;
    padding: 2rem 0 4rem;
  }
  
  .page-title {
    font-size: 2.25rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .city-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .venues-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .city-tabs {
    gap: 0.75rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }
  
  .city-tabs::-webkit-scrollbar {
    height: 4px;
  }
  
  .city-tabs::-webkit-scrollbar-thumb {
    background: #bfa27a;
    border-radius: 2px;
  }
  
  .city-tab {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    flex-shrink: 0;
  }
  
  .venue-image {
    height: 180px;
    padding: 1.25rem;
  }
  
  .venue-name {
    font-size: 1.35rem;
  }
  
  .venue-info {
    padding: 1.25rem;
  }
  
  .address div p {
    font-size: 0.95rem;
  }
  
  .maps-btn {
    padding: 0.7rem 1.35rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 1.875rem;
  }
  
  .page-subtitle {
    font-size: 0.95rem;
  }
  
  .city-heading {
    font-size: 1.75rem;
  }
  
  .city-tab {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .venue-image {
    height: 160px;
    padding: 1rem;
  }
  
  .venue-name {
    font-size: 1.2rem;
  }
  
  .venue-info {
    padding: 1rem;
  }
  
  .address {
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }
  
  .address div p {
    font-size: 0.9rem;
  }
  
  .maps-btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}
