body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: #000000;
  color: #FFFFFF;
}

header {
  background: #422A59;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #422A59;

}

.logo {
  height: 40px;
}

nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: #FFFFFF;
  font-weight: bold;
}

nav a:hover {
  color: #FFFFFFcc;
}

.hero {
  position: relative;
  text-align: center;
}

.hero img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.overlay-text {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 1rem 2rem;
  border-radius: 8px;
}

.about, .content, .contact {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

form {
  display: flex;
  flex-direction: column;
}

form input, form textarea {
  margin-bottom: 1rem;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
}

form button {
  background: #0077cc;
  color: white;
  padding: 0.75rem;
  border: none;
  cursor: pointer;
}

form button:hover {
  background: #005fa3;
}

.carousel {
  text-align: center;
  margin: 2rem auto;
  position: relative;
}

.carousel img {
  width: 80%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1rem;
}

.contact h2 {
  margin-bottom: 2rem;
}

.contact form {
  background-color: grey;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px; /* Login box width */
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
