/* Basic styles */

@font-face {
    font-family: 'Gill Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Gill Sans'), url('https://fonts.cdnfonts.com/s/58185/Gill Sans.woff') format('woff');
}
@font-face {
    font-family: 'Gill Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Gill Sans'), url('https://fonts.cdnfonts.com/s/58185/GillSans Condensed.woff') format('woff');
}
@font-face {
    font-family: 'Gill Sans';
    font-style: italic;
    font-weight: 400;
    src: local('Gill Sans'), url('https://fonts.cdnfonts.com/s/58185/Gill Sans Italic.woff') format('woff');
}
@font-face {
    font-family: 'Gill Sans';
    font-style: normal;
    font-weight: 300;
    src: local('Gill Sans'), url('https://fonts.cdnfonts.com/s/58185/Gill Sans Light.woff') format('woff');
}
@font-face {
    font-family: 'Gill Sans';
    font-style: italic;
    font-weight: 300;
    src: local('Gill Sans'), url('https://fonts.cdnfonts.com/s/58185/Gill Sans Light Italic.woff') format('woff');
}
@font-face {
    font-family: 'Gill Sans';
    font-style: normal;
    font-weight: 500;
    src: local('Gill Sans'), url('https://fonts.cdnfonts.com/s/58185/Gill Sans Medium.woff') format('woff');
}
@font-face {
    font-family: 'Gill Sans';
    font-style: italic;
    font-weight: 500;
    src: local('Gill Sans'), url('https://fonts.cdnfonts.com/s/58185/Gill Sans Medium Italic.woff') format('woff');
}
@font-face {
    font-family: 'Gill Sans';
    font-style: normal;
    font-weight: 700;
    src: local('Gill Sans'), url('https://fonts.cdnfonts.com/s/58185/Gill Sans Bold.woff') format('woff');
}
@font-face {
    font-family: 'Gill Sans';
    font-style: normal;
    font-weight: 700;
    src: local('Gill Sans'), url('https://fonts.cdnfonts.com/s/58185/GillSans Condensed Bold.woff') format('woff');
}
@font-face {
    font-family: 'Gill Sans';
    font-style: italic;
    font-weight: 700;
    src: local('Gill Sans'), url('https://fonts.cdnfonts.com/s/58185/Gill Sans Bold Italic.woff') format('woff');
}
@font-face {
    font-family: 'Gill Sans';
    font-style: normal;
    font-weight: 900;
    src: local('Gill Sans'), url('https://fonts.cdnfonts.com/s/58185/Gill Sans Heavy.woff') format('woff');
}
@font-face {
    font-family: 'Gill Sans';
    font-style: italic;
    font-weight: 900;
    src: local('Gill Sans'), url('https://fonts.cdnfonts.com/s/58185/Gill Sans Heavy Italic.woff') format('woff');
}
  

                
                
body {
    font-family: 'Gill Sans', Calibri, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F5F5F5;
  }
  
  header {
    background-color: #003366;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo h1 {
    margin: 0;
    font-family: 'Gill Sans', sans-serif;
  }
  
  nav {
    position: relative;
  }
  
  .nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
  }
  
  .nav-toggle .hamburger {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: 0.4s;
  }
  
  .nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
  }
  
  .nav-menu li {
    margin-left: 20px;
  }
  
  .nav-menu a {
    color: #fff;
    text-decoration: none;
    font-family: 'Gill Sans', sans-serif;
  }
  
  /* Hero Section */
  .hero-section {
    background-color: #003366;
    background-image: 'pictures/header.jpg';
    color: #fff;
    padding: 50px 20px;
    text-align: center;
  }
  
  .hero-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  .cta-button {
    background-color: #5e5e5e;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Gill Sans', sans-serif;
  }
  
  /* About Section */
  .about-section {
    padding: 50px 20px;
    background-color: #F5F5F5;
    text-align: center;
  }
  
  .about-section h2 {
    font-family: 'Gill Sans', sans-serif;
  }
  
  /* Experience Section */
  .experience-section {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .experience-section h2 {
    font-family: 'Gill Sans', sans-serif;
    font-style: italic;
  }
  
  .experience-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .experience-list li {
    margin-bottom: 20px;
  }
  
  /* Picture Gallery Section */
  .gallery-section {
    padding: 50px 20px;
    background-color: #F5F5F5;
  }
  
  .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .gallery-item {
    flex: 1 1 calc(33.333% - 20px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .gallery-item p {
    padding: 10px;
    text-align: center;
    font-family: 'Gill Sans', sans-serif;
  }
  
  /* Contact Section */
  .contact-section {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .contact-section h2 {
    font-family: 'Gill Sans', sans-serif;
  }
  
  .contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .contact-info li {
    margin-bottom: 10px;
  }
  
  /* Footer */
  footer {
    background-color: #003366;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
  }
  
  /* Mobile styles */
  @media (max-width: 768px) {
    .nav-toggle {
      display: block;
    }
  
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: #003366;
    }
  
    .nav-menu li {
      margin: 10px 0;
      text-align: center;
    }
  
    .nav-menu.show {
      display: flex;
    }
  }
  