* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html, body {
    height: 100%;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background: #f4ebd0;
    line-height: 1.6;
  }
  
  .wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
  
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
  }
  
  .logo {
    width: 270px;
    height: auto;
  }
  
  main {
    flex: 1;
  }
  
  .hero {
    padding: 100px 20px;
    text-align: center;  
  }
  
  .hero-header {
    max-width: 700px;
    margin: 0 auto 60px;
  }
  
  .hero-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .hero-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .hero-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; 
  }
  
  /* Feature box on left */
  .feature-box {
    flex: 1 1 400px;
    max-width: 500px;
  }
  
  .feature-box img {
    width: 100%;
    height: auto;
  }
  
  .waitlist {
    flex: 1 1 400px;
    max-width: 500px;
    text-align: center;
    padding: 20px 30px;
    position: relative;
  }
  
  .waitlist h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .hand-drawn-lines {
    position: relative;
    display: inline-block;
  }
  
  .hand-line {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
  }
  
  .left-line {
    left: -50px;
  }
  
  .right-line {
    right: -50px;
  }
  
  .waitlist form {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .input-wrapper {
    position: relative;
    width: 100%;
  }
  
  .input-wrapper input[type="email"] {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #d6ad60;
    background-color: #f4ebd0;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
  }
  
  .input-wrapper input[type="email"]::placeholder {
    color: #122620;
    font-weight: 500;
  }
  
  .airplane-icon {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    pointer-events: none;
  }
  
  .champage-icon {
    width: 16px;
    margin-right: 5px;
  }
  
  button {
    display: block;
    width: 100%;
    margin-top: 15px;
    padding: 16px;
    background: #d6ad60;
    color: #122620;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  
  button:hover {
    background: #6b4ede;
  }
  
  .small-text {
    font-size: 0.90rem;
    color: #122620;
    margin-top: 15px;
  }
  
  
  .early-bird {
    display: inline-flex;   
    align-items: center;       
    justify-content: center;  
    font-size: 0.95rem;
    color: #b68d40;
    margin-top: 10px;
    font-weight: 500;
    text-align: center;        
  }
  
  footer {
    background: #f4ebd0;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    color: #122620;
  }
  
  footer a {
    color: #b68d40;
    text-decoration: none;
    margin: 0 5px;
  }
  
  footer a:hover {
    text-decoration: underline;
  }

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0,0,0,0.4);
    animation: fadeIn 0.3s ease;
  }
  
  .modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: slideUp 0.3s ease;
    position: relative;
    line-height: 1.6;
    color: #333;
    font-family: 'Inter', sans-serif;
  }

  .close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #aaa;
    cursor: pointer;
    transition: color 0.2s ease;
  }
  
  .close-button:hover {
    color: #000;
  }
  
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }
  
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (max-width: 768px) {
    .hero-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0;
    }
  
    .waitlist {
        text-align: center;
      }
      .hand-line {
        display: none;
      }
  
    .waitlist h2 {
      text-align: center;
    }
  
    .feature-box,
    .waitlist {
      max-width: 90%;
    }

    .feature-box{
        flex: 1 1 100px;
    }
  
    .input-wrapper input[type="email"] {
      width: 100%;
    }

    .hero{
        padding: 40px 20px 0px 20px;
      }
  }
  
  @media (max-width: 480px) {
    header {
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
    }
  
    .logo {
      width: 180px;
    }
  
    form {
      width: 100%;
    }
  
    input[type="email"] {
      width: 100%;
    }

    .feature-box{
        flex: 1 1 100px;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
      }

      .hero{
        padding: 40px 20px 0px 20px;
      }
  }
  