/* Font & Color Theme */
body {
  font-family: 'Poppins', sans-serif;
}
.bg-purple {
  background-color: #6a1b9a;
}
.text-purple {
  color: #6f42c1;
}

/* Navbar */
.navbar .nav-link {
  font-weight: 500;
  transition: color 0.3s;
}
.navbar .nav-link:hover {
  color: #ffc107;
}

/* Carousel */
.carousel-item img {
  height: 70vh;
  object-fit: cover;
}
.carousel-caption {
  background: rgba(0,0,0,0.5);
  padding: 15px;
  border-radius: 10px;
}

/* Cards */
.card img {
  height: 280px;
  object-fit: cover;
}

.text-purple { color: #4b2c83; }
.btn-purple { background-color: #4b2c83; color: #fff; }
.btn-purple:hover { background-color: #3a2065; }

/* Subtle hover effects */
.hover-up { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hover-up:hover { transform: translateY(-5px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.hover-shadow { transition: box-shadow 0.3s ease; }
.hover-shadow:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.2); }


/* Footer */
footer h5 {
  font-weight: 600;
}
