/*********************************************
  NIGHT GAME DRIVES PAGE STYLES (Honeymoon-Inspired)
**********************************************/

/* HERO SECTION (mirroring .honeymoon-hero) */
.experience-hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
  }
  .experience-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .experience-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 1rem;
  }
  .experience-hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  .experience-hero-overlay p {
    font-size: 1.2rem;
  }
  
  /* MAIN CONTENT (mirroring .honeymoon-intro) */
  .experience-section {
    padding: 2rem 5%;
    background: #fff;
    text-align: center;
  }
  .experience-section h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .experience-section p {
    max-width: 900px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.8;
    text-align: left;
  }
  .experience-section ul {
    max-width: 600px;
    margin: 1rem auto;
    list-style: disc inside;
    text-align: left;
    line-height: 1.8;
  }
  
  /* FINAL CTA BANNER (mirroring .honeymoon-final-cta) */
  .final-cta-banner {
    background: var(--beige);
    color: var(--deep-green);
    text-align: center;
    padding: 2rem 5%;
  }
  .final-cta-content {
    max-width: 900px;
    margin: 0 auto;
  }
  .final-cta-content h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: var(--brown);
  }
  .final-cta-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }
  .final-cta-content .btn {
    margin: 0.5rem;
  }
  
  /* RESPONSIVE BREAKPOINTS */
  @media (max-width: 768px) {
    .experience-section ul {
      list-style-position: outside;
    }
  }