
section {
    padding: 10px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100vw;
  }
  
  
  .btn {
    display: inline-block;
    padding: 13px 40px;
    background: var(--primary-bg);
    color: var(--text-color);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.5s ease;
    cursor: pointer;
  }
  
  .btn:hover {
    transform: translateX(10px);
    border: 2px solid var(--text-color);
    background: transparent;
    color: var(--text-color);
  }
  
  .donate-btn:hover {
    transform: translateX(10px);
    border: 2px solid var(--bg-color);
    background: transparent;
    color: var(--header-text-color);
  }
  
  
  
  
  #hero-section {
    background-image: linear-gradient(
        to left,
        rgba(0, 0, 0, 0.769),
        rgba(0, 0, 0, 0.61)
      ),
      url("../img/IMG_4353.jpg");
  }
  
  .reservation {
    display: flex;
    flex-direction: column;
      position: relative;
      width: 100%;
      padding: 45px 10% 15px;
      /* background-color: var(--bg-color-faint); */
    }
  
    #reservations-container {
      display: flex;
      flex-direction: column;
    }
    
    .reservation .reservations-content {
      margin: 0 auto;
      text-align: center;
      gap: 7rem;
      margin-bottom: 30px;
      justify-content: space-around;
    }
    
    .reservation .section-header p {
      font-size: 16px;
      color: #555;
      margin-bottom: 10px;
    }
    
    .reservation .section-header h2 {
      font-size: 28px;
      color: #2c3e50;
      margin-bottom: 30px;
    }
    
    .reservation .row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      gap: 20px;
    }
    
    .reservation .activity-item {
      position: relative;
      flex: 0 1 calc(30.333% - 10px);
      background-color: #fff;
      padding: 10px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: box-shadow 0.3s;
    }
    
    .reservation .activity-item:hover {
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
    
    .reservation .activity-image {
      position: relative;
      width: 100%;
      height: 250px;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 20px;
    }
    
    .reservation .activity-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    
    }
    
    .reservation .activity-text {
    flex: 1;
      text-align: center;
    }
    
    .reservation .activity-text h3 {
      margin-bottom: 10px;
      font-size: 18px;
      font-weight: 700;
      color: #333;
    }
    
    .reservation .activity-text p {
      margin: 0;
      font-size:  .9rem;
      color: #666;
      line-height: 1.6;
    }

    .orderBtn {
        padding: 8px;
        display: flex;
        justify-items: center;
        align-items: center;
        justify-items: center;
        width: 100%;
    }

    .package-container {
        display: flex;
        flex-wrap: wrap; 
        justify-content: center;
        margin-top: 10px;
        gap: 4px;
      }
      
      .packageBody {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; 
        padding: 0;
        list-style: none; 
        gap: 10px;

      }
      
      .package-item {
        font-size: 12px; 
        padding: 5px 10px; 
        background-color: #f5f5f5;
        border-radius: 5px; 
        flex: 0 1 auto; 
        white-space: nowrap;
      }
  
      .help {
        padding: 50px 20px;
        background: #20212b;
        text-align: center;
        margin: 30px 0;
      }
      
      .help-child {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      
      .help-child h2 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 16px;
        color: var(--bg-color);
      }
      
  
    
  /* Media Queries */
  
  
  @media (min-width: 1024px) {
  
    #reservations-container {
      display: flex;
      flex-direction: row;
    }
  
    .package-container {
        justify-content: flex-start; /* Align items to the start on larger screens */
      }
  }
  
  @media (min-width: 768px) {
    .package-item {
        font-size: 14px; /* Increase font size on larger screens */
      }
  
  }
