* {
  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");
}

@font-face {
  font-family: "greatvibes";
  src: url("GreatVibes-Regular.ttf") 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: #e6e6fa;
}

.white {
  background: linear-gradient(to top, #402c5c, #886eaf);
}

.content {
  background: white;
  width: 60%;
  margin: auto;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-text0 {
  position: absolute;
  top: 50%;
  left: 25%;
  color: white;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-text0 h1 {
  font-size: 40px;
  align-items: center;
  transform: translateX(-180px);
  margin-top: -40px;
}
/* ===== 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;
}

/* TEKS MENU */
.menu-box a {
  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;
}
/* ========================== */
/* TOP BAR (HEADER) */
/* ========================== */

.top-bar {
  /* ungu atas */
  height: 100px;
  color: white;
  text-align: center;
  padding-top: 20px;
}

.top-bar span {
  font-size: 16px;
}

/* SECTION BACKGROUND FANTASY */
.speakers-section.fantasy {
  padding: 70px 40px;
  text-align: center;
  background: linear-gradient(to top, #402c5c, #886eaf);
  position: relative;
  overflow: hidden;
}

/* AURORA / LIGHT SWIRLS */
.speakers-section.fantasy::before,
.speakers-section.fantasy::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3),
    transparent 70%
  );
  filter: blur(70px);
  animation: float 8s infinite linear alternate;
}

.speakers-section.fantasy::before {
  top: -150px;
  left: -150px;
}

.speakers-section.fantasy::after {
  bottom: -150px;
  right: -150px;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(40px) rotate(30deg);
  }
}

/* TITLE */
.speakers-section .title {
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
  max-width: 900px;
  margin: 0 auto 45px;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
  margin-top: 100px;
}
.title-event {
  margin-top: 70px;
}

/* CONTAINER */
.speakers-container {
  display: flex;
  gap: 100px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FANTASY CARD */
.fantasy-card {
  background: rgba(255, 255, 255, 0.12);
  width: 300px;
  border-radius: 25px;
  padding: 22px;
  backdrop-filter: blur(15px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* ORNAMENTAL GLOW */
.fantasy-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -40px;
  right: -40px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
  filter: blur(40px);
  opacity: 0.4;
  transition: 0.4s ease;
}

.fantasy-card:hover::after {
  opacity: 0.7;
}

/* CARD HOVER */
.fantasy-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.4);
}

/* IMAGE */
.speaker-img {
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 18px;
}

.speaker-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.fantasy-card:hover .speaker-img img {
  transform: scale(1.08);
}

/* NAME */
.speaker-name {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* DESCRIPTION */
.speaker-desc {
  font-size: 14px;
  margin-top: 12px;
  color: #e8dfff;
  line-height: 1.6;
}
/* Judul kecil di atas foto */
.speaker-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 0 6px rgba(215, 207, 255, 0.8);
  margin-bottom: 12px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.hero-description {
  max-width: 800px;
  margin: 20px auto 0 auto;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 20px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
}

.wrapper {
  width: 100%; /* FULL LAYAR */
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* Band Ungu */
.band {
  background: linear-gradient(to right, #4b2c75, #7d4bae);
  color: white;
  text-align: center;
  padding: 18px 0;
  position: relative; /* WAJIB biar anaknya bisa numpuk */
}

.band h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.italic-text {
  position: absolute; /* BIAR NIMPAI TULISAN UTAMA */
  top: 28px; /* ATUR POSISI VERTICAL */
  left: 50%; /* TENGAH */
  transform: translateX(-50%);
  font-style: italic;
  font-size: 18px;
  color: #ffd94a; /* KUNING */
  font-weight: 700;
  pointer-events: none;
}

/* Kotak konten putih (FULL LEBAR JUGA) */
.content-block {
  width: 100%;
  height: 250px;
  background: white;
}

/* === CINEMATIC EVENT SECTION === */
.event-cinematic {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  margin-bottom: 50px;
}

/* BACKGROUND IMAGE */
.event-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: slowZoom 20s infinite alternate;
}

/* OVERLAY GRADIENT */
.event-cinematic::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(30, 10, 60, 0.65),
    rgba(0, 0, 0, 0.85)
  );
  z-index: 1;
}

