@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Maven+Pro:wght@400..900&display=swap");
html,
body {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: black;
  font-family: "JetBrains Mono", monospace;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  margin: 5px 100px 0 100px;
  flex-wrap: wrap;
  position: relative; 
  z-index: 1000; 
}

.navbar-start {
  display: flex;
  align-items: center;
}

.logo {
  height: auto;
  width: 240px;
  max-width: 100%;
}

.nav-links {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Maven Pro", serif;
  font-weight: 400;
}

.nav-links li a {
  color: black;
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid black;
  border-radius: 5px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-links li a:hover {
  background: rgb(0, 0, 0);
  color: white;
}

.dropdown {
  position: relative;
  display: none; 
  z-index: 1001; 
}

.dropdown-btn {
  font-size: 24px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.dropdown-btn:hover {
  background: darkgray;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  list-style: none;
  top: 100%;
  left: 0;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 150px;
  z-index: 1002; 
}

.dropdown-content li {
  padding: 8px;
}

.dropdown-content li a {
  text-decoration: none;
  color: black;
  display: block;
  padding: 8px 10px;
  transition: background 0.3s ease;
}

.dropdown-content li a:hover {
  background: black;
  color: white;
  border-radius: 5px;
}

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

.section {
  padding: 2px;
  text-align: center;
  background-color: #1d1d1d;
}

.title {
  font-weight: bold;
  color: #ffffff;
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  margin: 0;
}

.text {
  font-size: 1rem;
  color: #ffffff;
  font-family: "Maven Pro", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    background-color: #1d1d1d; /* #878787 */
  }
  
  .team-member {
    background-color: #292929; /* #c0c0c0 */
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 28px 0 28px 0;
  }
  
  .team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  }
  
  .profile-pic {
    width: 120px;
    height: 120px;
    margin: 20px auto 10px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
  }
  
  .profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: fit;
  }
  
  .team-member-info {
    padding: 15px;
    color: #fff;
    
  }
  
  .team-member-info h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #f1c40f;
    margin-bottom: 5px;
    font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-style: normal;
  }
  
  .team-member-info h4 {
    font-size: 1rem;
    color: #3498db;
    margin-bottom: 5px;
    font-family: "Maven Pro", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  }
  
  .team-member-info p {
    font-size: 0.85rem;
    color: #b2b2b2;
    font-family: "Maven Pro", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  }

/* Mentor Section */
.mentor {
  background-color: #F6C344;
  color: #000000;
  padding: 30px;
  text-align: center;
}
.mentor h3{
    font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  margin: 0;
}
.mentor p{
    font-family: "Maven Pro", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.footer {
    text-align: center;
    background: #353A3F;
    color: white;
    padding: 10px;
    font-family: "Maven Pro", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }


/* Responsive Navbar */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .dropdown {
    display: block;
  }
}
