/*---------------------Fonts-----------------*/
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
/*---------------------Fonts-----------------*/
/*---------------------Roots-----------------*/

:root {
    ---yellow: #c29b22;
    ---white: #ffffff;
    ---Background: #000000;
    ---black: #222222;
    ---border: #e5e5e5;
}

    section.newsletter {
      padding: 60px 20px;
      text-align: center;
    }

    .newsletter h2 {
      font-size: 60px;
      letter-spacing: 1px;
      margin-bottom: 10px;
      color: var(---white);
    }

    .newsletter #newspara {
      font-size: 20px;
      color: var(---white);
      line-height: 1.6;
    }

    .newsletter form {
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .newsletter input[type="email"] {
      width: 545px;
      height: 102px;
      padding: 20px;
      font-size: 16px;
      border: 1px solid #444;
      background-color: var(---Background);
      color: var(---white);
      border-radius: 12px;
      outline: none;
    }

    .newsletter button {
      height: 102px;
      padding: 0 35px;
      background: linear-gradient(to right, #b88a00, #d6af39);
      color: var(---white);
      font-weight: bold;
      font-size: 20px;
      border: none;
      cursor: pointer;
      border-radius: 12px;
      transition: 0.3s ease;
    }

    .newsletter button:hover {
      opacity: 0.9;
    }

    .newsletter-message {
      margin-top: 20px;
      font-size: 15px;
      color: #4caf50;
    }


    /* ✅ Fully responsive */
    @media (max-width: 768px) {
      .newsletter input[type="email"],
      .newsletter button {
        width: 100%;
        height: 70px;
      }

      .newsletter h2 {
        font-size: 30px;
      }

      .newsletter #newspara {
        font-size: 12px;
      }
    }