@font-face {
  font-family: "Lyon Display Web";
  src: url("../fonts/LyonDisplay-Medium-Web-Woff2.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: "Graphik LCG Web";
  src: url("../fonts/Graphik-Semibold-Cy-Gr-Web-Woff2.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: "Graphik LCG Web";
  src: url("../fonts/Graphik-Regular-Cy-Gr-Web-Woff2.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  font-family: "Publico Roman", sans-serif;
  font-style: normal;
  font-weight: 400;
  max-width: 100vw;
  overflow-x: hidden;
  color: #222222;
}

header {
  position: sticky !important;
  top: 0 !important;
  z-index: 997 !important;
  background-color: white !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

body.scrolled header {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#sidebar-menu {
  transition: all 0.3s ease;
  z-index: 999 !important;
}

#menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998 !important;
  display: none;
}

.menu-open {
  transform: translateX(0) !important;
}

.menu-close {
  transform: translateX(-100%) !important;
}

.lang-group {
  position: relative;
}

.lang-dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
}

.lang-group:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lang-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
}

.about-group {
  position: relative;
}

.about-dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 8px 0;
  min-width: 160px;
  z-index: 1002;
}

.about-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
}

.about-group:hover .about-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.about-dropdown a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  color: #222222;
}

.about-dropdown a:hover {
  background-color: #f5f5f5;
  color: #5c1081;
}

#hero-banner-img,
#hero-content-card {
  opacity: 1;
  transition: opacity 0.2s linear;
}

#hero-banner-img.fade,
#hero-content-card.fade {
  opacity: 0;
}

#discover-mwg-list li {
  cursor: pointer;
}

.hero-banner-container {
  background-color: #f5f0f8;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1rem;
  z-index: 999;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #5c1081;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: background 0.2s;
  opacity: 0;
  visibility: hidden;
  animation: showBtn linear forwards;
  animation-timeline: scroll(root);
  animation-range: 200px 500px;
}

.back-to-top:hover {
  background: #8a2be2;
}

@keyframes showBtn {
  to {
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (max-width: 768px) {
  header {
    position: relative !important;
  }
}
