html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
body { color: #000; font-family: 'Roboto', sans-serif; }

.video-background {
  position: relative;
  top: 0;
  left: 0;
  width: 100vw;
  height: 60vh;
  min-height: 200px;
  max-height: 500px;
  object-fit: cover;
  z-index: 1;
  display: block;
}

nav {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; /* changed from 100vw to 100% */
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgb(0, 0, 0, 0.7); /* semi-transparent black */
  box-shadow: none;
  z-index: 1000;
  backdrop-filter: blur(6px);
}
nav .logo {
  margin-left: 0;
  color: #ffffff;
}
/* Group containing main logo and optional partner logos */
.logo-group {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-left: 16px; /* keep a little breathing room from the viewport edge */
}
.logo-group .logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.00);
  display: block;
}
.partner-logos {
  display: flex;
  gap: 50px;
  align-items: center;
}
.partner-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  opacity: 0.95;
  border-radius: 8px;
  background: rgba(255,255,255,0.00);
}
nav .nav-links {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5%;
  padding-left: 30%;
   white-space: nowrap;
}
nav .nav-link {
  color: #ffffff;
  margin: 0 16px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.2s;;
}
nav .nav-link:hover {
  color: #fa9b2f;
}

/* Make sign-out button visually match other nav links (remove white box) */
nav .nav-link.btn-link.signed-in-only,
nav button.nav-link.signed-in-only {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 16px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  cursor: pointer !important;
  /* display is controlled by auth JS/styles; avoid forcing visibility with !important */
  display: inline-flex;
  align-items: center !important;
  gap: 6px;
}

/* Remove default focus/outline that can show a box */
nav .nav-link.btn-link.signed-in-only:focus,
nav button.nav-link.signed-in-only:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Hover should match other nav links */
nav .nav-link.btn-link.signed-in-only:hover,
nav button.nav-link.signed-in-only:hover {
  color: #fa9b2f !important;
}

body {
  background: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}

@media (max-width: 900px) {
  nav .nav-links {
    flex-direction: column;
    background: rgba(0,0,0,0.7);
    position: absolute;
    top: 70px;
    left: 0;
    width: 100vw;
    display: none;
  }
  nav.open .nav-links {
    display: flex;
  }
}
.event-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Event Grid and Cards */
.event-grid {
    display:grid;
    grid-template-columns: repeat(3, auto);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.event-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.event-details {
    padding: 1.5rem;
}

.event-details h3 {
    margin: 0 0 1rem;
    color: #333;
    font-size: 1.5rem;
}
.event-details p {
    margin: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-details i {
    color: #e63946;
}

/* Countdown Styles */
.countdown {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.book-vendor-btn {
    display: flex;
    background: #DAA520;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(230, 57, 70, 0.2);
    padding-top: 4%;
}

.book-vendor-btn:hover {
    background: #DAA520;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(230, 57, 70, 0.3);
}

.countdown-display {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

.countdown-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2%;
    min-width: 80px;
    max-width: 2%;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e63946;
    display: block;
}

.countdown-label {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
}

/* Venue Map */
.venue-map {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    margin: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
    position: relative;
    z-index: 1;
}
.site-footer {
  background: #000;
  color: #333;
  padding: 40px 0 12px 0;
  margin-top: 48px
}

.site-footer .footer-inner {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: start
}

.site-footer .footer-inner.small {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 8px
}

.site-footer .footer-col h4 {
  margin-bottom: 12px;
  color: #fff
}

.site-footer .footer-about p {
  color: #ddd;
  max-width: 420px
}

.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 12px
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.footer-links ul li {
  margin-bottom: 8px
}

.footer-links ul li a {
  color: #ddd;
  text-decoration: none
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
  align-items: center
}

.footer-newsletter-form input[type="email"] {
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  width: 100%;
  max-width: 320px
}

.subscribe-btn {
  padding: 10px 16px;
  border-radius: 8px;
  background: #fa9b2f;
  color: #fff;
  border: none;
  cursor: pointer
}

.subscribe-note {
  color: #999;
  margin-top: 8px
}

.social-links {
  display: flex;
  gap: 12px
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  color: #fff;
  text-decoration: none
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 12px 0;
  margin-top: 20px
}

.footer-legal a {
  color: #bbb;
  text-decoration: none;
  margin-left: 8px
}

@media (max-width:900px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr
  }

  .site-footer .footer-inner.small {
    grid-template-columns: 1fr;
    text-align: center
  }

  .footer-newsletter-form {
    flex-direction: column;
    align-items: stretch
  }
}