body {
  font-family: Verdana, sans-serif;
  margin: 0;
}

#menu-bar {
  background-color: #333;
  #background-color: #a00c;
  padding: 1em;
  display:flex;
  justify-content: space-between;
}

#menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}


#menu-list > li {
    margin-right: 1em;
}

.menu-item {
  position:relative;
}

.nav-link {
  display: block;
  color: white;
  text-decoration: none;
  padding: 1em;
}

.nav-link:hover {
    text-decoration: underline;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #444;
  list-style: none;
  margin: 0;
  padding: 0;
  top: 100%;
  left: 0;
  z-index: 1000;
}

.dropdown-menu li a {
  display: block;
  padding: 0.75em 1em;
  color: white;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background-color: #555;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-toggle::after {
  content: " ▼";
  font-size: 0.6em;
  margin-left: 0.3em;
  color: white; /* Match your nav text */
}

.logo img {
    height: 50px;
}

.top-img {
  width: 100% !important;
}

img {
  vertical-align: middle;
}

.site-content {
  max-width: 90%;
  margin: 2rem auto;   /* centers content horizontally */
  padding: 2rem;        /* adds inner spacing */
  background: #ffe9e4;  /* optional: background to visually separate it */
  #background: #ffe9e0;  /* optional: background to visually separate it */
  #background: #f9f9f9;  /* optional: background to visually separate it */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);  /* subtle depth */
  border-radius: 8px;
  box-sizing: border-box;
}

.table {
  width: 100%;
  margin: 1em 0;
}

table {
  background-color: #fff0f0; 
  #background-color: #faefeb; 
}

th, td {
  padding: 0.75em 1em;
  border: 1px solid #ccc;
}

.organizers {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  #justify-content: center;
  padding: 2rem;
}

.organizer-card {
  background: #fff0f0;
  #background: #f9f9f9;
  border-radius: 10px;
  padding: 1.5rem;
  width: 250px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.organizer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.organizer-card img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  #margin-bottom: 1rem;
}

.organizer-card h2 {
  #margin: 0.5rem 0 0.2rem;
  font-size: 1.2rem;
  color: #333;
}

.organizer-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.organizer-card a {
  color: #0077cc;
  text-decoration: none;
  #font-weight: 500;
}

.organizer-card a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 769px) {
    #menu-bar {
	gap: 1em;
	flex-direction: column-reverse;
	align-items: center;
    }
    
    #menu-list {
	flex-direction: column;
	align-items: center;
	width:100%;
    }

    #menu-list > li {
	margin-right: 0;
    }
    table {
	font-size: 0.9em;
    }
    th, td {
	padding: 0.4em 0.6em;
	border: 1px solid #ccc;
    }
}

