@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800&family=Roboto:wght@100;300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');

body {
    margin: 0px;
    padding: 0px;
    top: 0px;
    background-color: #eae8dd;
}

h2, .form-group label, footer p {
    font-family: 'Outfit', sans-serif;
    color: #e98075;
}

h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

p, a {
    font-family: 'Poppins';
}

a {
    text-decoration: none;
}

section {
    margin: auto 5%;
  }

  #logo {
    max-width: 15%;
    margin-left: 0px;
    border-radius: 10%;
  }
  
  header {
    position: sticky;
    top: 0;
    width: 100%;
    height: 80px;
    color: white;
    z-index: 1000;
  }
  
  header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
  }
  .header-content {
    display: flex;
    flex-direction: row;
  }
  
  #menu-icon {
    max-width: 15%;
  }
  
  nav {
    position: sticky;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
    justify-content: space-evenly;
    align-items: center;
    overflow: hidden;
    transition: 0.50s;
    padding-top: 0;
    padding-bottom: 0;
    height: 50vh;
    width: 100%;
  }
  
  nav.hidden {
    height: 0px;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    padding: 10px 40px;
    border-radius: 10px;
    transition: 0.5s;
    background-color: #e98075;
  }
  
  nav a:hover {
    color: rgb(255, 255, 255);
  }

form {
  margin-left: 2%;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
}



form h1 {
    padding: 2%;
    color: #e98075;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    font-size: 14px;
    color: #e98075;
    display: block;
    margin-bottom: 5px;
}

input, area {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s ease-in-out;
}

#message{
  width: 99%;
  border-radius: 5px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.reset-button {
    background-color: #f5bcbc;
    color: #fff;
}

.reset-button:hover {
    background-color: #e89a9a;
}

.submit-button {
    background-color: #e98075;
    color: #fff;
}

.submit-button:hover {
    background-color: #e98075;
}

#location {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 250px;
}

#map {
    height: 400px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 10px;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #e98075;
    gap: 5%;
    width: 100%;
    padding: 5%;
    margin-top: 10%;
}

footer p {
  color: white;
    font-size: 14px;
    margin: 5px 0;
    width: 60%;
}

.footer-link, .footer-contact-info, .footer-social {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    align-items: flex-end;
}

.footer-social .footer-link, a {
    text-decoration: none;
    color: white;
    margin: 5px 0;
    font-size: 14px;
}

#logo-tiktok, #logo-insta {
    max-width: 20%;
}

.footer-image {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

@media only screen and (min-width: 480px) {
    
    #menu-icon {
        display: none;
    }

   nav {
    flex-direction: row;
  }
  nav.hidden {
    height: auto;
  }
  nav a {
    color:#e98075;
    text-decoration: none;
    transition: 1s;
    font-size: 16px;
    background-color: #dddddd00;
  }

a.active, a:hover {
    color: white;
}

header{
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.5));
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
  header .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
  }
    
      button:hover {
        background: #ffffff;
        color: #e98075;
      }

    .form-location-container {
        display: flex;
        justify-content: space-between;
        gap: 25%;
        width: 90%;
    }

    .form-location-container {
        width: 90%;
        margin: 4%;
    }

    #location {
        width: 100%;
    }

    #location {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        width: 1000px;
    }

    footer {
        margin-top: 15%;
        padding: 1%;
    }
}
