/* ===== FIXED CLEAN STYLE ===== */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #333;
}

/* HEADER */
.header {
  text-align: center;
  padding: 5px 0;
}

.header img {
  max-width: 160px;
  height: auto;
}

/* NAV */
nav {
  text-align: center;
  margin: 0;
}

nav a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  margin: 0 12px;
}

nav a:hover {
  color: #d4a017;
}

/* CAROUSEL */
.carousel {
  max-width: 900px;
  height: 400px;
  margin: 10px auto;
  position: relative;
  overflow: hidden;
}

.carousel img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

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

/* OVERLAY */
.overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  background: rgba(0,0,0,0.4);
  padding: 10px 15px;
  border-radius: 5px;
}

.overlay h2 {
  margin: 0;
  font-size: 26px;
}

.overlay p {
  margin: 5px 0 0;
}

/* ARROWS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.arrow:hover {
  background: rgba(0,0,0,0.8);
}

/* CONTENT */
.homepage-content {
  text-align: center;
  margin-top: 20px;
}

.homepage-content h2 {
  margin-bottom: 10px;
}

