/* Reset & Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #121212;
  color: #f0f0f0;
  line-height: 1.6;
  padding-top: 120px;
  transition: background 0.3s ease, color 0.3s ease;
}

a {
  color: #58a6ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.logo-img {
  max-width: 120px;
  max-height: 120px;
  height: auto;
  width: auto;
  display: block;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #1e1e1e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

.logo-container {
  display: flex;
  align-items: center;
}

.school-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #58a6ff;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #f0f0f0;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #58a6ff;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  padding: 5rem 2rem;
  text-align: center;
  width: 100%;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #58a6ff;
  letter-spacing: 3px;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
  color: #cfd8dc;
}

/* SECTIONS */
section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

section h2 {
  font-size: 2rem;
  color: #58a6ff;
  margin-bottom: 1rem;
  border-bottom: 2px solid #58a6ff;
  padding-bottom: 0.5rem;
}

section p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: #e0e0e0;
}

/* FOOTER */
footer {
  background-color: #1e1e1e;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #777;
}

/* THEME - DARK (default) */
html.dark-mode {
  background: #121212;
  color: #f0f0f0;
}

html.dark-mode a {
  color: #58a6ff;
}

html.dark-mode section p {
  color: #e0e0e0;
}

/* THEME - LIGHT */
html.light-mode {
  background: #f8f9fa;
  color: #222;
}

html.light-mode a {
  color: #0066cc;
}

html.light-mode section p {
  color: #222;
}

/* Hamburger Styles */
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #58a6ff;
  cursor: pointer;
}

 
    blockquote {
      font-style: italic;
      color: #888;
      border-left: 4px solid #ff4c4c;
      padding-left: 1em;
      margin: 2em 0;
    }

/* RESPONSIVE NAVIGATION */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-container {
    margin-bottom: 1rem;
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    width: 100%;
    background-color: #1e1e1e;
    padding-left: 0;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    padding: 1rem;
    width: 100%;
  }
}
table thead tr {
  background-color: #58a6ff; /* Bright bootstrap blue */
  color: white; /* Makes text readable */
}
table {
  border: 2px solid #58a6ff; /* Outer border */
  border-collapse: collapse; /* Makes borders merge neatly */
}

table th, table td {
  border: 1px solid #58a6ff; /* Cell borders */
}
.nav-links li .nav-button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

.nav-links li .nav-button:hover {
  text-decoration: underline;
}
/* Theme toggle animation */
#theme-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

#theme-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.theme-icon {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.theme-icon.fade {
  opacity: 0;
  transform: rotate(90deg) scale(0.8);
}

.theme-label {
  transition: opacity 0.3s ease;
}

.theme-label.fade {
  opacity: 0;
}
