/* TOP BAR + LANGUAGE TOGGLE */
header {
  background: #6a0f16;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
header .nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
header .nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
header .nav a:hover {
  text-decoration: underline;
}
.lang-switch button {
  background: #444;
  color: white;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
}
.lang-switch button:hover {
  background: #888;
}

/* CAROUSEL WITH 3 IMAGES IN A ROW */
.carousel {
  height: 33vh;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}
.carousel-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
  width: max-content;
}
.carousel-item {
  min-width: calc(100vw / 3);
  box-sizing: border-box;
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PAGE BODY */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  color: #333;
}
.content {
  padding: 20px;
}
.weather-widget {
  background: white;
  padding: 10px;
  border: 1px solid #ccc;
  max-width: 300px;
  margin: 20px 0;
}
footer {
  background: #6a0f16;
  color: white;
  text-align: center;
  padding: 10px 20px;
  margin-top: 40px;
}
