/* Tablet / iPad Styles */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  
  /* Showcase Section */
  .video-background-section .showcase-conent {
    padding: 0 1.5rem;
    text-align: center;
  }

  /* Heading */
  .showcase-conent .l-heading {
    font-size: clamp(1.3rem, 6vw, 2.2rem); /* smaller on phones */
    line-height: 1.1;
    white-space: normal;                   /* allow wrapping if absolutely needed */
    overflow: visible;
    text-overflow: unset;
  }
  /* Lead paragraph */
  .lead {
    font-size: clamp(1rem, 3.5vw, 1.25rem);
  }

 @media screen and (min-width: 768px) and (max-width: 1024px) {

  /* Sign-Up Container adjustments */
  .signup-container {
    flex-direction: row;  /* keep image and form side-by-side */
    gap: 30px;
    justify-content: center;
    align-items: center;
  }

  /* Signup image */
  .signup-image img {
    max-width: 350px;
    width: 100%;
    border-radius: 10px;
  }

  /* Signup content */
  .signup-content {
    padding: 25px;
    max-width: 350px;
    text-align: left;
  }

  /* Headings and paragraph inside signup */
  .signup-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem); /* scales nicely on tablets */
    line-height: 1.2;
  }

  .signup-content p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    margin: 0 0 15px 0; /* clean spacing */
  }

  /* Email input */
  .signup-form input[type="email"] {
    font-size: 15px;
    padding: 10px;
    margin-bottom: 12px;
  }

  /* Privacy checkbox */
  .privacy-agree {
    font-size: 14px;
    margin-bottom: 12px;
  }

  /* Sign-up button */
  .signup-btn {
    display: block;
    margin: 0 auto;       /* center horizontally */
    text-align: center;
    padding: 12px;
    font-size: 16px;
  }

}

/* iPad Pro Landscape Specific */
@media screen and (min-width: 1134px) and (max-width: 1366px) {
  .signup-container {
    gap: 40px; /* a bit more spacing for large screens */
  }

  .signup-btn {
    padding-top: 1rem;
    margin-top: 1rem;
  }
}
}
