/* Location Selector Page Styles */
/* B&B The Butter and Batter House */
/* Note: Include common.css before this file */

.location-selector {
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.location-selector::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../../img/bg.jpg") center/cover;
  opacity: 0.15;
}

.location-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

.location-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.location-title {
  color: var(--gold);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.location-subtitle {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.location-buttons {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Location Button - extends glass-card */
.location-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 3rem;
  color: #fff;
  text-decoration: none;
  width: 300px;
}

.location-btn:hover {
  transform: translateY(-8px) scale(1.03);
  text-decoration: none;
  color: #fff;
}

.location-btn i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.location-btn .city-name {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.location-btn .city-tagline {
  font-size: 0.85rem;
  opacity: 0.8;
}

.back-home {
  position: absolute;
  top: 2rem;
  left: 2rem;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  z-index: 10;
}

.back-home:hover {
  color: #fff;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 576px) {
  .location-title {
    font-size: 1.8rem;
  }

  .location-buttons {
    flex-direction: column;
    gap: 1.5rem;
  }

  .location-btn {
    padding: 1.5rem 2rem;
    width: 100%;
  }
}
