/*********************************************
  PHOTO SAFARIS PAGE STYLES
**********************************************/

/* HERO SECTION */
.photo-hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
  }
  .photo-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .photo-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;
  }
  .photo-hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  .photo-hero-overlay p {
    font-size: 1.2rem;
  }
  
  /* INTRO SECTION */
  .photo-intro {
    padding: 2rem 5%;
    background: #fff;
    text-align: center;
  }
  .photo-intro h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .photo-intro p {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: left;
  }
  
  /* WHO SHOULD GO SECTION */
  .photo-whoshouldgo {
    padding: 2rem 5%;
    background: var(--beige);
    text-align: center;
  }
  .photo-whoshouldgo h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .photo-whoshouldgo p {
    max-width: 900px;
    margin: 0 auto 1rem auto;
    line-height: 1.8;
    text-align: left;
  }
  .photo-whoshouldgo ul {
    max-width: 600px;
    margin: 1rem auto;
    text-align: left;
    line-height: 1.8;
    list-style: disc inside;
  }
  
  /* WHERE TO EXPERIENCE SECTION */
  .photo-where {
    padding: 2rem 5%;
    background: #fff;
    text-align: center;
  }
  .photo-where h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .photo-where p {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: left;
  }
  
  /* WHEN TO GO SECTION */
  .photo-besttime {
    padding: 2rem 5%;
    background: var(--beige);
    text-align: center;
  }
  .photo-besttime h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .photo-besttime p {
    max-width: 900px;
    margin: 0 auto 1rem auto;
    line-height: 1.8;
    text-align: left;
  }
  .photo-besttime-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    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 */
  .photo-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 */
  .photo-accommodations {
    padding: 2rem 5%;
    background: #fff;
    text-align: center;
  }
  .photo-accommodations h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .photo-accommodations p {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: left;
  }
  
  /* ADDITIONAL INFO SECTION */
  .photo-info {
    padding: 2rem 5%;
    background: var(--beige);
    text-align: center;
  }
  .photo-info h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .photo-info p {
    max-width: 900px;
    margin: 0 auto 1rem auto;
    line-height: 1.8;
    text-align: left;
  }
  
  /* PHOTO DETAILS SECTION */
  .photo-details {
    padding: 2rem 5%;
    background: #fff;
    text-align: center;
  }
  .photo-details h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .photo-details p {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: left;
  }
  
  /* FINAL CTA SECTION */
  .photo-final-cta {
    padding: 2rem 5%;
    background: var(--beige);
    text-align: center;
  }
  .photo-final-cta h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .photo-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) {
    .photo-besttime-grid {
      flex-direction: column;
      align-items: center;
    }
    .photo-whoshouldgo ul {
      list-style-position: outside;
    }
  }