.venue-detail-page {
  padding: 100px 20px 80px;
  background-color: var(--bg-darker-blue);
  min-height: 100vh;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.venue-header {
  text-align: center;
  margin-bottom: 40px;
}

.venue-title {
  font-size: 3.5rem;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  margin-top: 20px;
  text-shadow: 0 0 15px var(--neon-glow);
}

.venue-media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.venue-image-wrapper,
.venue-map-wrapper {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.2);
  background-color: var(--bg-accent-blue);
}

.venue-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.venue-image-wrapper:hover .venue-main-img {
  transform: scale(1.05);
}

.venue-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) contrast(100%);
}

.venue-info-section {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 30px;
}

.info-card {
  background: var(--bg-accent-blue);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.info-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.section-title {
  color: var(--neon-cyan);
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.venue-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 0;
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.location-list li {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 15px;
  align-items: start;
}

.location-list i {
  color: var(--neon-cyan);
  font-size: 1.5rem;
  justify-self: center;
  margin-top: 2px;
}

.loc-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.loc-text strong {
  color: var(--text-primary);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.loc-text span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  text-transform: capitalize;
}

@media (max-width: 992px) {
  .venue-media-split {
    gap: 20px;
  }

  .venue-image-wrapper,
  .venue-map-wrapper {
    height: 350px;
  }

  .venue-info-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .venue-title {
    font-size: 2.8rem;
  }

  .venue-media-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .venue-detail-page {
    padding: 80px 15px 40px;
  }

  .venue-title {
    font-size: 2.2rem;
  }

  .venue-image-wrapper,
  .venue-map-wrapper {
    height: 250px;
    border-radius: 15px;
  }

  .info-card {
    padding: 25px;
    border-radius: 15px;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .venue-description {
    font-size: 1rem;
  }
}
