/* --- GLOBAL STYLES --- */
html, body {
  height: 100%;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #000;
  color: #fff;
  padding: 10px 0 0 0;
  text-align: center;
  border-bottom: 3px solid #cc0000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

#logo {
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto 10px auto;
}

.main-nav {
  position: relative;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  background: #000;
}

.main-nav li {
  margin: 0 20px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}

header.scrolled .main-nav a:hover,
header.scrolled .main-nav a.active {
  background: #cc0000;
  color: #fff;
}

/* Burger menu (hidden by default) */
.nav-toggle,
.nav-toggle-label {
  display: none;
}

/* --- HERO IMAGE SECTION --- */
.events-hero {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background-image: url('images/sim-event1.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  padding: 388px 0 80px 0; /* Match your home page hero padding */
  margin-bottom: 0;
  border-radius: 0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.0);
}

.events-hero h1 {
  color: #fff;
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
}

.events-hero p {
  color: #ccc;
  font-size: 1.2em;
  margin-bottom: 25px;
}.cta-button {
  display: inline-block;
  background: #cc0000;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
  margin-top: 20px;
}

.cta-button:hover {
  background: #990000;
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .events-hero {
    padding: 120px 0 40px 0 !important;
  }
  .events-hero h1 {
    font-size: 1.5em;
  }
  .events-hero p {
    font-size: 1em;
  }
}
.banner {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(to bottom, #b71c00, #330900);
  color: #fff;
  text-align: center;
  padding: 16px 0 12px 0;
  font-size: 1.4rem; /* or your preferred size */
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;         /* <-- THIS MAKES IT BOLD */
  font-style: italic;
  letter-spacing: 4px;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase;
}
.banner span {
  display: inline-block;
}
/* --- EVENTS HEADER --- */
.events-header {
  max-width: 900px;
  margin: 0 auto 40px auto;
  padding-top: 0; /* No extra padding here */
  text-align: left;
}

.events-header h1 {
  color: #fff;
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.events-underline {
  width: 60%;
  max-width: 400px;
  height: 7px;
  background: #cc0000;
  border-radius: 4px;
  margin-bottom: 32px;
}

.events-subtitle {
  color: #cc0000;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 32px;
  margin-top: 0;
  letter-spacing: 1px;
}

.events-intro {
  color: #fff;
  font-size: 1.5em;
  margin-bottom: 0;
  margin-top: 0;
  line-height: 1.4;
}

/* --- MAIN CONTENT SECTION --- */
.event-section {
  padding-top: 0px !important; /* No extra space above main content */
  flex: 1 0 auto;
}

/* --- EVENT ROWS --- */
.event-row {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  margin: 40px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Remove .reverse if you want all images left on desktop */
/* .event-row.reverse {
  flex-direction: row-reverse;
} */

.event-image {
  flex: 1 1 350px;
  min-width: 300px;
  max-width: 400px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

/* --- EVENT CONTENT --- */
.event-content {
  flex: 2 1 400px;
  padding: 40px 40px;
  color: #fff;
}
.corporate-section .event-content {
  padding-bottom: 16px;
}

/* --- RED UNDERLINE FOR ALL EVENT SUBHEADERS --- */
.event-content h2 {
  font-size: 2em;
  margin: 0 0 15px 0;
  color: #fff;
  display: inline-block;
  border-bottom: 4px solid #cc0000;
  padding-bottom: 2px;
}
/* --- END RED UNDERLINE --- */

.event-content h4 {
  color: #cc0000;
  font-size: 1em;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-content p {
  font-size: 1.1em;
  color: #fff;
}

/* --- EVENT CTA --- */
.event-cta {
  background: #cc0000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 30px;
  border-radius: 0px;
  margin: 60px 0;
}

.event-cta h3 {
  margin: 0 0 10px 0;
  font-size: 1.6em;
}

.event-cta p {
  margin: 0;
  font-size: 1.1em;
}

.cta-btn {
  background: #fff;
  color: #cc0000;
  padding: 14px 32px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background 0.2s, color 0.2s;
}

.cta-btn:hover {
  background: #a80000;
  color: #fff;
}

/* --- EVENT BUTTON --- */
.event-btn {
  display: inline-block;
  background: #cc0000;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
  margin-top: 10px;
  font-family: inherit;
}

.event-btn:hover {
  background: #990000;
  transform: translateY(-2px);
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 900px) {
  .event-row {
    flex-direction: column !important;
    align-items: stretch !important;
    min-height: 0 !important;
    height: auto !important;
    margin-bottom: 18px !important;
    margin-top: 0 !important;
  }
  .event-section > .event-row:last-of-type {
    margin-bottom: 0 !important;
  }
  .event-image,
  .event-content {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    flex: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .event-content {
    padding: 12px 8px !important;
  }
  .event-content h2,
  .event-content h4,
  .event-content p {
    margin: 0 !important;
    padding: 0 !important;
  }
  .event-content h2,
  .event-content h4 {
    margin-bottom: 6px !important;
  }
  .event-content p {
    margin-bottom: 8px !important;
  }
  .event-content p:last-child {
    margin-bottom: 0 !important;
  }
  .event-cta {
    margin-top: 18px !important;
    margin-bottom: 18px !important;
    padding: 16px 8px !important;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  footer {
    margin-top: 8px !important;
  }
}

@media (max-width: 700px) {
  .events-hero {
    height: 220px;
  }
  .events-hero-content h1 {
    font-size: 1.5em;
  }
  .events-hero-content p {
    font-size: 1em;
  }
  .main-nav ul {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #111;
    display: none;
    width: 100%;
    border-top: 3px solid #cc0000;
    z-index: 10;
  }
  .main-nav li {
    margin: 0;
  }
  .nav-toggle:checked + .nav-toggle-label + ul {
    display: flex;
  }
  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 30px;
    justify-content: center;
    position: absolute;
    left: 20px;
    top: 30px;
    margin-top: 0;
    margin-bottom: 10px;
    z-index: 1100;
  }
  .nav-toggle-label span {
    background: #fff;
    height: 4px;
    margin: 4px 0;
    border-radius: 2px;
    width: 100%;
    display: block;
    transition: 0.3s;
  }
  #hero {
    padding: 40px 10px 20px 10px !important;
  }
}

/* --- FOOTER --- */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
  border-top: 3px solid #cc0000;
  margin-top: 40px;
  font-size: 0.9em;
  flex-shrink: 0;
}hero {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background-image: url('images/header.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  min-height: 60vh; /* Ensures hero is at least 60% of viewport height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.0);
  padding: 0 10px; /* Small horizontal padding for mobile */
}.hero-section {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  min-height: 70vh; /* Consistent height for all screens */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.0);
  padding: 0 10px;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .hero-section {
    min-height: 55vh;
  }
}

@media (max-width: 700px) {
  .hero-section {
    min-height: 40vh;
    padding-top: 90px; /* For fixed navbar */
    padding-bottom: 20px;
  }
}