body {
  font-family: 'Poppins', sans-serif;
}

/* --- Navbar (Header) --- */
.navbar {
  background-color: #ffffff !important; /* White header */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
  height: 50px;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

/* Menu Links */
.navbar-nav .nav-link {
  color: #8b0046 !important; /* Purple text same as logo */
  font-weight: 600;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #b3005a !important; /* Slightly darker purple on hover/active */
}

/* --- Carousel --- */
.carousel-caption {
  background: rgba(0, 0, 0, 0.55);
  padding: 1.5rem;
  border-radius: 10px;
}

h2 {
  color: #8b0046;
  font-weight: 700;
}

/* --- Buttons --- */
.btn-primary {
  background-color: #8b0046;
  border: none;
}

.btn-primary:hover {
  background-color: #b3005a;
}

/* --- Footer --- */
footer {
  background-color: #111;
  color: #fff;
  font-size: 15px;
}

/* --- Misc --- */
.card-title {
  color: #8b0046;
  font-weight: 600;
}

.card-text {
  font-size: 15px;
}

a {
  text-decoration: none;
}
