.disabled {
  pointer-events: none;   /* tidak bisa diklik */
  opacity: 0.5;           /* efek disabled */
  cursor: not-allowed;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  @font-face {
    font-family: "apple";
    src: url("Apple.otf") format("truetype");
  }
}
@font-face {
  font-family: "fantasy1";
  src: url("Fantasy Script.otf") format("truetype");
}

body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.section {
  min-height: 80 vh; /* tiap section setidaknya setinggi layar */
  width: 100%;
}

.black {
  background-color: #120a2a;
}

.white {
  background-color: #e6e6fa;
}

/* ===== Navbar ===== */
.navbar {
  flex-wrap: wrap; /* Wajib */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Logo kiri */
.logo {
  position: absolute;
  left: 20px; /* sejajarkan sesuai padding navbar */
  flex: 1;
}

.logo img {
  margin-top: 7px;
  align-items: center;
  height: 50px;
  width: auto;
  border-radius: 10px;
}

/* Menu box tengah */
.menu-box {
  margin-top: 50px;
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2; /* biar tidak ketumpuk logo */
}

.menu-box span {
  margin-left: 50px;
  color: #ff00f2;
  font-weight: bold;
  font-size: 20px;
  font-family: "Poppins";
}

/* TEKS MENU */
.menu-box a {
  font-family: "Poppins";
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;

  color: #ff00f2;
  position: relative;
}

/* GARIS BAWAH HALUS */
.menu-box a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #ff00f2;
  transition: width 0.25s ease;
}

/* HOVER: cukup underline muncul */
.menu-box a:hover::after {
  width: 100%;
}

/* MENU AKTIF */
.menu-box a.active::after {
  width: 100%;
}
/* LANGUAGE SWITCHER – VERSI FINAL & CLEAN */
.lang-selector {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  font-family: "Poppins", sans-serif;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0px;
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  color: white;
  padding: 11px 20px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  user-select: none;
}

.lang-toggle:hover {
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  transform: translateY(-2px);
}

.lang-toggle img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
  flex-shrink: 0;
}

.lang-text {
  font-weight: 600;
  letter-spacing: 1px;
}

.arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
  font-size: 12px;
}

/* Dropdown */
.lang-options {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  border-radius: 20px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 160px;
}

.lang-options.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Rotate arrow when open */
.lang-selector.open .arrow {
  transform: rotate(180deg);
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: white;
  cursor: pointer;
  transition: background 0.2s;
}

