/* GENERAL */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #222;
    background: #f8f9fa;
  }
  
  h1, h2, h3 {
    font-weight: 600;
  }
  
  a {
    text-decoration: none;
  }
  
  /* HERO */
  .hero {
    position: relative;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
  }
  
  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.4));
    z-index: 2;
  }
  
  .hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
    text-align: center;
    color: #ffffff;
  }
  
  .hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 4px 18px rgba(0,0,0,0.6);
  }
  
  .hero-content p {
    font-size: 19px;
    color: #ffffff;
    text-shadow: 0 3px 12px rgba(0,0,0,0.6);
  }
  
  /* SECTION */
  .section {
    padding: 70px 8%;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-title h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
  }
  
  .section-title h2::after {
    content: "";
    width: 60%;
    height: 3px;
    background: #ff6b00;
    position: absolute;
    bottom: -10px;
    left: 20%;
  }
  
  /* ACTIVITY GRID */
  .activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }
  
  .activity-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }
  
  .activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }
  
  .activity-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .activity-content {
    padding: 20px;
  }
  
  .activity-content h3 {
    margin: 0 0 10px;
    font-size: 20px;
  }
  
  .activity-content p {
    font-size: 14px;
    color: #555;
  }
  
  /* CTA */
  .cta {
    background: linear-gradient(120deg, #ff6b00, #ff9f43);
    color: white;
    text-align: center;
    padding: 70px 20px;
    border-radius: 16px;
    margin: 80px 8%;
  }
  
  .cta h2 {
    font-size: 34px;
    margin-bottom: 15px;
  }
  
  .cta p {
    margin-bottom: 25px;
    font-size: 16px;
    opacity: 0.95;
  }
  
  .btn {
    background: white;
    color: #ff6b00;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s;
    display: inline-block;
  }
  
  .btn:hover {
    background: #222;
    color: white;
  }

  


/* PREMIUM EXPERIENCE CARDS */
.premium-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
}

.premium-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.premium-card:hover img {
  transform: scale(1.08);
}

.premium-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.1));
  color: #fff;
  transition: all 0.3s ease;
}

.premium-overlay h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.premium-overlay span {
  font-size: 14px;
  opacity: 0.9;
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}
.premium-overlay h3 {
  color: #ffffff !important;
}
