/* ==============================
   FULLSCREEN HERO SLIDESHOW
   ============================== */

.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100vh; /* Fullscreen on desktop */
  overflow: hidden;
}

.hero-slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.hero-slideshow img.active {
  opacity: 1;
}

/* Mobile slideshow heights */
@media (max-width: 768px) {
  .hero-slideshow {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .hero-slideshow {
    height: 200px;
  }
}


/* ==============================
   GLOBAL STYLES
   ============================== */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  color: #333;
  line-height: 1.6;
}


/* ==============================
   MODERN STICKY HEADER
   ============================== */

.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #333;
  color: white;
  padding: 10px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.site-title {
  font-size: 22px;
  margin: 0;
}

/* NAVIGATION */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  opacity: 0.6;
}

/* Language selector */
.lang-switcher select {
  padding: 5px 7px;
  border-radius: 4px;
  border: none;
  font-size: 14px;
}


/* ==============================
   CONTAINER & INFO BOX
   ============================== */

.container {
  max-width: 900px;
  margin: 25px auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.12);
  font-size: 1.05em;
}

.info-box {
  max-width: 900px;
  margin: 25px auto;
  background: white;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.info-box h3 {
  text-align: center;
  margin-bottom: 15px;
}


/* ==============================
   FOOTER
   ============================== */

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 18px;
  margin-top: 40px;
  font-size: 0.9em;
}

footer a {
  color: #fff;
  text-decoration: underline;
}
