* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #fff8dc, #ffe4e1);
  color: #333;
  overflow-x: hidden;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  background: linear-gradient(to right, #ff6a00, #ee0979);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.logo {
  font-size: 1.8em;
  font-weight: bold;
  color: white;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffff66;
}

/* Hero Section */
header {
  background: url('..//bg1.png') no-repeat center center/cover;
  color: rgb(209, 87, 87);
  text-align: center;
  padding: 160px 20px 100px;
  animation: fadeIn 1s ease-out;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 15px;
  color: rgb(209, 87, 87);
  animation: bounce 2s infinite;
}

.hero p {
  font-size: 1.3em;
  margin-bottom: 20px;
}

.cta-btn {
  background-color: #ff7e5f;
  padding: 12px 25px;
  color: white;
  font-size: 1em;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background-color:#ff7e5f;
  transform: scale(1.05);
}

/* Activities */
.activities-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px;
  flex-wrap: wrap;
  animation: fadeUp 1.5s ease-in-out;
}

.activity-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
  width: 300px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.activity-card img {
  width:75.7%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.activity-card h3 {
  margin-top: 15px;
  font-size: 1.5em;
  color: #ff6347;
}

.activity-card p {
  color: #666;
}

.activity-card:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 30px 10px;
  background: #fff0f5;
  gap: 50px;
}

.slider::-webkit-scrollbar {
  display: none;
}

.slide {
  min-width: 300px;
  height: 200px;
  background: #ffe4e1;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  scroll-snap-align: start;
  flex-shrink: 0;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide:hover {
  transform: scale(1.05);
}


/* Footer */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.95em;
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeUp {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }

  .activities-row {
    flex-direction: column;
    align-items: center;
  }

  .activity-card {
    width: 90%;
  }
}
