/* =========================
   About Page Styles (about.css)
   ========================= */

/* ===== Hero Section ===== */
.about-hero {
    position: relative;
    width: 100%;
    min-height: 583px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .about-hero .hero-container {
    position: relative;
    height: 100%;
  }
  
  .about-hero .hero-text {
    position: absolute;
    bottom: 209px;
    left: 23px;                /* move to the left side */
    right: auto;               /* reset right alignment */
    max-width: 738px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .about-hero .hero-text h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text);
  }
  
  .about-hero .hero-text p {
    font-size: 18px;
    color: var(--text);
    line-height: 1.5;
  }
  
  /* ===== About Page Content ===== */
  .about-info {
    margin-top: 40px;
    margin-bottom: 40px; /* added bottom gap to match top */
  }
  
  .about-info .content-container {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 40px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  .about-info h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--text);
  }
  
  .about-info p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 20px;
  }
  
  /* ===== Explore Parks Button ===== */
  .about-info .buy-btn {
    display: inline-block;
    padding: var(--field-padding-y) 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    color: #fff;
    text-align: center;
    background-image:
      linear-gradient(rgba(255,255,255,0.25), rgba(255,255,255,0.25)),
      linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .about-info .buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  }
  
  /* ===== Mobile Adjustments ===== */
  @media (max-width: 768px) {
    .about-hero {
      min-height: 420px;
    }
  
    .about-hero .hero-text {
      bottom: 24px;
      right: 24px;
      left: 24px;
      max-width: none;
    }
  
    .about-hero .hero-text h1 {
      font-size: 34px;
    }
  
    .about-hero .hero-text p {
      font-size: 15px;
    }
  }