/* Basic reset and full-screen setup */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: transparent;
    font-family: Arial, Helvetica, sans-serif;
}

/* Background video styling */
#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the entire background */
    z-index: -1; /* Places video behind content */
}

/* Content area styling */
#content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center horizontally and vertically */
    z-index: 1;
    color: white; /* For visibility on video */
    text-align: center;
    padding: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Add drop shadow to text */
}

/* Navigation menu styling */
#nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent background for readability */
    padding: 10px 0;
    z-index: 2;
    text-align: center;
}

#nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

#nav-menu li {
    margin: 0 20px;
}

#nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: font-weight 0.3s ease, color 0.3s ease;
}

#nav-menu a:hover {
    font-weight: bold; /* Embolden on hover */
    color: #ffd700; /* Optional: Change color on hover for extra effect */
}

/* Subpage content styling */
#the-convention, #schedule, #venue, #buy-tickets, #home {
    display: none;
    background-color: #4682b4; /* Steel blue background */
    border-radius: 15px; /* Rounded corners */
    padding: 20px; /* Padding for content inside the steel blue background */
    max-width: 600px; /* Limit width for better readability */
    margin: 0 auto; /* Center the container */
    opacity: 0; /* Start invisible for instant switch */
}

/* Show when active without transition */
#the-convention.active, #schedule.active, #venue.active, #buy-tickets.active, #home.active {
    display: block;
    opacity: 1; /* Instantly visible */
}

/* Logo image styling */
#convention-logo {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 150px; /* Adjust size as needed */
    height: auto;
    background-color: #FFFFFF; /* Pure white background */
    border: 1px solid #FFFFFF; /* Subtle border to enhance separation */
    z-index: 10; /* Increased to ensure it stays above video and content */
}

/* Venue logo styling */
#venue img {
    width: 150px; /* Small format image */
    height: auto;
    margin: 10px 0;
}

#buy-tickets .buy-tickets-btn {
  display: block;
  margin: 0 auto;
  text-align: center;
}

/* Interactive map styling */
#venue iframe {
    width: 100%;
    height: 300px; /* Adjust height as needed */
    border: 0;
    border-radius: 10px; /* Rounded corners for the map */
    margin-top: 15px;
}

/* Directions styling */
#venue .directions {
    margin-top: 15px;
    text-align: left;
}
#venue .directions h2 {
    font-size: 20px;
    margin-bottom: 10px;
}
#venue .directions ul {
    margin: 0;
    padding-left: 20px;
}
#venue .directions li {
    margin-bottom: 10px;
}
