/* Media query for tablets */
@media (min-width: 768px) {
    .grid-container-flex {
      font-size: 1.2rem;
    }
  }
  
  /* Media query for desktops */
  @media (min-width: 1024px) {
    .grid-container-flex {
      font-size: 1.7rem;
    }
  }

  body {
    margin: 0;
    font-family: 'Inter';
    background-color: #F8F8F7;
  }
  
  .navbar {
    background-color: #80001F; /* Light pastel blue */
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.4rem;
    font-family:'Playfair Display';
    font-weight: bold;
    color: white;

  }
  
  .nav-links {
    display: flex;
    gap: 20px;
    font-family:'Playfair Display';
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    border-radius: 50px;
    padding: 5px 10px;       /* Ensures consistent height and spacing */
    line-height: 1.5;         /* Helps with vertical alignment */
    display: inline-block;    /* Makes padding work properly */
  }


  a:hover { 
    text-decoration: underline; 
}

.nav-links a.current {
  border: 2px solid white;
  border-radius: 50%;
  padding: 5px 10px;
  font-weight: bold;
}
  
  .menu-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  
  .menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: white;
  }
  
 /* Small screen behavior */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #80001F;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    padding: 10px;
  }
  
  .nav-links.show {
    display: flex;
  }

  .menu-icon {
    display: flex;
  }
}

#main-content{
  width: 80%; 
  float: center;
  margin-top: 30px;
  margin-right: 30px;
}

h1 {
  font-family:'Playfair Display';
  color: #80001F;
  text-align: center;
  font-size: 4.5rem;
  margin-bottom: 10px;
  margin-top: 50px;
}

h2 {
  font-family:'Playfair Display';
  color: white;
  text-align: center;
  font-size: 4.5rem;
  margin-bottom: 10px;
  margin-top: 50px;
}

p {
  font-family: 'Inter';
  color: #282828;
  text-align: center;
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: 120px;
  margin-right: 120px;
}

img {
  padding: 5px;
  max-width: 65%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#qualifications{
  width: 100%; 
  float: center;
  background-color: #80001F;
  margin-top: 30px;
  margin-bottom: 0px;
  padding: 5px;
}





