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

  @font-face {
    font-family: "BDO Grotesk";
    src: url("./assets/fonts/BDOGrotesk-Light.ttf");
  }

  body,
  html {
    height: 100%;
    font-family: "BDO Grotesk", serif;
    background-color: #9d7e68;
  }

  ::selection {
    background: #835535;
    color: white;
  }

  .bg-img {
    object-fit:fill;
  }

  nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    background-color: #443022;
    display: flex;
    justify-content: space-between;
    padding: 12px;
    z-index: 1000;
  }

  .links {
    display: flex;
    margin-left: auto;
    gap: 1rem;
    font-size: large;
  }

  .links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
  }

  .section-link {
    color: white;
    text-decoration: none;
    cursor: default;
  }

  .section-links {
    font-size: x-large;
    text-align: left;
    display: flex;
    flex-direction: column;
  }

  .section-links a {
    color: white;
    text-decoration: none;
    float: left;
    padding: 0;
  }

  section {
    height: 100vh;
    padding: 50px 20px;
    color: white;
    text-align: center;
  }

  section:nth-child(odd) {
    background-color: #9d7e68;
  }

  section:nth-child(even) {
    background-color: #c1ad9e;
  }

  .background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .background-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  
  .title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 30%;
  }

  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }

  .hamburger {
    display: none;
    cursor: pointer;
    margin-left: auto;
  }

  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px;
  }

  .section-title {
    font-size: 3em;
    margin-bottom: 20px;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    text-align: center;
  }

  .mobile-nav a {
    padding: 1rem;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .section-div {
    width: 100%;
    display: flex;
    align-items: center; 
    gap: 20px; 
  }

  .section-div  * {
    padding: 20px;
  }
  
  .section-img {
    max-width: 700px;
    max-height: 700px;
  }

  .section-img2 {
    max-width: 700px;
    max-height: 700px;
  }
  
  .section-text {
    text-align: justify; 
    font-size: x-large;
  }

  .half {
    width: 50%;
  }

  .map {
    border: 0;
    width: 600px;
    height: 450px;
    padding: 15px;
  }

  .footer-text {
    text-align: center;
    padding: 20px;
  }

  .socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
  }

  @media (max-width: 768px) {
    .half {
      width: 100%;
      padding: 0;
    }

    .section-links {
      font-size: medium;
    }

    .title {
      width: 80%;
    }

    nav {
      display: flex;
      justify-content: center;
    }
    
    .links {
        display: none;
      }

    .hamburger {
      display: flex;
    }

    .mobile-nav {
      display: none;
    }

    .mobile-nav.active {
      display: flex;
    }

    .section-div {
      flex-direction: column; 
      text-align: center; 
    }

    .section-img {
      width: 100%;
    }

    .section-img2 {
      max-height: 400px;
    }


    .section-text {
      text-align: left;
      font-size: small;
    }

    .map {
      width: 100%;
      height: 300px;
    }
  }


  