body{
  font-family: 'Arial', sans-serif;
}

/* Header */
.main-header {
  background-image: url('../img/panelBackGround.jpg');
  padding: 20px 10px; 
  text-align: center;
}

.header-content h1 {
  font-size: 36px; 
  color: #ffffff;
  margin: 0;
} 

.header-content img {
  max-width: 100px; 
  height: auto;
}

/* Navigation */
.tab-bar {
  display: flex;
  justify-content: center; 
  background-color: #333;
  margin: 0; 
  padding: 0;
  list-style-type: none;
}

.tab-bar li a {
  color: #ffcc00;
  text-decoration: none;
  padding: 15px 20px;
  display: block; 
  font-weight: bold;
  text-transform: uppercase;
}

.tab-bar li a:hover {
  background-color: #444;
}

/* Intro Section */
.intro {
  background-image: url('../img/panelBackGround.jpg');
  text-align: center;
  margin: 20px auto;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
}

.intro strong {
  color: #ffffff;
}

/* video background */
#background-video{
  position:fixed;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  object-fit:cover;
  z-index: -1;
}

/* Team Section */
.team-section {
  text-align: center;
  padding-top: 30px;
}

.team-section h2 {
  font-size: 28px; 
  color:#ffffff;
  margin-bottom: 20px;
  width: 100%;
}

.team-members {
  background-image: url('../img/videoBackground.mp4');
  display: flex; 
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.member-container {
  flex: 1 1 200px;
  background-image: url('../img/panelBackGround.jpg'); 
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  width: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.member-container:hover {
transform: scale(1.05);
}

.member-container img {
  width: 150px; 
  height: 150px; 
  border-radius: 50%; 
  object-fit: cover; 
  margin-bottom: 10px;
}

.info-container h3 {
  font-size: 20px; 
  color: #ffffff;
  margin: 10px 0;
}

.info-container p {
  font-size: 16px;
  color: #ffffff;
}

/* Sponsor and Mentor Info */
.sponsor-info,
.mentor-info {
  background-image: url('../img/panelBackGround.jpg');
  text-align: center;
  padding: 20px;
  margin: 20px auto;
  max-width: 600px; 
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  color: #ffffff;
}

.sponsor-info h2,
.mentor-info h2 {
  font-size: 28px; 
  color: #ffffff; 
  margin-bottom: 10px;
}

.sponsor-info p,
.mentor-info p {
  font-size: 18px; 
  color: #ffffff;
}
.sponsor-info img,
.mentor-info img {
  width: 150px; 
  height: 150px;
  }

/* Footer */
footer {
  background-color:#333;
  color: #ffcc00; 
  text-align: center;
  padding: 20px;
}

footer a{
  color:#ffcc00;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover{
  text-decoration:underline;
}