/* Hero Section */
    .hero {
      position: relative;
      background: url('/../uploads/photos/home-of-love-garden-of-serenity.jpg') center center/cover no-repeat;
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }
    .hero::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
    }
    .hero h1 {
      font-size: 2.3rem;
      font-weight: bold;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
      position: relative;
      z-index: 2;
    }

    /* Responsive Hero */
    @media (max-width: 992px) {
      .hero { height: 400px; }
      .hero h1 { font-size: 2.2rem; }
    }
    @media (max-width: 576px) {
      .hero { height: 300px; }
      .hero h1 { font-size: 1.6rem; }
    }

    /* Section Title */
    .section-title {
      text-align: center;
      margin: 50px 0 30px;
    }
    .section-title h2 {
      font-weight: 700;
      color: #001f3f;
    }
    .section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background: #001f3f;
      margin: 15px auto 0;
    }

    /* Park Cards */
    .park-card {
      border: none;
      border-radius: 0;
      overflow: hidden;
      background: #f8f9fa; /* light gray like attached */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .park-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .park-card img {
      height: 220px;
      object-fit: cover;
      width: 100%;
    }
    .badge-label {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #001f3f;
      color: white;
      font-weight: bold;
      padding: 5px 10px;
      font-size: 0.75rem;
      border-radius: 3px;
    }
    .card-body {
      background: #f8f9fa;
      padding: 15px;
    }
    .card-title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 6px;
      color: #001f3f;
    }
    .card-text {
      font-size: 0.9rem;
      margin-bottom: 12px;
    }
    .btn-outline-primary {
      border-color: #001f3f;
      color: #001f3f;
      font-size: 0.85rem;
      border-radius: 0;
    }
    .btn-outline-primary:hover {
      background: #001f3f;
      color: #fff;
    }