/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
  background-color: #fff;
  line-height: 1.6;
}

/* Carousel */
.carousel {
  position: relative;
  max-width: 1920px;
  margin: auto;
  overflow: hidden;
  height: auto;
}

.carousel-slide {
  display: none;
  width: 100%;
  height: auto;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.fade {
  animation: fade 2s ease-in-out;
}

@keyframes fade {
  from {opacity: 0.4}
  to {opacity: 1}
}

/* Intro */
.intro {
  text-align: center;
  padding: 3rem 1rem;
  background: #f9f9f9;
}

.intro h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #b22222;
}

.tagline {
  font-size: 1.3rem;
  color: #555;
}

/* About */
.about {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
}

.about h2 {
  margin-bottom: 1rem;
  color: #b22222;
}

/* Subscribe */
.subscribe {
  background: #b22222;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}

.subscribe h2 {
  margin-bottom: 1rem;
}

.subscribe form {
  margin-top: 1rem;
}

.subscribe input[type="email"] {
  padding: 0.8rem;
  border: none;
  border-radius: 4px;
  width: 250px;
  margin-right: 0.5rem;
}

.subscribe button {
  padding: 0.8rem 1.2rem;
  background: #fff;
  color: #b22222;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.subscribe button:hover {
  background: #f1f1f1;
}

.form-message {
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background: #f1f1f1;
  font-size: 0.9rem;
  color: #555;
}
