* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: auto;
  font-family: Arial, sans-serif;
  background: black;
  scroll-behavior: smooth;
}

.link-mail{
  color:yellow;
  text-decoration: none;
}

.background-container {
  background: url("/template/bbo-asia/landing/assets/BBO-Asia-Desktop-Final.jpg")
    no-repeat center;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: relative;
}

/* NAVBAR */
.navbar {
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  padding: 8px 40px;
  display: flex;
  align-items: center;
  z-index: 1000;
  position: sticky;
  top: 0;
}

.logo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  height: 50px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  gap: 5px;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1010;
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: block;
  position: absolute;
  left: 0;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 10px;
}

.menu-toggle span:nth-child(3) {
  top: 20px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.nav-links ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links ul li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: yellow;
  transition: width 0.3s ease;
}

.nav-links ul li a:hover::after {
  width: 100%;
}

/* FLAGS */
.flags-container {
  position: absolute;
  bottom: 35px;
  left: 11%;
  display: flex;
  gap: 35px;
}

.flags-container img.flag {
  cursor: pointer;
  width: 5vw;
  transition: transform 0.3s ease;
}

.flags-container img.flag:hover {
  transform: scale(1.1);
}

.flag-text {
  color: white;
  text-transform: uppercase;
  font-size: 0.8vw;
  margin-top: 10px;
}

.flag-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.coming-soon-section {
  display: none;
}

/* FOOTER */
.footer {
  background-color: #000;
  color: #f5f5f5;
  font-family: "Arial", sans-serif;
  padding: 60px 20px 30px;
  border-top: 1px solid #2c2c2c;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 220px;
}

.footer-column h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid #333;
  padding-bottom: 8px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ffffff;
}

.footer-column p {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #ccc;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #888;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar {
    align-items: stretch;
    flex-direction: column;
  }

  .background-container {
    background: url("/template/bbo-asia/landing/assets/BBO-Asia-Mobile-Final.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
  }

  .coming-soon-section {
    position: absolute;
    display: block;
    top: 83%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .nav-links.active {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }

  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .flags-container {
    top: 58%;
    gap: 4px;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    align-items: center;
  }

  .flags-container img.flag {
    width: 50px;
    height: 50px;
  }

  .flag-text {
    font-size: 13px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
