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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  padding-top: 0;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

/* ===== HEADER ===== */

.header {
  background: transparent;
  padding: 1.5rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 2px;
}

.logo strong {
  font-weight: 700;
  color: #ffffff;
}

.nav-menu {
  display: flex;
  gap: 4.5rem;
  flex: 1;
  justify-content: center;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s;
}

.nav-menu a:hover {
  opacity: 0.7;
}

.lang-selector {
  display: flex;
  gap: 0.5rem;
  font-size: 12px;
  color: #ffffff;
}

.lang-active {
  opacity: 1;
  font-weight: 500;
}

.lang-link {
  opacity: 0.7;
  cursor: pointer;
}

.lang-divider {
  opacity: 0.5;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s;
}

/* ===== HERO CAROUSEL ===== */

.hero {
  height: 100vh;
  background: #000000;
  position: relative;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  overflow: hidden;
}

.slide.active {
  opacity: 1;
}

.slide-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
}

.slide-content {
  position: absolute;
  bottom: 100px;
  left: 5%;
  z-index: 2;
  max-width: 800px;
}

.slide-content h1 {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  color: #ffffff;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1px;
}

/* Carousel Controls */

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.3s;
}

.carousel-arrow:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.carousel-arrow.prev {
  left: 2rem;
}

.carousel-arrow.next {
  right: 2rem;
}

/* Carousel Dots */

.carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #ffffff;
  width: 30px;
  border-radius: 6px;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .header-content {
    flex-wrap: nowrap;
    gap: 1rem;
    justify-content: space-between;
  }

  .logo {
    font-size: 16px;
    order: 1;
  }

  .menu-toggle {
    display: flex;
    order: 2;
  }

  .nav-menu {
    display: none;
  }

  .lang-selector {
    display: none;
  }

  .hero {
    height: 90vh;
  }

  .slide-content {
    left: 2rem;
    max-width: 90%;
  }

  .slide-content h1 {
    font-size: 2rem;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .carousel-arrow.prev {
    left: 1rem;
  }

  .carousel-arrow.next {
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 0.75rem 0;
  }

  .header-content {
    padding: 0 0.75rem;
    gap: 0.75rem;
  }

  .logo {
    font-size: 14px;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle span {
    width: 22px;
  }

  .nav-menu {
    display: none;
  }

  .lang-selector {
    display: none;
  }

  .hero {
    height: 350px;
  }

  .slide-content h1 {
    font-size: 1.5rem;
  }

  .carousel-arrow {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .carousel-dots {
    gap: 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .dot.active {
    width: 24px;
  }
}
