/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body, h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  padding-top: 80px;   /* prevent content hiding behind fixed header */
  background-color: #fafafa;
}

/* Header */
header {
  position: fixed;       /* keep header visible */
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 32px;
  background: #fff;
  border-bottom: 1px solid #e4e4e4;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.logo img {
  max-height: 50px;
}

.language-selector {
  position: relative;
}

.language-selector select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 8px 42px 8px 14px;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid #d0d0d0;
  border-radius: 999px;
  background: #fff;
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.language-selector select:focus {
  outline: none;
  border-color: #0077b6;
  box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.15);
}

.language-selector::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  min-height: clamp(420px, 70vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  color: #fff;
  z-index: 1;
  max-width: 720px;
  padding: 0 20px;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fff; /* keep hero tagline white */
}

/* Sections */
section {
  padding: 60px 20px;
}

section:not(.hero) {
  max-width: 1000px;
  margin: 0 auto;
}

/* Section Headers in Orange */
.about h2,
.events h2,
.contact h2 {
  color: #ee7208;
}

.contact-item h3 {
  color: #ee7208;
}

/* Events / Carousel */
.carousel {
  position: relative;
  max-width: 800px;
  margin: 20px auto;
  overflow: hidden;
}

.slides {
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

.dots {
  text-align: center;
  margin-top: 10px;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dots .active {
  background: #333;
}

/* Contact */
.contact {
  background-color: #f9f9f9;
  text-align: center;
}

.contact h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 700;
}

.contact-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-item {
  flex: 1 1 250px;
  max-width: 300px;
}

.contact-item h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-item a {
  display: block;
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #0077b6;
}

/* Footer */
footer {
  padding: 20px;
  text-align: center;
  background: #222;
  color: #fff;
  font-size: 0.9rem;
}
