@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poetsen+One&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: #fff;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.header {
  width: 100%;
  padding: 35px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
 }

 .logo_container {
    display: flex;
    align-items: center;
  }

 .logo {
    font-family: 'Poetsen One', sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
  }

 .logo:hover {
    color: #d9d9d9;
 }

  .container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 30px;

  }
  
  h1 {
    font-size: 3rem;
    margin-bottom: 40px;
  }

  h2 {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
  
  p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #cccccc;
  }
  
  .email-form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 50px;
  }
  
  .email-form input {
    padding: 12px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #fff;
  }
  
  .email-form button {
    padding: 12px;
    background-color: #00f75a;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .email-form button:hover {
    background-color: #00db4a;
  }
  
  .follow-us {
    margin-top: 10px;
    margin-bottom: 40px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
    }

  .socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    }

  .socials img {
    width: 30px;
    margin: 0 10px;
    filter: brightness(0) invert(1);
  }

  .socials a {
    font-size: 1.8rem;
    color: #fff;
    transition: color 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

    .socials a.instagram:hover {
     color: #e1306c;
    }

    .socials a.twitter:hover {
         color: #1da1f2;
    }

    .socials a.facebook:hover {
         color: #3b5998;
    }  

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap;
    }
  
    .honeypot {
      display: none !important;
      visibility: hidden;
      position: absolute;
      left: -9999px;
    }

    #statusMessage {
      color: #00f75a;
      transition: opacity 0.8s ease;
      display: none;
      position: absolute;
      top: 100%;
      left: 0%;
      width: 100%;
      text-align: center;
      margin-top: 10px;
      transition: opacity 0.8s ease;
      opacity: 1;
    }

    @media screen and (max-width: 768px) {
  .header {
    justify-content: center;
  }

  .logo_container {
    justify-content: center;
  }
}
