@font-face {
  font-family: 'Aeroport';
  src: url('./assets/fonts/Aeroport-regular-trial.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aeroport';
  src: url('./assets/fonts/Aeroport-medium-trial.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aeroport';
  src: url('./assets/fonts/Aeroport-bold-trial.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.concept h2 {
  padding-block:0;
}
p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

ul, ol {
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.5rem;
}

h1,h2,h3,h4,h5,h6 {
  font-size: 2rem;
  padding-block:1rem;

  font-family: "Aeroport", serif;
  color: #005b88
}

.hero {
  text-align: center;
 
}

.concept h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #eb5a4a;
}
/* Examples of using different weights */
.medium-text {
  font-weight: 500;
}

.bold-text {
  font-weight: 700;
}

.header {
  background-color: #eb5a4a;
  padding: 15px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  padding: 10px 0;
}

.logo {
  height: 70px;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 10px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.language-selector {
  display: flex;
  gap: 10px;
}

.language-selector a {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.language-selector a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.language-selector a.active {
  background-color: white;
  color: #eb5a4a;
  font-weight: 500;
}

main {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

footer {
  background-color: #eb5a4a;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* Team Section Styles */
.team-section {
    padding: 25px 0;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 40px;
    justify-content: center;
}

.team-member {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.member-image {
    width: 100%;
    max-width: 125px;
    margin-bottom: 20px;
}

.member-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.member-info {
    width: 100%;
    font-size: 1.2rem;
}

.member-info h3 {
    color: #005b88;
    font-size: 1.4rem;
    margin-bottom: 5px;
    padding-block: 0.5rem;
}
.member-info p{
  font-weight: 400;
  font-size: 0.9em;
}

.impact-education h3{
  color: #eb5a4a;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .team-container {
        flex-direction: column;
        align-items: center;
    }
    
    .team-member {
        width: 100%;
        max-width: 280px;
    }
}

.circle-image {
    border-radius: 50%;
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.rounded-image {
  border-radius: 50%;
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.image-container {
  text-align: center;
  margin: 2rem 0;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-map {
    flex: 1.5;
    min-width: 300px;
}

.contact-info h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
    font-size: 1.5rem;
}

.contact-info h2:first-child {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-info a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #004080;
    text-decoration: underline;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info, .contact-map {
        width: 100%;
    }
    
    .contact-map iframe {
        height: 350px;
    }
}

/* Responsive Navigation */
.burger-menu {
  display: none;
  cursor: pointer;
}

.burger-icon {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0 15px;
}

.burger-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.burger-icon span:nth-child(1) {
  top: 0px;
}

.burger-icon span:nth-child(2) {
  top: 8px;
}

.burger-icon span:nth-child(3) {
  top: 16px;
}

.burger-icon.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.burger-icon.active span:nth-child(2) {
  opacity: 0;
}

.burger-icon.active span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

/* Responsive styles */
@media (max-width: 992px) {
  .header {
    flex-wrap: wrap;
    padding: 15px 20px;
  }
  
  .logo {
    height: 60px;
  }
  
  .burger-menu {
    display: block;
    order: 3;
  }
  
  .nav-menu {
    flex-direction: column;
    width: 100%;
    order: 4;
    display: none;
    padding: 15px 0;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .language-selector {
    order: 2;
  }
  
  .language-selector.active {
    order: 5;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
  
  main {
    margin: 20px auto;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-size: 1.8rem;
  }
  
  .concept h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .header {
    justify-content: space-between;
  }
  
  .logo-container {
    flex: 1;
  }
  
  .language-selector {
    display: none;
  }
  
  .language-selector.active {
    display: flex;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-size: 1.5rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .concept h3 {
    font-size: 1.2rem;
  }
  
  section {
    padding: 15px 0;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 50px;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-size: 1.3rem;
    padding-block: 0.7rem;
  }
  
  .hero h1 {
    font-size: 1.6rem;
  }
  
  .concept h3 {
    font-size: 1.1rem;
  }
  
  p, ul, ol {
    font-size: 0.95rem;
  }
  
  .nav-menu a {
    font-size: 16px;
    padding: 8px 0;
  }
}

/* Fix for container class */
.container {
  width: 100%;
}

