@import url('https://rsms.me/inter/inter.css');

body {
    font-family: 'Inter', sans-serif; 
    margin: 0;
    padding: 0;
    background-color: #282828;
    color: #FFFBEF;
    overflow: auto;
}

h1, p {
  text-align: center; 
  margin: 0 auto; 
  width: 90%; 
  max-width: 800px; 
}

h1 {
  margin-top: 20px;
}

p {
  margin-top: 20px;
  line-height: 1.6; 
  word-break: break-word;
}

.highlight {
  color: #A3B18A; 
  font-weight: bold; 
}

.logo-header {
    text-align: left;
    margin-top: -30px; 
    position: relative;
    padding-left: 10px; 
    z-index: 10; 
    position: static;
}

.logo-header-gallery {
  text-align: left;
  margin-top: -30px; 
  position: relative;
  padding-left: 10px; 
  z-index: 10; 
}

.logo-header-icon {
    width: 60px;
    height: 60px;
    padding: 5px;
    display: block;
}

#header-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 300px; 
  margin: 0;
  padding: 0;
  overflow: hidden;
}


footer {
    text-align: center;
    padding: 10px; 
    margin: 20px 0; 
}

.rounded-social-buttons {
    display: flex;
    justify-content: center;
    gap: 10px; 
}

.social-button {
    width: 50px; 
    height: 50px; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #FFFBEF; 
    text-decoration: none;
    border-radius: 50%; 
    transition: background-color 0.3s, color 0.3s; 
    background-color: transparent; 
}

.social-button:hover {
    background-color: #A3B18A;
    color: #FFFBEF; 
}

.watermark {
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    color: #FFFBEF; 
    margin-right: 20px;
    position: absolute;
    right: 0; 
}

/* Navbar Styles */
.topnav {
    position: absolute; 
    top: 0;
    right: 0; 
    overflow: auto;
    background-color: transparent;
    font-size: 17px;
    z-index: 2; 
    border-radius: 10px;
    padding-bottom: 10px;
  }
  
  .topnav a {
    float: left;
    display: block;
    color: #282828;
    text-align: center;
    padding: 8px 16px;
    margin-right: 10px;
    text-decoration: none;
    font-size: 17px;
  }
  
  .topnav a:hover {
    background-color: #A3B18A;
  }
  

  
  .topnav a.icon {
    display: none;
    font-size: 32px; 
    color: #FFFBEF;
    text-decoration: none;
    line-height: 1; 
  }

  .navItem {
    display: block;
    float: right;
  }

  @media screen and (max-width: 600px) {
    
    .logo-header {
      text-align: left;
      margin-top: -30px; 
      position: relative;
      top: 0.5px;
      padding-left: 10px; 
      z-index: 10; 
      
  }

  .logo-header-gallery {
    text-align: left;
    margin-top: -30px; 
    position: relative;
    top: 40px;
    padding-left: 10px; 
    z-index: 10; 
    
}

    .topnav a:not(:first-child) {display: none;}

    .topnav a.icon {
      float: right;
      display: block;
    }

    .navItem {
      display: none;
    }
  }
  
  @media screen and (max-width: 600px) {
    .topnav.responsive {position: absolute; top: 0; right: 0; overflow: auto; background-color: #282828;}
    .topnav.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
      color: #FFFBEF;
      
    }
    .topnav.responsive :nth-child(2) {margin-top: 30px;}
  }

  
    .form {
      width:100%; 
      align-items: center;
      margin: 0 auto;
    }

    .form-container {
      background-color: #282828;
      padding: 10px 10px 30px 10px;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      text-align: center;
      width: 100%;
      max-width: 400px; 
       
    }

    .form-wrapper {
      display: flex; 
      justify-content: center; 
      align-items: center; 
      min-height: 100vh; 
  }

    .form-container h5 {
      margin: 0 0 20px 0;
      font-size: 24px;
      color: #FFFBEF;
    }

    .form-container p {
      margin: 10px 0;
    }

    .form-input, 
    .form-textarea {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      border: 1px solid #555;
      border-radius: 5px;
      background-color: #282828;
      color: #FFFBEF;
      font-size: 16px;
    }

    .form-textarea {
      height: 150px;
      width: 100%;
    }

    

    .btn-submit {
      background-color: #A3B18A;
      color: #FFFBEF;
      font-size: 16px;
      padding: 10px 15px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .btn-submit:hover {
      background-color: #89A078;
    }

    