/* Locations Page Specific Styles */

.locations-section {
  padding: 80px 5vw 120px;
  background: #1a0d2e;
  position: relative;
  min-height: 100vh;
}

.locations-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}

.section-description {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.location-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease;
}

.location-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.location-card:hover {
  box-shadow: 0 0 25px rgba(122, 80, 154, 0.5);
  border-color: rgba(199, 90, 246, 0.6);
  filter: brightness(1.1);
}

.location-image {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}



.location-content {
  padding: 32px;
}

.location-badge {
  display: inline-block;
  background: var(--gradient);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.location-content h3 {
  font-size: 1.75rem;
  margin: 0 0 20px;
  color: #ffffff;
}

.location-address {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.location-address svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-address p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.info-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.location-map {
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.location-map iframe {
  display: block;
  width: 100%;
  border: none;
}

.location-content .btn {
  width: 100%;
}

/* Coming Soon Styles */
.location-card.coming-soon {
  position: relative;
}

.location-card.coming-soon .location-image {
  position: relative;
}

.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(199, 90, 246, 0.7) 0%,
      rgba(122, 80, 154, 0.8) 50%,
      rgba(26, 13, 46, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.coming-soon-overlay span {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    text-shadow: 0 4px 20px rgba(199, 90, 246, 0.5);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.05);
    text-shadow: 0 4px 30px rgba(199, 90, 246, 0.8);
  }
}

.location-badge.opening-soon {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931a 100%);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(247, 147, 26, 0.4);
  }

  50% {
    box-shadow: 0 0 20px 5px rgba(247, 147, 26, 0.3);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .locations-section {
    padding: 120px 5vw 80px;
  }

  .location-content {
    padding: 24px;
  }

  .location-image {
    height: 150px;
  }

  .location-map iframe {
    height: 200px;
  }
}