* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #0e0e0e;
  color: #f5f5f5;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)),
              url("https://images.unsplash.com/photo-1599009434865-9b742f0f81f4?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 80px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #d4af37;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav a {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #d4af37;
}

.hero-content {
  margin: auto;
  text-align: center;
  max-width: 700px;
  padding: 20px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 35px;
}

.btn {
  display: inline-block;
  padding: 14px 34px;
  border: 2px solid #d4af37;
  color: #d4af37;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #d4af37;
  color: #0e0e0e;
}

/* FEATURES */
.features {
  display: flex;
  justify-content: space-around;
  padding: 100px 80px;
  background-color: #111;
}

.feature {
  max-width: 280px;
  text-align: center;
}

.feature h2 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  margin-bottom: 15px;
  color: #d4af37;
}

.feature p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.6;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  background-color: #0a0a0a;
  color: #777;
  font-size: 14px;
}

/* IMAGE GALLERY */
.gallery {
  display: flex;
  gap: 30px;
  padding: 80px;
  background-color: #0e0e0e;
}

.gallery img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(212,175,55,0.3);
}
/* LIVE TOP BAR */
.live-bar {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 12px 40px;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(212,175,55,0.3);
}

.live-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #d4af37;
}

.live-dot {
  width: 10px;
  height: 10px;
  background: red;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.live-center iframe {
  width: 100%;
  height: 90px;
  border-radius: 8px;
}

.live-right {
  text-align: right;
  font-weight: 600;
  color: #f5f5f5;
}
/* NAV UTILITIES */
.nav-item {
  list-style: none;
}

.nav-link {
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #f5f5f5;
  padding: 8px 4px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #d4af37;
}

/* DROPDOWN */
.dropdown-item {
  display: block;
  padding: 10px 16px;
  color: #f5f5f5;
  font-size: 14px;
  transition: background 0.25s ease, color 0.25s ease;
}

.dropdown-item:hover {
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
}

/* DROPDOWN MENU CONTAINER */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: " ▾";
  font-size: 12px;
}

.dropdown-menu {
  position: absolute;
  right: 0;
  top: 120%;
  background: #0a0a0a;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 10px;
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu .dropdown-item {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

/* ========================
   LOGIN PAGE STYLING
   ======================== */

.masthead_login {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.9)),
              url("https://images.unsplash.com/photo-1599009434865-9b742f0f81f4?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;  /* horizontal center */
  align-items: center;      /* vertical center */
  padding: 20px;
}

.login-card {
  background: #0a0a0a;
  border: 2px solid rgba(212,175,55,0.25); /* gold border */
  border-radius: 20px;
  padding: 50px 35px;   /* inner spacing */
  max-width: 400px;     /* fixed max width */
  width: 100%;          /* responsive */
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.login-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #d4af37;
  text-align: center;
  margin-bottom: 30px;
}

.login-card .form-floating {
  margin-bottom: 20px;  /* spacing between inputs */
}

.login-card input[type="text"],
.login-card input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #333;
  background: #111;
  color: #f5f5f5;
  font-size: 15px;
}

.login-card input:focus {
  outline: none;
  border-color: #d4af37;  /* gold highlight on focus */
}

.login-btn {
  width: 100%;
  padding: 10px;          /* smaller button height */
  font-size: 14px;        /* smaller text */
  border: 2px solid #d4af37;
  background: transparent;
  color: #d4af37;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: #d4af37;
  color: #0e0e0e;
}

.login-link {
  color: #d4af37;
  font-weight: 600;
  font-size: 14px;
}

.login-link:hover {
  text-decoration: underline;
}

.error-box p {
  color: #ff6b6b; /* red error text */
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.4;
}

@media (max-width: 576px) {
  .login-card {
    padding: 30px 20px;
  }

  .login-title {
    font-size: 28px;
  }
}

.login-card .forgot-password-wrapper {
  margin-top: 10px; /* space between password input and forgot password link */
  margin-bottom: 15px; /* optional, adds spacing before the login button */
}

.login-btn-wrapper {
  margin-top: 15px; /* separates button from forgot password link */
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #0a0a0a;
  color: #f5f5f5;
  border: 1px solid rgba(212,175,55,0.5);
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  font-size: 14px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 480px;
  justify-content: space-between;
  flex-direction: column;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
}

.cookie-buttons {
    display: flex;           /* put buttons side by side */
    justify-content: center; /* center them horizontally */
    gap: 10px;               /* space between buttons */
    margin-top: 10px;        /* optional spacing above buttons */
}


.cookie-btn {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background: #d4af37;
  color: #0e0e0e;
}

.cookie-btn.decline {
  border-color: #ff6b6b;
  color: #ff6b6b;
}

.cookie-btn.decline:hover {
  background: #ff6b6b;
  color: #0e0e0e;
}
