/* Global Styles */
body {
  font-family: "Ubuntu", sans-serif;
  margin: 0;
  padding: 0;
/*   background-color: #f0f0f0; */
  background-color: #f5f2f0;
  color: #000;
  padding-top: 60px; /* For sticky nav */
  transition: background-color 0.3s, color 0.3s;
}
/* Font Size Classes */
body.small-font {
  font-size: 14px;
}
body.medium-font {
  font-size: 16px;
}
body.large-font {
  font-size: 18px;
}
/* Dark Mode Styles */
body.dark-mode {
  background-color: #121212;
  color: #ffffff;
}
/* Navigation Bar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #000;
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.2),
    inset 0 -2px 5px rgba(0, 0, 0, 0.5);
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 10px 0;
  margin: 0;
}
nav ul li {
  margin: 5px 15px;
}
nav ul li a {
  font-family: "Ubuntu", sans-serif;
  color: #fff;
  text-decoration: none;
  text-shadow: 1px 1px 2px rgba(204, 0, 0, 0.8);
}
/* Dark Mode Nav */
body.dark-mode nav {
  background-color: #1e1e1e;
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.1),
    inset 0 -2px 5px rgba(0, 0, 0, 0.7);
}
body.dark-mode nav ul li a {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(192, 192, 192, 0.8);
}
/* Dark Mode Toggle Button */
#dark-mode-toggle {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1em;
  padding: 5px 10px;
}
#dark-mode-toggle:hover {
  text-decoration: underline;
}
/* Jumbotron */
.jumbotron {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  background: url("fallback-image.jpg") center center / cover no-repeat;
}
#bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.jumbotron-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  top: 20%;
/*   transform: translateY(-50%); */
}
.jumbotron-content h1 {
  font-family: "Lobster", cursive;
  font-size: 3em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(204, 0, 0, 0.8);
}
.jumbotron-content p {
  font-size: 1.5em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(204, 0, 0, 0.8);
}
.jumbotron-content .btn {
  font-family: "Ubuntu", sans-serif;
  background-color: #c00;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.2em;
  border-radius: 5px;
  transition: background-color 0.3s;
  text-shadow: 1px 1px 2px rgba(204, 0, 0, 0.8);
  opacity: 0.90;
}
.jumbotron-content .btn:hover {
  background-color: #900;
}
/* Responsive Jumbotron */
@media (max-width: 768px) {
  .jumbotron-content h1 {
    font-size: 2em;
  }
  .jumbotron-content p {
    font-size: 1.2em;
  }
  #bg-video {
    display: none;
  }
}
/* Sections */
section {
  padding: 20px;
  position: relative;
  z-index: 1;
  background-color: rgba(255,255,255,0.65);
}
.dark-mode section {
  background-color: rgba(0,0,0,0.65);
}
section p {
  text-shadow: 0 1px white;
}
h2 {
  font-family: "Lobster", cursive;
  color: #c00;
  text-shadow: -1px -1px 1px rgba(192, 192, 192, 0.8);
  margin-top: 20px;
  margin-bottom: 10px;
}
p {
  font-family: "Ubuntu", sans-serif;
  line-height: 1.6;
}
a {
  color: #4493f8;
}
/* Rocket Logo */
#rocket-logo {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  transition: top 0.1s ease-out;
  pointer-events: none;
  padding-top: 117px;
}
#rocket-logo img {
  width: 100px;
}
/* Orbiting Moon */
#moon-container {
  position: fixed;
  top: 50%;
  left: -10%;
  width: 100%;
  height: 0;
  overflow: visible;
  z-index: -1;
  pointer-events: none;
}
#orbiting-moon {
  position: absolute;
  width: 100px;
  height: 100px;
  transform-origin: center;
  animation: orbit 30s linear infinite;
  z-index: -1;
}
@keyframes orbit {
  0% {
    transform: translateX(0) translateY(-50%) scale(1);
  }
  25% {
    transform: translateX(25%) translateY(-60%) scale(0.9);
  }
  50% {
    transform: translateX(50%) translateY(-50%) scale(1);
  }
  75% {
    transform: translateX(75%) translateY(-40%) scale(0.9);
  }
  100% {
    transform: translateX(100%) translateY(-50%) scale(1);
  }
}
/* Glowing Moon */
#glowing-moon {
  position: fixed;
  top: 50px;
  right: 50px;
  width: 100px;
  height: 100px;
  background-color: #f0e68c;
  border-radius: 50%;
  box-shadow: 0 0 30px 15px rgba(255, 255, 200, 0.5),
    inset -10px -10px 30px rgba(0, 0, 0, 0.5);
  z-index: -1;
  pointer-events: none;
  animation: glow 3s ease-in-out infinite;
}
@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 30px 15px rgba(255, 255, 200, 0.5),
      inset -10px -10px 30px rgba(0, 0, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 40px 20px rgba(255, 255, 200, 0.7),
      inset -10px -10px 30px rgba(0, 0, 0, 0.5);
  }
}
/* FBLA Members Section */
.fbla-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}
.fbla-container h2 {
  text-align: center;
  color: #c00;
  text-shadow: -1px -1px 1px rgba(192, 192, 192, 0.8);
  margin-bottom: 40px;
}
.fbla-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.member-card {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 250px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.member-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}
.member-card h3 {
  font-family: "Lobster", cursive;
  color: #000;
  margin-bottom: 5px;
  text-shadow: -1px -1px 1px rgba(192, 192, 192, 0.8);
}
.member-card p {
  font-family: "Ubuntu", sans-serif;
  color: #333;
  line-height: 1.6;
}
/* Dark Mode for FBLA Members */
body.dark-mode .member-card {
  background-color: #2a2a2a;
  border-color: #444;
}
body.dark-mode .member-card h3 {
  color: #fff;
}
body.dark-mode .member-card p {
  color: #ccc;
}



.event-upcoming {
    display: table;
    margin-bottom: 2rem;
}
.event-upcoming .calendar-icon, .event-upcoming .event-details {
    display: table-cell;
    vertical-align: top;
}
.event-upcoming .calendar-date {
    width: 3.125rem;
}
.event-upcoming .calendar-month, .event.date-heading {
    background-color: #1F1F1F;
    color: #F0F0F0;
}
.event-upcoming .calendar-month {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    font-size: .875rem;
    font-weight: 300;
    line-height: 1.25rem;
    text-transform: uppercase;
}
.event-upcoming .calendar-day, .event-upcoming .calendar-month {
    font-family: Oswald, sans-serif;
    text-align: center;
}
.event-upcoming .calendar-day {
    border: 1px solid #bdbdbd;
    border-top-width: 0;
    background-color: #fff;
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
    font-size: 1.25rem;
    line-height: 1.875rem;
}
.event-upcoming .calendar-day, .event-upcoming .calendar-month {
    font-family: Oswald, sans-serif;
    text-align: center;
}
.dark-mode .calendar-day {
  color: #000;
}
.event-upcoming .event-details {
    padding-left: 1rem;
}
.event-upcoming .calendar-icon, .event-upcoming .event-details {
    display: table-cell;
    vertical-align: top;
}
.event-upcoming .event-title a {
    display: block;
    font-size: 1rem;
    margin-bottom: 0;
    overflow: hidden;
}
.event-upcoming .event-time-place {
    color: #616161;
    font-size: .875rem;
}






