* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff8f0;
  color: #333;
  overflow-x: hidden;
}

header {
  background-color: #c2185b;
  color: white;
  text-align: center;
  padding: 1.5rem;
}

.logo img {
  width: 80px;
  margin-top: 1rem;
}

nav ul {
  list-style: none;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.carousel {
  width: 100vw;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 1s ease-in-out;
  width: 500vw; /* 5 images x 100vw */
}

.carousel-track img {
  width: 100vw;
  height: 400px;
  object-fit: cover;
}

footer {
  background-color: #c2185b;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 1rem;
}
