/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Navbar Styling */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: orange;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.title {
  font-size: 22px;
  font-weight: bold;
  color: white;
  text-align: center;
  flex-grow: 1;
}

.nav-links {
  display: flex;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 18px;
  margin: 0 10px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.nav-links a:hover {
  color: #2c09ba;
}

.nav-links a i {
  margin-right: 8px;
}

/* Mobile Menu Button */
.menu-button {
  display: none;
  background: white;
  color: orange;
  border: 2px solid orange;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  right: 20px;
  background: orange;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px;
  width: 200px;
}

.mobile-menu a {
  display: block;
  padding: 10px;
  text-align: left;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

#menu-toggle {
  display: none;
}

#menu-toggle:checked ~ .mobile-menu {
  display: flex;
}

.mobile-menu a:hover {
  color: rgb(66, 8, 193);
}

/* Page Content Section */
.page-content {
  margin-top: 100px;
  padding: 40px;
  text-align: center;
}

.page-content h2 {
  font-size: 32px;
  color: #ff6600;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-content p {
  font-size: 18px;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Social Media Section */
.social-media-section {
  text-align: center;
  background: rgba(245, 241, 241, 0.842);
  padding: 20px 0;
  margin-top: 20px;
  margin-bottom: 40px;
}

.social-media-title {
  font-size: 24px;
  font-weight: bold;
  color: #ff6600;
  margin-bottom: 10px;
}

.social-media-container {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-media-container a {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.3s;
}

.social-media-container a:hover {
  transform: scale(1.1);
}

.social-media-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .nav-links {
      display: none;
  }
  .menu-button {
      display: block;
  }
  .social-media-container a {
      width: 40px;
      height: 40px;
  }
}

/* Footer */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: orange;
  color: white;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
}

/* Team Section */
.team-section {
  padding: 60px 20px;
  background: #fef8f4;
  text-align: center;
}

.team-title {
  font-size: 25px;
  font-weight: bold;
  color: #b55414;
  margin-top: 30px;
  margin-bottom: 20px;
}

.team-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.team-card {
  background: whitesmoke;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px 20px;
  width: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.team-card img {
  width: 120px;
  height: 150px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 3px solid #ff6600;
}

.team-card h3 {
  font-size: 20px;
  color: #333333;
  margin-bottom: 5px;
}

.team-card p {
  font-size: 16px;
  color: #050303;
}

.team-card a {
  text-decoration: none !important;
  color: blue;
  font-weight: bold;
}

.team-card a:hover {
  text-decoration: none;
  color: #c24900;
}

@media screen and (max-width: 768px) {
  .team-container {
      flex-direction: column;
      align-items: center;
  }
}

/* Contact Section */
.contact-section {
  background-color: #fff3e6;
  padding: 50px 20px;
  text-align: left;
  border-top: 2px solid #ff6600;
}

.contact-title {
  font-size: 28px;
  color: #ff6600;
  font-weight: bold;
  margin-bottom: 25px;
}

.contact-content {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.contact-content p {
  margin-bottom: 10px;
}

.contact-content a {
  color: blue;
  text-decoration: none !important;
  font-weight: bold;
}

.contact-content a:hover {
  text-decoration: none;
  color: #c24900;
}
