/*********************************************
  BALLOON SAFARIS PAGE STYLES
**********************************************/

/* HERO SECTION */
.balloon-hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
  }
  .balloon-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .balloon-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;
  }
  .balloon-hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  .balloon-hero-overlay p {
    font-size: 1.2rem;
  }
  
  /* INTRO SECTION */
  .balloon-intro {
    padding: 2rem 5%;
    background: #fff;
    text-align: center;
  }
  .balloon-intro h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .balloon-intro p {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: left;
  }
  
  /* GALLERY SECTION */
  .balloon-gallery {
    padding: 2rem 5%;
    background: var(--beige);
    text-align: center;
  }
  .balloon-gallery h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  /* WHO SHOULD GO SECTION */
  .balloon-whoshouldgo {
    padding: 2rem 5%;
    background: #fff;
    text-align: center;
  }
  .balloon-whoshouldgo h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .balloon-whoshouldgo p {
    max-width: 900px;
    margin: 0 auto 1rem auto;
    line-height: 1.8;
    text-align: left;
  }
  .balloon-whoshouldgo ul {
    max-width: 600px;
    margin: 1rem auto;
    text-align: left;
    line-height: 1.8;
    list-style: disc inside;
  }
  
  /* WHERE TO EXPERIENCE SECTION */
  .balloon-where {
    padding: 2rem 5%;
    background: var(--beige);
    text-align: center;
  }
  .balloon-where h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .balloon-where p {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: left;
  }
  
  /* WHEN TO GO SECTION */
  .balloon-besttime {
    padding: 2rem 5%;
    background: #fff;
    text-align: center;
  }
  .balloon-besttime h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .balloon-besttime p {
    max-width: 900px;
    margin: 0 auto 1rem auto;
    line-height: 1.8;
    text-align: left;
  }
  .balloon-besttime-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 700px;
    margin: 1rem auto;
    justify-content: center;
    text-align: center;
  }
  .besttime-item {
    flex: 1 1 220px;
    background: var(--beige);
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem;
  }
  
  /* CTA BANNER */
  .balloon-cta-banner {
    background: var(--sunset-gradient);
    color: #fff;
    text-align: center;
    padding: 2rem 5%;
  }
  .cta-banner-content {
    max-width: 900px;
    margin: 0 auto;
  }
  .cta-banner-content h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
  
  /* ACCOMMODATIONS SECTION */
  .balloon-accommodations {
    padding: 2rem 5%;
    background: #fff;
    text-align: center;
  }
  .balloon-accommodations h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .balloon-accommodations p {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: left;
  }
  
  /* ADDITIONAL INFO SECTION */
  .balloon-additional {
    padding: 2rem 5%;
    background: var(--beige);
    text-align: center;
  }
  .balloon-additional h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .balloon-additional p {
    max-width: 900px;
    margin: 0 auto 1rem auto;
    line-height: 1.8;
    text-align: left;
  }
  
  /* FINAL CTA SECTION */
  .balloon-final-cta {
    padding: 2rem 5%;
    background: #fff;
    text-align: center;
  }
  .balloon-final-cta h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .balloon-final-cta p {
    max-width: 900px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.8;
    text-align: left;
  }
  .final-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  /* RESPONSIVE BREAKPOINTS */
  @media (max-width: 768px) {
    .balloon-besttime-grid {
      flex-direction: column;
      align-items: center;
    }
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
    }
    .balloon-whoshouldgo ul {
      list-style-position: outside;
    }
  }