/* TEXT LAYER */
.event-layer {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  color: white;
}

/* SCRIPT TEXT (KUNING FANTASY) */
.event-script {
  font-size: clamp(64px, 10vw, 120px);
  color: #ffeb3b;
  opacity: 0.75;
  text-shadow: 0 0 25px rgba(255, 235, 59, 0.6);
  animation: glowPulse 4s infinite ease-in-out;
  font-weight: 1000;
  transform: translateY(-100px);
}

/* MAIN TITLE */
.event-title {
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 700;
  margin-top: -30px;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}
.title-event {
  margin-top: 40px;
}

/* DESCRIPTION */
.event-desc {
  max-width: 760px;
  margin-top: 20px;
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

/* BUTTON */
.event-btn {
  margin-top: 40px;
  padding: 16px 36px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #ffffff, #dfe6e9);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4),
    0 0 60px rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.event-btn:hover {
  background: linear-gradient(135deg, #a4ffb8, #1c8e4d);
  color: white;
  box-shadow: 0 0 40px rgba(77, 255, 145, 0.8),
    0 0 80px rgba(150, 255, 173, 0.6);
  transform: translateY(-6px);
}

/* ANIMATIONS */
@keyframes slowZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.15);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* === 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(-100px);
}

.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;
}

/* RESPONSIVE */
@media (max-width: 850px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }
}

