/* Global Styles */
body {
  font-family: 'Jost', sans-serif;
  background-color: #0d0d0d;
  color: #fff;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
h1, h2, h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

a {
  text-decoration: none;
}

.navbar {
  background: #111;
}

.navbar-brand {
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 1.5rem;
}

.nav-link {
  color: #ccc !important;
  transition: color 0.3s;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-link:hover, .nav-link.active {
  color: #d22222 !important;
}

/* Hero Section */
.hero {
  font: 'Jost', sans-serif;
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  max-width: 85%;
  margin: 0 auto;
  border-radius: 10px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/hero.webp') no-repeat center center/cover;
  filter: blur(5px);
  transform: scale(1.1); /* To avoid blurred edges */
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.65);
  z-index:1;
}

.hero-content {
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  font: 'Jost', sans-serif;
  z-index:2;
  color: #fff;
}

.hero-text {
  font-weight: 400;
  z-index: 2;
  color: #cfcfcf;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero .btn {
  font-size: 1.2rem;
  padding: 0.75rem 1.5rem;
  z-index: 2;
  transition: all 0.3s;
  color: #fff;
  font-weight: 600;
}

.hero .btn-primary { background: #d22222; border: none; }
.hero .btn-primary:hover { background: #e04444; transform: scale(1.05); }

.hero .btn-warning { background: #d22222; border: none; }
.hero .btn-warning:hover { background: #e04444; transform: scale(1.05); }

.hero .btn-success { background: #d22222; border: none; }
.hero .btn-success:hover { background: #e04444; transform: scale(1.05); }

/* Events Section */
#events .card {
  background: #1a1a1a;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

#events .card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #d22222;
}

#events .card-title {
  color: #d22222;
}

#events .card-title a {
  color: #d22222;
  text-decoration: none;
  transition: color 0.3s;
}

#events .card-title a:hover {
  color: #fff;
}

#events .card-img-top {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

#events .card-text {
  color: #ccc;
}

#events .btn {
  font-size: 1.2rem;
  padding: 0.75rem 1.5rem;
  z-index: 2;
  transition: all 0.3s;
  color: #fff;
  font-weight: 600;
}

#events .btn-primary {
  background: #d22222;
  border: none;
}

#events .btn-primary:hover {
  background: #e04444;
}

#events .btn-sm {
  background-color: #d22222;
  border-color: #d22222;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
}

#events .btn-sm:hover {
  background-color: #e04444;
  border-color: #e04444;
}

.btn-view-all {
  background-color: #343a40; /* dark grey */
  color: #fff; /* white text */
  border: 2px solid #fff; /* white outline */
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-view-all:hover {
  background-color: #fff;
  color: #343a40;
  border-color: #fff;
}

/* Menu & Bottle Service Cards */
.card {
  background: #1a1a1a;
  border: none;
  color: #fff;
}

.card-title {
  color: #d22222;
}

.card-text {
  color: #ccc;
}

/* Forms */
form input, form select, form textarea {
  background: #111;
  border: 1px solid #333;
  color: #fff;
}

form input:focus, form select:focus, form textarea:focus {
  border-color: #d22222;
  outline: none;
  box-shadow: 0 0 10px #d22222;
}

form button {
  background: #d22222;
  border: none;
  transition: all 0.3s;
}

form button:hover {
  background: #e04444;
  transform: scale(1.05);
}

/* Footer */
footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid #222;
}

footer a {
  color: #d22222;
  transition: color 0.3s;
}

footer a:hover {
  color: #e04444;
}

/* Contact Page Map */
.map-container {
  width: 100%;
  min-height: 100%;
  border-radius: 10px;
  overflow: hidden;
  flex-grow: 1;
}


form {
  display: flex;
  flex-direction: column;
}

#sendMessageBtn {
  background-color: #d22222;
  color: #fff;
  font-weight: 600;
}

#sendMessageBtn:hover {
  background-color: #e04444;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  .hero {
    max-width: 100%;
    border-radius: 0;
    padding: 0 15px; /* Add some padding */
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .btn {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }

  .hero .d-flex.gap-3 {
    flex-direction: column; /* Stack buttons vertically */
  }
}

/* NEW: Navbar Action Buttons Styling for a distinct look */
.navbar .btn-action {
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 0.25rem;
  transition: all 0.2s;
  font-size: 0.9rem;
  line-height: 1.5; 
  white-space: nowrap; /* ADDED: Prevents button text from wrapping to a second line */
}

/* Buy Tickets Button (White Outline) - Now used for both */
.navbar .btn-tickets {
  background-color: transparent;
  border: 1px solid #fff; /* White outline */
  color: #fff;
}

.navbar .btn-tickets:hover {
  background-color: #d22222;
  border-color: #d22222;
  color: #fff;
}