:root {
  --bg-color-light: #ffffff;
  --text-color-light: #000000;
  --bg-color-dark: #231f1f;
  --text-color-dark: #f2e27c;
  --accent-color: #f06705;
  --secondary-accent: #8b3c1d;
  --font: 'Segoe UI', sans-serif;
}

[data-theme="dark"] {
  background-color: var(--bg-color-dark);
  color: var(--text-color-dark);
}

body {
  margin: 0;
  font-family: var(--font);
  transition: all 0.3s ease;
  overflow: auto;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: var(--accent-color);
  position: relative;
  z-index: 1000;
}

header .logo img {
  height: 60px;
  width: auto;
}

header nav {
  display: flex;
  gap: 1.5rem;
}

header nav a {
  color: var(--text-color-dark);
  text-decoration: none;
  font-weight: 500;
}

header nav a:hover {
  text-decoration: underline;
}

nav a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav button {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.logo {
  height: 50px;
}

.banner {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #231f1f;
}

.banner img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: none;
}

main {
  padding: 2rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--accent-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 1rem;
}

.partners {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.partner {
  background: var(--secondary-accent);
  padding: 1rem;
  border-radius: 10px;
  color: var(--text-color-dark);
}

@media (min-width: 600px) {
  .partners {
    flex-direction: row;
    justify-content: space-around;
  }
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.team-card {
  background: #231f1f;
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 250px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(35, 35, 35, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(246, 125, 4, 0.844);
}

.team-pfp {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #f9c405;
  margin-bottom: 1rem;
}

.team-card h3 {
  margin: 0.5rem 0 0.25rem;
  font-size: 1.2rem;
}

.role {
  font-size: 0.9rem;
  font-weight: 600;
  color: #777;
  margin-bottom: 0.75rem;
}

.team-card blockquote {
  font-style: italic;
  font-size: 0.9rem;
  color: #ffb347;
  margin: 0;
}


html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background-color: #231f1f;
}

.site-footer {
  background: #2e2e2e;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}

.footer-left, .footer-middle, .footer-right {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-logo {
  max-width: 140px;
  margin-bottom: 15px;
}

.footer-middle ul {
  list-style: none;
  padding: 0;
  margin: 0 20px 0 0;
}

.footer-middle ul li {
  margin-bottom: 8px;
}

.footer-middle ul li a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-middle ul li a:hover {
  color: #ff6600;
}

.footer-right h4 {
  margin-bottom: 10px;
  color: #ff6600;
}

.social-icons a {
  font-size: 1.5em;
  margin-right: 15px;
  color: #ddd;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ff6600;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 0.9em;
  color: #bbb;
}



/* === Hamburger Styling === */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 10000;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s ease;
}

/* === Responsive Header with Styled Dropdown === */
@media (max-width: 768px) {
  header nav {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
    position: absolute;
    top: 70px;
    right: 10px;
    padding: 10px 0;
    border-radius: 12px;
    z-index: 9999;

    /* Animation setup */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.4s ease;
    pointer-events: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }

  header nav.show {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  header nav a {
    padding: 12px 20px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  header nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
  }

  .hamburger {
    display: flex;
  }
}

/* === Hamburger Animation to "X" === */
.hamburger.open div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open div:nth-child(2) {
  opacity: 0;
}
.hamburger.open div:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.hamburger div {
  transition: 0.3s ease;
}

/* === Minimal Scrollbar Styling === */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}

*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.course-box {
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.course-box:hover {
  background-color: rgba(240, 240, 240, 0.2); /* Light highlight */
  box-shadow: 0 4px 12px rgba(239, 124, 2, 0.967);
  transform: translateY(-3px);
}

/* Modal styling */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: #111;
  color: white;
  padding: 20px;
  border-radius: 12px;
  width: 300px;
  text-align: center;
  border: 2px solid orange;
}
.modal-content input {
  display: block;
  width: 90%;
  margin: 10px auto;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid orange;
  background: #222;
  color: white;
}
.modal-content button {
  background: orange;
  color: black;
  border: none;
  padding: 10px 15px;
  margin: 10px;
  border-radius: 6px;
  cursor: pointer;
}
.modal-content button:hover {
  background: white;
  color: orange;
}
.hidden { display: none; }
.close {
  float: right;
  cursor: pointer;
  color: orange;
  font-size: 20px;
}