.footer-bottom {
  margin-top: 40px;
  font-size: 14px;
  color: #555;
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}
@media (max-width: 700px) {
  .hero-text0 {
    top: 20%;
    left: 50%;
  }
  .hero-text0 h1 {
    font-size: 28px;
    transform: translateX(-100px);
    margin-top: -20px;
  }
  .hero-img {
    height: 60vh;
  }
  .navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    padding: 15px 20px;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
  }
  .menu-box {
    gap: 10px;
    padding: 7px 14px;
  }

  .menu-box span {
    font-size: 15px;
  }

  .menu-box a {
    font-size: 12px;
  }
  .logo1 img {
    height: px;
  }
  /* Lang Button */
  .lang-btn {
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 100;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .lang-btn.active {
    background: #ff00f2 !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px rgba(255, 0, 242, 0.6);
    transform: scale(1.1);
  }

  .lang-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.05);
  }

  .lang-btn.active:hover {
    background: #ff00f2;
  }

  .flag {
    font-size: 10px;
  }
  .speakers-section .title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 1000;
    max-width: 900px;
    margin: 0 auto 45px;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
  }
  .fantasy-card {
    background: rgba(255, 255, 255, 0.12);
    width: 300px;
    border-radius: 25px;
    padding: 15px;
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  .speaker-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 18px;
  }

  .speaker-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
  }
  .event-cinematic {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    margin-bottom: 50px;
  }
}
@media (max-width: 600px) {
  .hero-text0 {
    top: 20%;
    left: 50%;
  }
  .hero-text0 h1 {
    font-size: 28px;
    transform: translateX(-100px);
    margin-top: -20px;
  }
  .hero-img {
    height: 60vh;
  }
  .navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    padding: 15px 20px;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
  }
  .menu-box {
    gap: 6px;
    padding: 7px 14px;
  }

  .menu-box span {
    font-size: 15px;
  }

  .menu-box a {
    font-size: 12px;
  }
  .logo1 img {
    height: px;
  }
  /* Lang Button */
  .lang-btn {
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 100;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .lang-btn.active {
    background: #ff00f2 !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px rgba(255, 0, 242, 0.6);
    transform: scale(1.1);
  }

  .lang-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.05);
  }

  .lang-btn.active:hover {
    background: #ff00f2;
  }

  .flag {
    font-size: 10px;
  }
  .speakers-section .title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 1000;
    max-width: 900px;
    margin: 0 auto 45px;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
  }
  .fantasy-card {
    background: rgba(255, 255, 255, 0.12);
    width: 300px;
    border-radius: 25px;
    padding: 15px;
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  .speaker-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 18px;
  }

  .speaker-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
  }
  .event-cinematic {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    margin-bottom: 50px;
  }
}
@media (max-width: 500px) {
  .hero-text0 {
    top: 20%;
    left: 50%;
  }
  .hero-text0 h1 {
    font-size: 28px;
    transform: translateX(-100px);
    margin-top: -20px;
  }
  .hero-img {
    height: 60vh;
  }
  .navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    padding: 15px 20px;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
  }
  .menu-box {
    gap: 6px;
    padding: 5px 12px;
  }

  .menu-box span {
    font-size: 13px;
  }

  .menu-box a {
    font-size: 10px;
  }
  .logo1 img {
    height: px;
  }
  /* Lang Button */
  .lang-btn {
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 100;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .lang-btn.active {
    background: #ff00f2 !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px rgba(255, 0, 242, 0.6);
    transform: scale(1.1);
  }

  .lang-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.05);
  }

  .lang-btn.active:hover {
    background: #ff00f2;
  }

  .flag {
    font-size: 10px;
  }
  .speakers-section .title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 1000;
    max-width: 900px;
    margin: 0 auto 45px;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
  }
  .fantasy-card {
    background: rgba(255, 255, 255, 0.12);
    width: 250px;
    border-radius: 25px;
    padding: 15px;
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  .speaker-img {
    width: 100%;
    height: 360px;
    overflow: hidden;
    border-radius: 18px;
  }

  .speaker-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
  }
  .event-cinematic {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    margin-bottom: 50px;
  }
}
@media (max-width: 400px) {
  .hero-text0 {
    top: 20%;
    left: 50%;
  }
  .hero-text0 h1 {
    font-size: 28px;
    transform: translateX(-100px);
    margin-top: -20px;
  }
  .hero-img {
    height: 60vh;
  }
  /* ===== 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: 7px;
  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;
}
  .speakers-section .title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 1000;
    max-width: 900px;
    margin: 0 auto 45px;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
  }
   .event-script {
  font-size: clamp(64px, 10vw, 120px);
  color: #ffeb3b;
  opacity: 0.75;
  text-shadow: 0 0 25px rgba(255, 235, 59, 0.6);
  animation: glowPulse 4s infinite ease-in-out;
  font-size: 40px;
  transform: translateY(-40px);
  font-weight: 1000px;
}
.event-title {
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 800;
  margin-top: -30px;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  font-size: 30px;
}
  .fantasy-card {
    background: rgba(255, 255, 255, 0.12);
    width: 250px;
    border-radius: 25px;
    padding: 15px;
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  .speaker-img {
    width: 100%;
    height: 360px;
    overflow: hidden;
    border-radius: 18px;
  }

  .speaker-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
  }
  .event-cinematic {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    margin-bottom: 50px;
  }
  /* BRAND */
.footer-brand {
  max-width: 350px;
  text-align: center;
  transform: translateX(0px);
}
}

@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: 8px;
  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;
}


  .event-script {
  font-size: clamp(64px, 10vw, 120px);
  color: #ffeb3b;
  opacity: 0.75;
  text-shadow: 0 0 25px rgba(255, 235, 59, 0.6);
  animation: glowPulse 4s infinite ease-in-out;
  font-size: 40px;
  transform: translateY(-40px);
  font-weight: 1000px;
}
.event-title {
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 800;
  margin-top: -30px;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  font-size: 30px;
}
.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(0px);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
  margin: 8px 0;
  font-size: 16px;
  transform: translateX(0px);
}

.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(0px);
}

.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 {
  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: 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 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(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: 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;
}
  .event-script {
  font-size: clamp(64px, 10vw, 120px);
  color: #ffeb3b;
  opacity: 0.75;
  text-shadow: 0 0 25px rgba(255, 235, 59, 0.6);
  animation: glowPulse 4s infinite ease-in-out;
  font-size: 40px;
  transform: translateY(-40px);
  font-weight: 1000px;
}
.event-title {
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 800;
  margin-top: -30px;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  font-size: 30px;
}
}