.lang-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.lang-item img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  flex-shrink: 0;
}
.content {
  background: white;
  width: 60%;
  margin: auto;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.hero {
  position: relative;
  height: 100vh;
  background: url("LM109532.JPG") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: 400px;
  margin-bottom: 40px;
}

.hero-title {
  margin-top: -90px;
  font-size: 2.8rem;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* === ABOUT === */
.about {
  max-width: 800px;
  margin: 100px auto;
  text-align: center;
  padding: 0 20px;
}

.about h2 {
  color: #000000;
  font-size: 2rem;
  margin-bottom: 20px;
}

.champion-prize {
  text-align: center;
  padding: 80px 10%;
  background: linear-gradient(to top, #402c5c, #886eaf);
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.champion-prize h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.prize-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.prize-card {
  background: #ffffff;
  border: 3px solid #51307e;
  border-radius: 20px;
  width: 250px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prize-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.prize-card h3 {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #000000;
}

.subtitle {
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  color: #000000;
}

.prize-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #000000;
}

.prize-card li {
  font-size: 1rem;
  margin: 5px 0;
  color: #000000;
}

/* ===== BASE ===== */
.info-section {
  padding: 80px 40px;
  color: #000000;
  font-family: "Playfair Display", serif;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
  margin-top: 100px;
}

/* ===== INFORMATION GRID ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* default */
  gap: 30px;
  margin: 60px auto 70px auto;
  max-width: 1200px;
  padding: 0 20px; /* memberi ruang kiri-kanan di layar kecil */
  justify-content: center;
}

.info-box {
  background: white;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.info-box:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.info-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.info-box h3 {
  font-family: "Cinzel", serif;
  font-size: 22px;
  color: #000000;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.info-box p {
  font-size: 16px;
  color: #000000;
  margin-bottom: 20px;
}

.info-btn {
  display: inline-block;
  background: #886eaf;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.info-btn:hover {
  background: #22a36e;
}

.info-btn-register {
  display: inline-block;
  background: #886eaf;
  color: #ffffff;
  padding: 70px 90px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 50px;
  font-size: 25px;
}

.info-btn-register:hover {
  background: #22a36e;
}

.info-btn-jj {
  display: inline-block;
  background: #886eaf;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 30px;
}

.info-btn-jj:hover {
  background: #22a36e;
}

.info-btn-tw {
  display: inline-block;
  background: #886eaf;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 30px;
}

.info-btn-tw:hover {
  background: #22a36e;
}

.info-box-contact {
  background: white;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.info-box-contact:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.info-icon-contact {
  font-size: 48px;
  margin-bottom: 16px;
}

.info-box-contact h3 {
  font-family: "Cinzel", serif;
  font-size: 22px;
  color: #000000;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.info-box-contact p {
  font-size: 16px;
  color: #000000;
  margin-bottom: 20px;
}

.info-btn-contact {
  display: inline-block;
  background: #886eaf;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.info-btn-contact:hover {
  background: #22a36e;
}
/* ===== FACILITIES SECTION ===== */
.facility-section {
  margin-top: 40px;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.facility-box {
  background: whitesmoke;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.facility-box:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.facility-box h3 {
  font-family: "Cinzel", serif;
  font-size: 24px;
  margin-bottom: 20px;
  color: #000000;
}

.facility-box ul {
  list-style: none;
  padding: 0;
  text-align: left;
  display: inline-block;
}

.facility-box ul li {
  margin: 8px 0;
  font-size: 16px;
  color: #000000;
}

.facility-box .date {
  font-size: 20px;
  color: #886eaf;
  margin-bottom: 10px;
}

.facility-box .note {
  font-size: 16px;
  margin-bottom: 20px;
  color: #000000;
}

/* === LOCATION === */
.location {
  position: relative;
  background: url("LM100093.JPG") center/cover no-repeat;
  color: white;
  padding: 120px 20px;
  text-align: center;
}

.location .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.location-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
}

.btn-location {
  display: inline-block;
  margin-top: 100px;
  padding: 12px 30px;
  background: #886eaf;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-location:hover {
  background: #22a36e;
}

.footer {
  background: #fff;
  padding: 60px 20px 30px;
  border-top: 1px solid #ccc;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* BRAND */
.footer-brand {
  max-width: 350px;
  text-align: center;
  transform: translateX(-30px);
}

.footer-logo {
  width: 90px;
  margin-bottom: 10px;
}

.footer-text {
  margin-top: 15px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* KONTAK */
.footer-section h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
  margin: 8px 0;
  font-size: 16px;
}

.icon-img {
  width: 24px;
  height: 24px;
}
.icon-imgemail {
  width: 24px;
  height: 24px;
}

/* SOSIAL ICONS */
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.social-btn {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-img {
  width: 40px;
  height: 40px;
}

.social-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btn:active {
  transform: scale(0.88);
  box-shadow: none;
}

.social-btnyt {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-imgyt {
  width: 50px;
  height: 50px;
}

.social-btnyt:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btnyt:active {
  transform: scale(0.88);
  box-shadow: none;
}

.social-btnmbi {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-imgmbi {
  width: 60px;
  height: 30px;
}

.social-btnmbi:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btnmbi:active {
  transform: scale(0.88);
  box-shadow: none;
}
@media (max-width: 400px){
  /* ===== Navbar ===== */
.navbar {
  flex-wrap: wrap; /* Wajib */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: transparent;
  position: fixed;
  top: -15px;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Logo kiri */
.logo {
  position: absolute;
  left: 20px; /* sejajarkan sesuai padding navbar */
  flex: 1;
}

.logo img {
  margin-top: 15px;
  align-items: center;
  height: 35px;
  width: auto;
  border-radius: 10px;
  transform: translateX(-10px);
}

/* Menu box tengah */
.menu-box {
  margin-top: 50px;
  background: #ffffff;
  padding: 15px 30px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 40%;
  transform: translateX(-50%);
  z-index: 2; /* biar tidak ketumpuk logo */
  width: 310px;
}

.menu-box span {
  margin-left: 50px;
  color: #000000;
  font-weight: bold;
  font-size: 20px;
  font-family: "Poppins";
  display: none;
}

.menu-box a {
  font-family: "Poppins";
  color: #ff00f2;
  font-size: 10px;
  transition: 0.3s;
  text-decoration: none;
  font-weight: bold;
  transform: translateX(25px);
}
/* LANGUAGE SWITCHER – VERSI FINAL & CLEAN */
.lang-selector {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  font-family: "Poppins", sans-serif;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0px;
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  color: white;
  padding: 3px 5px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  user-select: none;
}

.lang-toggle:hover {
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  transform: translateY(-2px);
}

.lang-toggle img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
  flex-shrink: 0;
}

.lang-text {
  font-weight: 600;
  letter-spacing: 1px;
}

.arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
  font-size: 10px;
}

/* Dropdown */
.lang-options {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  border-radius: 20px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 160px;
}

.lang-options.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Rotate arrow when open */
.lang-selector.open .arrow {
  transform: rotate(180deg);
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: white;
  cursor: pointer;
  transition: background 0.2s;
}

.lang-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.lang-item img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  flex-shrink: 0;
}
.hero-title-ilc {
  margin-top: -90px;
  font-size: 2.5rem;
  text-transform: uppercase;
  filter: brightness(100%);
}
.hero-subtitle-ilc {
  font-size: 1rem;
  opacity: 0.9;
}
.guest-card-alexa {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  transition: 0.6s ease;
  transform: translateX(150px);
}

.guest-card-alexa img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: grayscale(20%) contrast(110%);
  transition: 0.6s ease;
}

.hero-title {
  margin-top: -90px;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.hero-subtitle {
  font-size: 0.75rem;
  opacity: 0.9;
}
h2[data-lang="allinfo"] {
  font-size: 35px;
}

  /* SECTION BASE */
  .info-section {
    padding: 50px 16px;
    border-radius: 12px;
  }

  .section-title {
    font-size: 22px;
    margin-top: 60px;
    letter-spacing: 0.5px;
  }

  /* INFO GRID */
  .info-grid {
    grid-template-columns: 1fr; /* jadi 1 kolom */
    gap: 20px;
    margin: 40px auto 50px auto;
    padding: 0 10px;
  }

  .info-box,
  .info-box-contact {
    padding: 28px 20px;
    border-radius: 12px;
  }

  .info-icon,
  .info-icon-contact {
    font-size: 36px;
  }

  .info-box h3,
  .info-box-contact h3 {
    font-size: 18px;
  }

  .info-box p,
  .info-box-contact p {
    font-size: 14px;
  }

  /* BUTTON NORMAL */
  .info-btn,
  .info-btn-jj,
  .info-btn-tw,
  .info-btn-contact {
    font-size: 14px;
    padding: 10px 14px;
  }

  /* BUTTON REGISTER BESAR */
  .info-btn-register {
    font-size: 18px;
    padding: 24px 20px;
    width: 100%;
    margin-top: 30px;
    box-sizing: border-box;
  }

  /* FACILITY */
  .facility-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 10px;
  }

  .facility-box {
    padding: 28px 20px;
    border-radius: 12px;
  }

  .facility-box h3 {
    font-size: 20px;
  }

  .facility-box ul li {
    font-size: 14px;
  }

  .facility-box .date {
    font-size: 16px;
  }

  .facility-box .note {
    font-size: 14px;
  }
.info-btn-register {
  display: inline-block;
  background: #886eaf;
  color: #ffffff;
  padding: 50px 70px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 50px;
  font-size: 25px;
}
 .footer {
  background: #fff;
  padding: 60px 20px 30px;
  border-top: 1px solid #ccc;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* BRAND */
.footer-brand {
  max-width: 350px;
  text-align: center;
  transform: translateX(10px);
}

.footer-logo {
  width: 90px;
  margin-bottom: 10px;
}

.footer-text {
  margin-top: 15px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* KONTAK */
.footer-section h3 {
  font-size: 20px;
  margin-bottom: 10px;
  transform: translateX(150px);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
  margin: 8px 0;
  font-size: 16px;
  transform: translateX(50px);
}

.icon-img {
  width: 24px;
  height: 24px;
}
.icon-imgemail {
  width: 30px;
  height: 20px;
}

/* SOSIAL ICONS */
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  transform: translateX(100px);
}

.social-btn {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-img {
  width: 40px;
  height: 40px;
}

.social-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btn:active {
  transform: scale(0.88);
  box-shadow: none;
}

.social-btnyt {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-imgyt {
  width: 50px;
  height: 50px;
}

.social-btnyt:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btnyt:active {
  transform: scale(0.88);
  box-shadow: none;
}

.social-btnmbi {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-imgmbi {
  width: 60px;
  height: 30px;
}

.social-btnmbi:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btnmbi:active {
  transform: scale(0.88);
  box-shadow: none;
}

.footer-bottom {
  margin-top: 40px;
  font-size: 14px;
  color: #555;
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}
}
@media (max-width: 350px){
   /* ===== Navbar ===== */
.navbar {
  flex-wrap: wrap; /* Wajib */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: transparent;
  position: fixed;
  top: -15px;
  left: 5px;
  width: 100%;
  z-index: 1000;
}

/* Logo kiri */
.logo {
  position: absolute;
  left: 20px; /* sejajarkan sesuai padding navbar */
  flex: 1;
}

.logo img {
  margin-top: 17px;
  align-items: center;
  height: 30px;
  width: auto;
  border-radius: 10px;
  transform: translateX(-15px);
}

/* Menu box tengah */
.menu-box {
  margin-top: 50px;
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 40%;
  transform: translateX(-50%);
  z-index: 2; /* biar tidak ketumpuk logo */
  width: 280px;
}

.menu-box span {
  margin-left: 50px;
  color: #000000;
  font-weight: bold;
  font-size: 20px;
  font-family: "Poppins";
  display: none;
}

.menu-box a {
  font-family: "Poppins";
  color: #ff00f2;
  font-size: 10px;
  transition: 0.3s;
  text-decoration: none;
  font-weight: bold;
  transform: translateX(20px);
}
/* LANGUAGE SWITCHER – VERSI FINAL & CLEAN */
.lang-selector {
  position: fixed;
  top: 15px;
  right: 6px;
  z-index: 9999;
  font-family: "Poppins", sans-serif;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0px;
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  color: white;
  padding: 3px 3px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  user-select: none;
}

.lang-toggle:hover {
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  transform: translateY(-2px);
}

.lang-toggle img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
  flex-shrink: 0;
}

.lang-text {
  font-weight: 600;
  letter-spacing: 1px;
}

.arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
  font-size: 10px;
}

/* Dropdown */
.lang-options {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  border-radius: 20px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 160px;
}

.lang-options.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Rotate arrow when open */
.lang-selector.open .arrow {
  transform: rotate(180deg);
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: white;
  cursor: pointer;
  transition: background 0.2s;
}

.lang-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.lang-item img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  flex-shrink: 0;
}
.hero-title-ilc {
  margin-top: -90px;
  font-size: 2.5rem;
  text-transform: uppercase;
  filter: brightness(100%);
}
.hero-subtitle-ilc {
  font-size: 1rem;
  opacity: 0.9;
}
.guest-card-alexa {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  transition: 0.6s ease;
  transform: translateX(150px);
}

.guest-card-alexa img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: grayscale(20%) contrast(110%);
  transition: 0.6s ease;
}

.hero-title {
  margin-top: -90px;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.hero-subtitle {
  font-size: 0.75rem;
  opacity: 0.9;
}
h2[data-lang="allinfo"] {
  font-size: 35px;
}

.facility-section {
  margin-top: 40px;
  margin-left: -20px;
}
.facility-box ul {
  list-style: none;
  padding: 0;
  text-align: left;
  display: inline-block;
}

.facility-box ul li {
  margin: 8px 0;
  font-size: 15px;
  color: #000000;
  text-align: left;
}
.info-btn-register {
  display: inline-block;
  background: #886eaf;
  color: #ffffff;
  padding: 50px 70px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 50px;
  font-size: 25px;
}
 .footer {
  background: #fff;
  padding: 60px 20px 30px;
  border-top: 1px solid #ccc;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* BRAND */
.footer-brand {
  max-width: 350px;
  text-align: center;
  transform: translateX(0px);
}

.footer-logo {
  width: 90px;
  margin-bottom: 10px;
}

.footer-text {
  margin-top: 15px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* KONTAK */
.footer-section h3 {
  font-size: 20px;
  margin-bottom: 10px;
  transform: translateX(120px);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
  margin: 8px 0;
  font-size: 16px;
  transform: translateX(10px);
}

.icon-img {
  width: 24px;
  height: 24px;
}
.icon-imgemail {
  width: 30px;
  height: 20px;
}

/* SOSIAL ICONS */
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  transform: translateX(70px);
}

.social-btn {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-img {
  width: 40px;
  height: 40px;
}

.social-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btn:active {
  transform: scale(0.88);
  box-shadow: none;
}

.social-btnyt {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-imgyt {
  width: 50px;
  height: 50px;
}

.social-btnyt:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btnyt:active {
  transform: scale(0.88);
  box-shadow: none;
}

.social-btnmbi {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-imgmbi {
  width: 60px;
  height: 30px;
}

.social-btnmbi:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btnmbi:active {
  transform: scale(0.88);
  box-shadow: none;
}

.footer-bottom {
  margin-top: 40px;
  font-size: 14px;
  color: #555;
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}
}


@media (max-width: 300px){
 /* ===== Navbar ===== */
.navbar {
  flex-wrap: wrap; /* Wajib */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: transparent;
  position: fixed;
  top: -15px;
  left: 2.5px;
  width: 100%;
  z-index: 1000;
}

/* Logo kiri */
.logo {
  position: absolute;
  left: 20px; /* sejajarkan sesuai padding navbar */
  flex: 1;
}

.logo img {
  margin-top: 5px;
  align-items: center;
  height: 30px;
  width: auto;
  border-radius: 10px;
  transform: translateX(-15px);
}

/* Menu box tengah */
.menu-box {
  margin-top: 50px;
  background: #ffffff;
  padding: 15px 15px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 40%;
  transform: translateX(-50%);
  z-index: 2; /* biar tidak ketumpuk logo */
  width: 235px;
}

.menu-box span {
  margin-left: 50px;
  color: #000000;
  font-weight: bold;
  font-size: 20px;
  font-family: "Poppins";
  display: none;
}

.menu-box a {
  font-family: "Poppins";
  color: #ff00f2;
  font-size: 8px;
  transition: 0.3s;
  text-decoration: none;
  font-weight: bold;
  transform: translateX(15px);
}
/* LANGUAGE SWITCHER – VERSI FINAL & CLEAN */
.lang-selector {
  position: fixed;
  top: 15px;
  right: 6px;
  z-index: 9999;
  font-family: "Poppins", sans-serif;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0px;
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  color: white;
  padding: 3px 3px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  user-select: none;
}

.lang-toggle:hover {
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  transform: translateY(-2px);
}

.lang-toggle img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
  flex-shrink: 0;
}

.lang-text {
  font-weight: 600;
  letter-spacing: 1px;
}

.arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
  font-size: 10px;
}

/* Dropdown */
.lang-options {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  border-radius: 20px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 160px;
}

.lang-options.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Rotate arrow when open */
.lang-selector.open .arrow {
  transform: rotate(180deg);
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: white;
  cursor: pointer;
  transition: background 0.2s;
}

.lang-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.lang-item img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  flex-shrink: 0;
}
.hero-title-ilc {
  margin-top: -90px;
  font-size: 2.5rem;
  text-transform: uppercase;
  filter: brightness(100%);
}
.hero-subtitle-ilc {
  font-size: 1rem;
  opacity: 0.9;
}
.guest-card-alexa {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  transition: 0.6s ease;
  transform: translateX(150px);
}

.guest-card-alexa img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: grayscale(20%) contrast(110%);
  transition: 0.6s ease;
}

.hero-title {
  margin-top: -90px;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.hero-subtitle {
  font-size: 0.75rem;
  opacity: 0.9;
}
.facility-section {
  margin-top: 40px;
  margin-left: -40px;
}
.facility-box ul {
  list-style: none;
  padding: 0;
  text-align: left;
  display: inline-block;
}

.facility-box ul li {
  margin: 8px 0;
  font-size: 15px;
  color: #000000;
  text-align: left;
}
.info-btn-register {
  display: inline-block;
  background: #886eaf;
  color: #ffffff;
  padding: 50px 70px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 50px;
  font-size: 25px;
}
 .footer {
  background: #fff;
  padding: 60px 20px 30px;
  border-top: 1px solid #ccc;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* BRAND */
.footer-brand {
  max-width: 350px;
  text-align: center;
  transform: translateX(0px);
}

.footer-logo {
  width: 90px;
  margin-bottom: 10px;
}

.footer-text {
  margin-top: 15px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* KONTAK */
.footer-section h3 {
  font-size: 20px;
  margin-bottom: 10px;
  transform: translateX(90px);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
  margin: 8px 0;
  font-size: 16px;
  transform: translateX(10px);
}

.icon-img {
  width: 24px;
  height: 24px;
}
.icon-imgemail {
  width: 30px;
  height: 20px;
}

/* SOSIAL ICONS */
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  transform: translateX(50px);
}

.social-btn {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-img {
  width: 40px;
  height: 40px;
}

.social-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btn:active {
  transform: scale(0.88);
  box-shadow: none;
}

.social-btnyt {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-imgyt {
  width: 50px;
  height: 50px;
}

.social-btnyt:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btnyt:active {
  transform: scale(0.88);
  box-shadow: none;
}

.social-btnmbi {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-imgmbi {
  width: 60px;
  height: 30px;
}

.social-btnmbi:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btnmbi:active {
  transform: scale(0.88);
  box-shadow: none;
}

.footer-bottom {
  margin-top: 40px;
  font-size: 14px;
  color: #555;
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}
}