
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playwrite+CU:wght@100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Edu+AU+VIC+WA+NT+Pre:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Edu+SA+Hand:wght@400..700&family=Michroma&display=swap');


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

body{
    background-color: #000;
}


a {
    color: white;
    text-decoration: none;
  }

  /* ======= NAVBAR ======= */
  .navbar {
    width: 100%;
    padding: 15px 20px;
    background-color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 999;
    color: #fff;
    font-family: "Roboto", sans-serif;

  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
  }

  .logo span {
    font-weight: bold;
    font-size: 28px;
  }

  .menu-toggle {
    font-size: 28px;
    cursor: pointer;
    display: block;
  }

  .nav-menu {
    position: fixed;
    font-family: 'Roboto', 'sans-serif';
    top: 0;
    right: -300px;
    width: 580px;
    height: 100vh;
    background-color: #000000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
  }

  .nav-menu.active {
    right: 0;
    opacity: 1;
    animation: slideIn 0.4s ease forwards;
  }

  .nav-menu a {
    font-size: 18px;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
    font-size: 2rem;
    color: #868686;
  }

  .close-btn {
    text-align: right;
    font-size: 30px;
    cursor: pointer;
    margin-bottom: 10px;
  }

  .contact-info {
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    font-family: 'Roboto', 'sans-serif';
  }

  @keyframes slideIn {
    from {
      right: -300px;
      opacity: 0;
    }
    to {
      right: 0;
      opacity: 1;
    }
  }



.contact-container {
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 40px;
    background-color: #f8f8f8;
    justify-content: center;
    margin-top: 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.763), rgba(0, 0, 0, 0.597)), url(img/fish.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
  
  .contact-form {
    flex: 1 1 350px;
    background: transparent;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid #ffffff;
  }
  
  .contact-form h2 {
    font-family: 'Roboto', 'sans-serif';
    margin-bottom: 20px;
    color: #f7f7f7;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    color: #ffffff;
    text-transform: lowercase;
    background-color: transparent;
  }
  
  .contact-form button {
    padding: 12px 25px;
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .contact-form button:hover {
    background-color: #0056b3;
  }
  
  .success-message {
    display: none;
    margin-top: 15px;
    padding: 12px;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    border-radius: 6px;
    font-size: 15px;
  }
  
  .map {
    flex: 1 1 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
  }
  
  @media (max-width: 768px) {
    .contact-container {
      padding: 20px;
      width: 100%;
    }
  
    .map iframe {
      min-height: 300px;
    }
  
  }


/* __________FOOTER */

.site-footer{
    width: 100%;
    background-color: #000;
    margin-top: 50px;
    color: #f8f8f8;
    font-family: 'Roboto', 'sans-serif';
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
    padding: 20px;
  }
  
  .footer-column {
    flex: 1 1 270px;
    margin: 20px;
  }
  
  .footer-column h2, .footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: bold;
    font-family: "Michroma", "sans-serif";
  }
  
  .footer-column p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.5;
    padding: 5px 0px;
  }
  
  .social-icons{
    background-color: #ff0000;
    margin-top: 20px;
    padding: 5px 8px;
  }
  
  .social-icons a {
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
  }
  
  .newsletter-form input[type="email"] {
    padding: 10px;
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    color: white;
    margin-bottom: 10px;
    text-decoration: none;
    text-transform: lowercase;
  }
  
  .newsletter-form .arrow-btn {
    background: none;
    border: none;
    color: rgb(246, 0, 0);
    font-size: 18px;
    cursor: pointer;
    align-self: flex-end;
    margin-top: -40px;
  }
  
  .newsletter-form .policy {
    display: flex;
    align-items: center;
    margin-top: 20px;
  }
  
  .newsletter-form .policy label {
    margin-left: 5px;
    font-size: 13px;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 13px;
  }
  
  .footer-column, .fas {
    margin-right: 8px;
  }
  
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: -10rem;
    }
  
    .footer-column{
      flex-direction: column;
      border-bottom: 1px solid #ff0000;
    }
  
    .footer-column {
      margin: 20px 0;
    }
    .social-icons{
      background-color: #ff000064;
    }
    .footer-column, .fas {
      margin-right: 8px;
    }
  
    .footer-bottom{
      padding: 20px 0;
    }
    
  }

  @media (max-width: 660px){
    .nav-menu {
      position: fixed;
      font-family: 'Roboto', 'sans-serif';
      top: 0;
      right: -300px;
      width: 100%;
      height: 100vh;
      text-align: center;
      background-color: #000000d6;
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      opacity: 0;
      transition: all 0.3s ease;
    }
    .navbar span{
      font-size: 0.79rem;
      text-transform: uppercase;
    }
  }