
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background-color: #f7f7f7;
  padding: 20px 0;
}

header .logo img {
  height: 60px;
}

header nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

header nav ul li a {
  color: #821313;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: #c68686;
}

.hero {
  background-color:#821313;
  padding: 60px 0;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  color: #f7f7f7;
}

.hero h2 {
  font-size: 24px;
  margin: 10px 0;
  color: #f7f7f7;
}

.hero p {
  font-size: 18px;
  color: #f7f7f7;
}

.intro, .highlights {
  padding: 40px 0;
}

.intro h3, .highlights h3 {
  color: #821313;
  margin-bottom: 20px;
}

.highlights ul {
  list-style: disc inside;
}

.carousel {
  position: relative;
  max-width: 100%;
  margin: 40px auto;
  overflow: hidden;
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover; /* Keeps the image aspect ratio */
}

.caption {
  position: absolute;
  bottom: 20px;
  left: 40px;
  background-color: #821313;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 18px;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  background-color: #821313;
  border: none;
  border-radius: 50%;
  user-select: none;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.prev:hover, .next:hover {
  background-color: #821313;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

footer {
  background-color: #821313;
  color: white;
  padding: 20px 0;
  text-align: center;
}

footer a {
  color: #ffe6e6;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
