@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;700&display=swap");

:root {
  --primary-color: #ff007f; /* Hot Pink */
  --dark-bg: #000000;
  --secondary-bg: #1a1a1a;
}

/* ===== BASE ===== */
body {
  font-family: "Poppins", sans-serif;
  background-color: var(--dark-bg);
  color: #fff;
  font-weight: 300;
}

.navbar-brand,
.display-1,
h1,
h2,
h3,
h4,
h5 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: center; /* center content */
  position: relative; /* needed for absolute brand */
}

.navbar-brand {
  font-size: 0.5rem;
  padding: 0 2rem;
  z-index: 1001;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links-left,
.nav-links-right {
  display: flex;
  gap: 2rem;
}

.nav-links-left {
  margin-right: auto;
}

.nav-links-right {
  margin-left: auto;
}

.nav-link {
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.navbar-toggler {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

.navbar-collapse {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
}

/* ===== HERO SECTION ===== */
#hero {
  height: 100vh;
  position: relative;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(60%);
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

#hero > div {
  position: relative;
  z-index: 1;
}

.btn-hero {
  background-color: #ff007f;
  color: #fff;
  border: 0px solid #fff;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  padding: 0.75rem 2rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background-color: #fff;
  color: #000;
  border-color: var(--primary-color);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SECTIONS ===== */
section {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* ===== EVENTS SECTION ===== */
.event-list {
  list-style: none;
  padding: 0;
}

.event-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--secondary-bg);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  margin-right: 2rem;
}

.event-date span:last-child {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.event-details {
  flex-grow: 1;
}

.event-title {
  font-size: 2.5rem;
  margin: 0;
}

.event-subtitle {
  margin: 0;
  color: #aaaaaa;
}

/* ===== EVENT FLYERS ===== */
.event-flyer img {
  width: 200px; /* desktop size */
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
}

.event-flyer img:hover {
  transform: scale(1.55);
}

/* Bigger flyers on extra-large screens */
@media (min-width: 1400px) {
  .event-flyer img {
    width: 240px;
  }
}

/* ===== BUTTONS ===== */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #fff;
  border-color: #fff;
  color: #000;
}

/* Call-to-Book button (VIP section) */
.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 1rem;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-size: 0.95rem;
  text-transform: uppercase;
  padding: 8px 20px; /* 👈 reduced width */
  border-radius: 35px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-call:hover {
  background-color: #fff;
  color: #000;
  transform: scale(1.03);
}

/* ===== TICKETS SECTION ===== */
#tickets {
  background-color: #000;
  border-top: 1px solid var(--secondary-bg);
  border-bottom: 1px solid var(--secondary-bg);
}

#tickets h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  font-size: 2.5rem;
  text-transform: uppercase;
}

#tickets p {
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.tickets-widget {
  max-width: 800px;
  margin: 0 auto;
  background-color: #0a0a0a;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
}

.tickets-widget iframe {
  width: 100%;
  min-height: 500px;
  border: 0;
}

/* ===== FORM & VIP SECTION ===== */
.form-control {
  background-color: var(--secondary-bg);
  border: 1px solid #ff007f;
  color: #fff;
  padding: 12px 14px;
  margin-top: 6px;
  width: 100%;
  border-radius: 6px;
}

.form-control:focus {
  background-color: var(--secondary-bg);
  border-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(255, 0, 127, 0.25);
}

.vip-section {
  padding: 80px 0;
  background-color: #000;
  color: #fff;
  text-align: center;
}

.vip-title {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.vip-text {
  max-width: 600px;
  margin: 0 auto 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #ccc;
}

.vip-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.form-label {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #ffffff;
}

.vip-button {
  align-self: center;
  background-color: #ff007f;
  border-color: #ff007f;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-size: 1.1rem;
  text-transform: uppercase;
  padding: 12px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}

.vip-button:hover {
  background-color: #fff;
  color: #000;
}

/* ===== GALLERY ===== */
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 127, 0.3);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::before {
  opacity: 1;
}

/* ===== VISIT / MAP SECTION ===== */
.map-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
  filter: brightness(90%);
  transition: transform 0.3s ease;
}

.map-container iframe:hover {
  transform: scale(1.02);
}

/* ===== FOOTER & SOCIAL ===== */
footer {
  border-top: 1px solid var(--secondary-bg);
  font-size: 0.9rem;
  color: #aaa;
}

.social-icons a {
  color: #fff;
  text-decoration: none;
  margin: 0 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--primary-color);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .navbar .container {
    justify-content: space-between;
  }

  .navbar-toggler {
    display: block;
  }

  .navbar-collapse {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
  }

  .navbar-collapse.active {
    display: flex;
  }

  .nav-links-left,
  .nav-links-right {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
  }

  .nav-links-right {
    margin-top: 1.5rem;
  }

  .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .event-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .event-date {
    margin: 0 0 1rem 0;
  }

  .event-details {
    margin-bottom: 1rem;
  }

  .event-flyer img {
    width: 100%;
    max-width: 350px;
    margin-bottom: 1rem;
  }

  .event-item a.btn {
    align-self: center;
  }

  .tickets-widget {
    padding: 15px;
  }
}
