/* ===== COLOR PALETTE =====
1. #06061F – Dark Navy / Background
2. #160D4C – Deep Royal Purple
3. #06066B – Midnight Blue
4. #2968FF – Electric Blue
5. #789EFF – Soft Blue
6. #9EC5F7 – Light Blue
7. #E0E0E0 – Light Gray
8. #FFFFFF – White
9. #D9D9D9 - Off White
10. #000000 – Black
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  background-color: #06061F; /* Dark background for hero/nav */
  color: ##D9D9D9; /* Default light text */
}

/* ===== Light Sections (after hero) ===== */
.about,
.calendar,
section {
  background-color: #FFFFFF; /* White background */
  color: #06061F; /* Dark navy text */
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #2968FF; /* Electric Blue headers */
}

section p {
  text-align: center;
  max-width: 800px;
  margin: auto;
  color: #06061F; /* Navy text on white */
}

/* ===== Container ===== */
.container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== Header & Navigation ===== */
header {
  background-color: #160D4C; /* Deep Royal Purple */
  color: #E0E0E0;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  color: #9EC5F7; /* Light Blue accent */
}

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

nav ul.menu li {
  position: relative;
}

nav ul.menu a {
  color: #E0E0E0;
  text-decoration: none;
  padding: 5px 8px;
  display: block;
  transition: color 0.3s;
}

nav ul.menu a:hover {
  color: #2968FF; /* Electric Blue on hover */
}

/* ===== Dropdown Menu ===== */
ul.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #06066B; /* Midnight Blue */
  padding: 10px 0;
  border-radius: 5px;
  min-width: 180px;
  z-index: 100;
}

ul.dropdown li a:hover {
  background-color: #789EFF; /* Soft Blue hover */
  color: #06061F;
  border-radius: 3px;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 80vh;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  border-bottom: 4px solid #2968FF; /* Line under video */
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ===== Mini Calendar ===== */
#mini-calendar {
  float: right;
  width: 350px;
  margin: 20px;
  background: #999999; /* Soft white card */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 15px;
}

#mini-calendar h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #2968FF;
}

.calendar-mini-container {
  text-align: center;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.calendar-body ul {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.calendar-body li {
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  font-size: 0.9rem;
  color: #06061F; /* Dark navy numbers */
}

.calendar-body li.active {
  background: #2968FF; /*Current Day Color */
  color: #FFFFFF; /*Affects current Day # color */
  font-weight: bold;
}

.calendar-body li.has-event {
  background: #9EC5F7;
  color: #06061F;
  font-weight: 600;
}

/* Tooltip for event preview */
.calendar-body li .tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #160D4C;
  color: #FFFFFF;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.calendar-body li:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

/* ===== Buttons / Call-to-Action ===== */
button, .btn {
  background-color: #2968FF; /* Electric Blue */
  color: #FFFFFF; /* White text on buttons */
  border: none;
  padding: 10px 20px;
  margin: 10px 0;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 5px;
  transition: background 0.3s;
}

button:hover, .btn:hover {
  background-color: #789EFF; /* Soft Blue hover */
  color: #06061F;
}

/* ===== Footer ===== */
footer {
  background-color: #160D4C;
  color: #E0E0E0;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}
