/* General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  @font-face {
    font-family: "Helvetica Neue";
    src: url(./fonts/helveticaneue.woff2);
  }
  
  html,
  body {
    width: 100%;
    height: 100%;
    background: #d1cccc; /* Soft background */
    font-family: "Helvetica Neue";
  }
  
  /* Buttons */
  button {
    background: none;
    outline: none;
    border: 1px solid #333; /* Darker border for visibility */
    text-transform: uppercase;
    padding: 0.5em 1em;
    border-radius: 2em;
    cursor: pointer;
    color: #333; /* Darker text */
  }
  
  button#toggle {
    background: #f7320f; /* Medium slate blue for contrast */
    color: #050505; /* White text for contrast */
  }
  
  button:hover {
    background: #2E8B57; /* Coral for hover */
    color: #fff; /* White text for contrast */
  }
  
  /* Hero Section */
  .nav,
  .tagline {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    font-size: 12px;
    padding: 1.5em 0;
    text-align: center;
  }
  
  .tagline {
    bottom: 0;
  }
  
  .links {
    position: absolute;
    bottom: 1.5em;
    left: 1.5em;
    display: flex;
    gap: 1em;
  }
  
  .header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  
  .header-text h1 {
    font-family: "Neue Montreal";
    font-size: 20vw;
    font-weight: lighter;
    color: #c94343; /* Royal blue for clear contrast */
  }
  
  .cta {
    margin: 1em 0;
  }
  
  /* Overlay */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #f7f8f8; /* Sea green for good contrast */
    display: flex;
    padding: 1em;
    opacity: 0;
    pointer-events: none;
  }
  
  .col:nth-child(1) {
    flex: 1;
    height: 100%;
    border-right: 1.5px solid #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 3em;
  }
  
  .col:nth-child(2) {
    flex: 2;
    padding: 0 1em;
  }
  
  .logo {
    width: max-content;
    border: 1px solid #f5f5f5;
  }
  
  .logo a {
    padding: 0 0.25em;
    text-decoration: none;
    color: #f5f5f5;
    text-transform: uppercase;
  }
  
  .about {
    width: 40%;
    color: #f5f5f5;
    margin: 1em 0;
  }
  
  .copy {
    display: flex;
    justify-content: space-between;
    color: #f5f5f5;
    text-transform: uppercase;
    font-size: 12px;
  }
  
  .send {
    position: absolute;
    bottom: 0em;
  }
  
  .send h1 {
    color: #2E8B57;
    font-family: 'Medieval', cursive;

    text-transform: uppercase;
    font-weight: lighter;
    font-size: 300px;
  }
  
  /* Form */
  .form label {
    color: #0c0c0c;
    font-size: 20px;
  }
  
  input[type="text"] {
    width: 50%;
    outline: none;
    background: none;
    border: none;
    border-bottom: 1px solid #04fa62;
    padding: 0.5em 0;
    margin: 1em 0;
    color: #0a0a0a;
  }
  
  ::placeholder {
    text-transform: uppercase;
    color: #f80808;
    font-size: 12px;
  }
  
  .form button {
    color: #fff;
    background: #f12207; /* Dark background for button */
    border: 2px solid #333; /* Dark border */
  }
  
  .jobs {
    margin: 1em 0 3em 0;
    display: flex;
    gap: 1em;
  }
  
  .job-items label {
    text-transform: uppercase;
    font-size: 12px;
  }
  
  .item {
    display: flex;
    gap: 0.5em;
    align-items: center;
  }
  
  .send,
  .header {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  
  .send h1 span,
  .header-text h1 span {
    position: relative;
    top: 500px;
  }
  
  #back {
    cursor: pointer;
  }
  
  /* Navbar */
  .navbar-menu {
    display: flex;
    flex-direction: row;
    gap: 1.5em;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    transition: max-height 0.3s;
  }
  .navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    margin-left: 10px;
  }
  .navbar-toggle span {
    display: block;
    height: 4px;
    width: 28px;
    background: #fa0303;
    border-radius: 2px;
    transition: 0.3s;
  }
  
  /* Media Queries */
  @media (max-width: 900px) {
    .logo {
      margin-bottom: 2em;
    }
  
    .links {
      display: none;
    }
  
    .overlay {
      flex-direction: column-reverse;
    }
  
    .col:nth-child(1) {
      border: none;
    }
  
    .send {
      right: 1em;
    }
  
    .send h1 {
      font-size: 150px;
    }
  }
  
  @media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }
    .navbar-menu {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        max-height: 0;
        overflow: hidden;
        gap: 0;
        padding: 0;
        box-shadow: 0 2px 8px rgba(33,137,255,0.07);
        display: none;
    }
    .navbar-menu.open {
        display: flex;
        max-height: 400px;
        padding: 0.5em 0;
    }
    .navbar-menu li {
        display: block;
        text-align: left;
        padding: 0.7em 1.2em;
    }
  }

  .tren-red {
    color: #e53935 !important;
    font-weight: bold;
    letter-spacing: 0.03em;
  }