body {
  margin: 0;
  font-family: sans-serif;
  background-color: #fce4f7;
}

header {
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;     /* centers vertically */
  height: 100px;           /* adjust as needed */
  background-color: #eb34a4;
  padding: 0 20px;
}

.title {
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.title:hover {
  color: black;
}
.navbar {
  background-color: #eb34a4;
  padding: 1rem;
}

.menu {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.menu > li {
  position: relative;
}

.menu a, .dropdown-toggle {
  text-decoration: none;
  size: 50px;
  color: #fff;
  padding: 0.5rem 1rem;
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

.menu a:hover, .dropdown-toggle:hover {
  background-color: #3a0221;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #3a0221;
  min-width: 160px;
  z-index: 1000;
}

.dropdown-menu li {
  width: 100%;
  list-style-type: none;
}

.dropdown-menu a:hover {
  background-color: #7c7b7b;
}

.dropdown.open .dropdown-menu {
  display: block;
}


.button {
background: #eb34a4;
  color: white;
  font-size: 18px;
  border:black;
  cursor:crosshair;
  padding:10px;
}

.logoimg {
  height: 150px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.carousel-container {
  position: relative;
  width: 90%;
  max-width: 800px;
  margin: 30px auto;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.carousel img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel img.active {
  opacity: 1;
  position: relative;
}

.prev, .next {
  background-color: #eb34a4;
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.prev { left: 10px; }
.next { right: 10px; }

@media (max-width: 600px) {
  .carousel {
    aspect-ratio: 1 / 1;
  }

  .logoimg {
    height: 40px;
  }

  .title {
    font-size: 1.2em;
  }
}


