* {
  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);
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f5f6fa;
  color: #222;
}
.hero-ilc1 {
  position: relative;
  height: 100vh;
  background: url('_MG_0593.JPG') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}
.hero-ilc1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* atur gelap di sini */
  z-index: 1;
}
.hero-ilc2 {
  position: relative;
  height: 100vh;
  background: url('LM100225.JPG') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}
.hero-ilc2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* atur gelap di sini */
  z-index: 1;
}
/* === HERO === */
.hero-ilc {
  position: relative;
  height: 100vh;
  background: url('DSC09659.JPG') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}
.hero-ilc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* atur gelap di sini */
  z-index: 1;
}
/* Section */
.guest-wow {
  padding: 100px 20px;

  background: linear-gradient(to top, #886eaf, #927cb2);
}

/* Title */
.wow-title {
  text-align: center;
  font-size: 3.5rem;
  letter-spacing: 4px;
  margin-bottom: 70px;
  color: white;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  font-family: 'Poppins', sans-serif;
}

/* Main Guest Grid */
.guest-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: -10px;
}

/* Card */
.guest-card {
  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;
  width: 400px;
  transform: translateX(50px);
}

.guest-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: grayscale(20%) contrast(110%);
  transition: 0.6s ease;
}

/* Info */
.guest-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

.guest-info h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: white;
}

.guest-info p {
  font-size: 0.95rem;
  opacity: 0.85;
  color: white;
}


.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: 400px;
  object-fit: cover;
  filter: grayscale(20%) contrast(110%);
  transition: 0.6s ease;
}

/* Info */
.guest-info-alexa {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

.guest-info-alexa h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.guest-info-alexa p {
  font-size: 0.95rem;
  opacity: 0.85;
}

.guest-row-alexa {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Card tetap */
.guest-card-alexa {
  width: 370px;
  height: 400px;
}

.guest-desc-alexa {
  max-width: 750px;
  transform: translateX(200px);
  
  /* BOX */
  background: white;
  backdrop-filter: blur(10px);
  padding: 30px 35px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateX(150px);
}

/* Judul */
.guest-desc-alexa h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: rgb(0, 0, 0);
}

/* Deskripsi */
.guest-desc-alexa p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.9);
}



/* Next Guest */
.next-title {
  text-align: center;
  font-size: 2.2rem;
  margin: 100px 0 40px;
  letter-spacing: 3px;
  opacity: 0.9;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  color: white;
}

.next-guest-wow {
  display: flex;
  justify-content: center;
}








.hero .overlay-ilc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content-ilc {
  position: relative;
  z-index: 2;
}

.hero-logo-ilc {
  width: 400px;
  margin-bottom: 40px;
}

.hero-title-ilc {
  margin-top: -90px;
  font-size: 2.8rem;
  text-transform: uppercase;
  filter: brightness(100%);
}

.hero-subtitle-ilc {
  font-size: 1.2rem;
  opacity: 0.9;
}
.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(320px, 1fr));
  gap: 40px;
  margin-bottom: 70px;
}

.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 {
  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: 1.4rem;
  text-transform: uppercase;
  filter: brightness(100%);
}

.hero-subtitle-ilc {
  font-size: 1rem;
  opacity: 0.9;
}
.guest-row-alexa {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .guest-card-alexa {
    max-width: 300px;
    width: 100%;
    height: 380px;
    border-radius: 18px;
    overflow: hidden;
    left: -150px;
  }

  .guest-card-alexa img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .guest-desc-alexa {
    max-width: 300px;
    width: 100%;
    transform: none; /* hapus translateX di HP */
    padding: 20px;
    border-radius: 16px;
    text-align: center;
  }
   /* Grid jadi 1 kolom */
  .guest-main {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  /* Card */
  .guest-card {
    max-width: 300px;
    width: 100%;
    transform: none; /* hilangkan geser di HP */
    border-radius: 22px;
  }

  .guest-card img {
    height: 320px;
  }

  /* Info */
  .guest-info {
    padding: 18px;
  }

  .guest-info h2 {
    font-size: 1.3rem;
  }

  .guest-info p {
    font-size: 0.85rem;
  }

.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: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
  margin-top: 100px;
}

  /* === FACILITY SECTION === */
  .facility-section {
    margin-top: 20px;
    padding: 0 10px;
  }

  .facility-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 300px;
  }

  .facility-box {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .facility-box h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .facility-box ul li,
  .facility-box .note {
    font-size: 14px;
  }

  .facility-box .date {
    font-size: 16px;
  }
  .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;
}

  /* === LOCATION === */
  .location {
    padding: 80px 12px;
  }

  .location-content {
    max-width: 300px;
  }

  .btn-location {
    margin-top: 40px;
    padding: 10px 22px;
    font-size: 14px;
  }

  .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;
}
 
  .hero-text h1 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
  }
  .title-container {
    margin-top: 30px;
    padding: 0 8px;
  }

  .title-main {
    flex-direction: column; /* dari sejajar → bertumpuk */
    align-items: center;
    text-align: center;
  }

  .title-main h1 {
    font-size: 28px; /* dari 80px → kecil tapi terbaca */
    line-height: 1.1;
    word-break: break-word;
  }

  .title-sub {
    margin-left: 0;
    margin-top: 6px;
    text-align: center;
  }

  .title-sub h2 {
    font-size: 16px;
    margin-top: 4px;
  }

  .title-sub p {
    font-size: 10px;
    text-align: center;
    letter-spacing: 0.5px;
  }
  .card-stack {
    width: 170px;
    height: 240px;
    margin: 20px auto;
  }

  /* === KARTU DALAM === */
  .card {
    padding: 10px;
    border-radius: 14px;
  }

  .card img,
  .card-a img,
  .card-b img {
    width: 140px;
    height: auto;
    margin: 0 auto 6px;
  }
  .card .title {
    font-size: 1.4rem;
    margin-bottom: 120px;
  }
  .btn-more {
    font-size: 0.7rem;
    padding: 15px 15px;
    margin-top: 6px;
    transform: translateY(5px);
  }
  .card-b h2 {
    font-size: 11px !important;
    line-height: 1.2 !important;
    margin-bottom: 60px !important;
  }

  .card-b p {
    font-size: 9px !important;
    line-height: 1.2 !important;
  }

  .card-b a {
    font-size: 9px !important;
  }
  .card-b h2 {
    font-size: 11px !important;
    line-height: 1.2;
    margin-top: 6px;
    margin-bottom: 200px; /* ruang besar untuk maskot */
    text-align: center;
  }

  /* === TOMBOL DI BAWAH === */
  .card-b a.btn-more {
    font-size: 0.65rem !important;
    padding: 5px 8px !important;
    border-radius: 8px;
    width: 90%;
    margin: 4px auto 0;
    text-align: center;
  }

  /* Bungkus tombol ke bawah */
  .card-b a.btn-more:first-of-type {
    margin-top: auto; /* dorong ke bawah */
  }
}

@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: 2.5px;
  width: 100%;
  z-index: 1000;
}

/* Logo kiri */
.logo {
  position: absolute;
  left: 20px; /* sejajarkan sesuai padding navbar */
  flex: 1;
  top: -15px;
}

.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: 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: 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(50px);
}
/* LANGUAGE SWITCHER – VERSI FINAL & CLEAN */
.lang-selector {
  position: fixed;
  top: -30px;
  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: 1.4rem;
  text-transform: uppercase;
  filter: brightness(100%);
}

.hero-subtitle-ilc {
  font-size: 1rem;
  opacity: 0.9;
}
.guest-row-alexa {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .guest-card-alexa {
    max-width: 300px;
    width: 100%;
    height: 380px;
    border-radius: 18px;
    overflow: hidden;
    left: -150px;
  }

  .guest-card-alexa img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .guest-desc-alexa {
    max-width: 300px;
    width: 100%;
    transform: none; /* hapus translateX di HP */
    padding: 20px;
    border-radius: 16px;
    text-align: center;
  }
   /* Grid jadi 1 kolom */
  .guest-main {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  /* Card */
  .guest-card {
    max-width: 300px;
    width: 100%;
    transform: none; /* hilangkan geser di HP */
    border-radius: 22px;
  }

  .guest-card img {
    height: 320px;
  }

  /* Info */
  .guest-info {
    padding: 18px;
  }

  .guest-info h2 {
    font-size: 1.3rem;
  }

  .guest-info p {
    font-size: 0.85rem;
  }

.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: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
  margin-top: 100px;
}

  /* === FACILITY SECTION === */
  .facility-section {
    margin-top: 20px;
    padding: 0 10px;
  }

  .facility-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 300px;
  }

  .facility-box {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .facility-box h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .facility-box ul li,
  .facility-box .note {
    font-size: 14px;
  }

  .facility-box .date {
    font-size: 16px;
  }
  .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;
}

  /* === LOCATION === */
  .location {
    padding: 80px 12px;
  }

  .location-content {
    max-width: 300px;
  }

  .btn-location {
    margin-top: 40px;
    padding: 10px 22px;
    font-size: 14px;
  }

  .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;
}
 .menu-box {
    padding: 10px 10px;
    gap: 10px;
  }
  .menu-box span {
    font-size: 10px;
  }

  .menu-box a {
    font-size: 8px;
  }

  .logo img {
    margin-top: 15px;
    height: 35px;
  }
  .lang-toggle {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(145deg, #c63bad, #7e2eb8);
    color: white;
    padding: 4px 4px;
    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: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    flex-shrink: 0;
  }

  .lang-text {
    font-weight: 100px;
    letter-spacing: 1px;
  }

  .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 8px;
  }

  /* Dropdown */
  .lang-options {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: linear-gradient(145deg, #c63bad, #7e2eb8);
    border-radius: 20px;
    padding: 5px 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: 100px;
  }

  .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: 6px 10px;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
  }

  .lang-item:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  .lang-item img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
    flex-shrink: 0;
  }
  .hero-text {
    margin-top: 100px;
  }
  .hero-text h1 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
  }
  .title-container {
    margin-top: 30px;
    padding: 0 8px;
  }

  .title-main {
    flex-direction: column; /* dari sejajar → bertumpuk */
    align-items: center;
    text-align: center;
  }

  .title-main h1 {
    font-size: 28px; /* dari 80px → kecil tapi terbaca */
    line-height: 1.1;
    word-break: break-word;
  }

  .title-sub {
    margin-left: 0;
    margin-top: 6px;
    text-align: center;
  }

  .title-sub h2 {
    font-size: 16px;
    margin-top: 4px;
  }

  .title-sub p {
    font-size: 10px;
    text-align: center;
    letter-spacing: 0.5px;
  }
  .card-stack {
    width: 170px;
    height: 240px;
    margin: 20px auto;
  }

  /* === KARTU DALAM === */
  .card {
    padding: 10px;
    border-radius: 14px;
  }

  .card img,
  .card-a img,
  .card-b img {
    width: 140px;
    height: auto;
    margin: 0 auto 6px;
  }
  .card .title {
    font-size: 1.4rem;
    margin-bottom: 120px;
  }
  .btn-more {
    font-size: 0.7rem;
    padding: 15px 15px;
    margin-top: 6px;
    transform: translateY(5px);
  }
  .card-b h2 {
    font-size: 11px !important;
    line-height: 1.2 !important;
    margin-bottom: 60px !important;
  }

  .card-b p {
    font-size: 9px !important;
    line-height: 1.2 !important;
  }

  .card-b a {
    font-size: 9px !important;
  }
  .card-b h2 {
    font-size: 11px !important;
    line-height: 1.2;
    margin-top: 6px;
    margin-bottom: 200px; /* ruang besar untuk maskot */
    text-align: center;
  }

  /* === TOMBOL DI BAWAH === */
  .card-b a.btn-more {
    font-size: 0.65rem !important;
    padding: 5px 8px !important;
    border-radius: 8px;
    width: 90%;
    margin: 4px auto 0;
    text-align: center;
  }

  /* Bungkus tombol ke bawah */
  .card-b a.btn-more:first-of-type {
    margin-top: auto; /* dorong ke bawah */
  }
}






































@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: 10px;
  width: 100%;
  z-index: 1000;
}

/* Logo kiri */
.logo {
  position: absolute;
  left: 20px; /* sejajarkan sesuai padding navbar */
  flex: 1;
  top: -15px;
}

.logo img {
  margin-top: 10px;
  align-items: center;
  width: 35px;
  height: 1px;
  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: 8px;
  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: 250px;
}

.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(30px);
}
/* LANGUAGE SWITCHER – VERSI FINAL & CLEAN */
.lang-selector {
  position: fixed;
  top: 0px;
  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-row-alexa {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .guest-card-alexa {
    max-width: 300px;
    width: 100%;
    height: 380px;
    border-radius: 18px;
    overflow: hidden;
    left: -150px;
  }

  .guest-card-alexa img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .guest-desc-alexa {
    max-width: 300px;
    width: 100%;
    transform: none; /* hapus translateX di HP */
    padding: 20px;
    border-radius: 16px;
    text-align: center;
  }
   /* Grid jadi 1 kolom */
  .guest-main {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  /* Card */
  .guest-card {
    max-width: 300px;
    width: 100%;
    transform: none; /* hilangkan geser di HP */
    border-radius: 22px;
  }

  .guest-card img {
    height: 320px;
  }

  /* Info */
  .guest-info {
    padding: 18px;
  }

  .guest-info h2 {
    font-size: 1.3rem;
  }

  .guest-info p {
    font-size: 0.85rem;
  }

.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: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
  margin-top: 100px;
}

  /* === FACILITY SECTION === */
  .facility-section {
    margin-top: 20px;
    padding: 0 10px;
  }

  .facility-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 300px;
  }

  .facility-box {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .facility-box h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .facility-box ul li,
  .facility-box .note {
    font-size: 14px;
  }

  .facility-box .date {
    font-size: 16px;
  }
  .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;
}

  /* === LOCATION === */
  .location {
    padding: 80px 12px;
  }

  .location-content {
    max-width: 300px;
  }

  .btn-location {
    margin-top: 40px;
    padding: 10px 22px;
    font-size: 14px;
  }

  /* === FOOTER === */
  .footer {
    padding: 40px 12px 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .footer-brand {
    max-width: 300px;
    transform: none;
    text-align: center;
  }

  .footer-logo {
    width: 70px;
  }

  .footer-text {
    font-size: 13px;
  }

  .footer-section h3 {
    font-size: 16px;
    text-align: center;
  }

  .footer-contact {
    font-size: 14px;
    justify-content: center;
  }

  .icon-img,
  .icon-imgemail {
    width: 20px;
    height: 20px;
  }

  /* === SOCIAL ICONS === */
  .social-icons {
    justify-content: center;
  }

  .social-btn,
  .social-btnyt,
  .social-btnmbi {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .social-img {
    width: 32px;
    height: 32px;
  }

  .social-imgyt {
    width: 36px;
    height: 36px;
  }

  .social-imgmbi {
    width: 46px;
    height: 24px;
  }


 .menu-box {
    padding: 10px 10px;
    gap: 10px;
  }
  .menu-box span {
    font-size: 10px;
  }

  .menu-box a {
    font-size: 8px;
  }

  .logo img {
    margin-top: 15px;
    height: 35px;
  }
  .lang-toggle {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(145deg, #c63bad, #7e2eb8);
    color: white;
    padding: 4px 4px;
    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: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    flex-shrink: 0;
  }

  .lang-text {
    font-weight: 100px;
    letter-spacing: 1px;
  }

  .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 8px;
  }

  /* Dropdown */
  .lang-options {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: linear-gradient(145deg, #c63bad, #7e2eb8);
    border-radius: 20px;
    padding: 5px 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: 100px;
  }

  .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: 6px 10px;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
  }

  .lang-item:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  .lang-item img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
    flex-shrink: 0;
  }
  .hero-text {
    margin-top: 100px;
  }
  .hero-text h1 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
  }
  .title-container {
    margin-top: 30px;
    padding: 0 8px;
  }

  .title-main {
    flex-direction: column; /* dari sejajar → bertumpuk */
    align-items: center;
    text-align: center;
  }

  .title-main h1 {
    font-size: 28px; /* dari 80px → kecil tapi terbaca */
    line-height: 1.1;
    word-break: break-word;
  }

  .title-sub {
    margin-left: 0;
    margin-top: 6px;
    text-align: center;
  }

  .title-sub h2 {
    font-size: 16px;
    margin-top: 4px;
  }

  .title-sub p {
    font-size: 10px;
    text-align: center;
    letter-spacing: 0.5px;
  }
  .card-stack {
    width: 170px;
    height: 240px;
    margin: 20px auto;
  }

  /* === KARTU DALAM === */
  .card {
    padding: 10px;
    border-radius: 14px;
  }

  .card img,
  .card-a img,
  .card-b img {
    width: 140px;
    height: auto;
    margin: 0 auto 6px;
  }
  .card .title {
    font-size: 1.4rem;
    margin-bottom: 120px;
  }
  .btn-more {
    font-size: 0.7rem;
    padding: 15px 15px;
    margin-top: 6px;
    transform: translateY(5px);
  }
  .card-b h2 {
    font-size: 11px !important;
    line-height: 1.2 !important;
    margin-bottom: 60px !important;
  }

  .card-b p {
    font-size: 9px !important;
    line-height: 1.2 !important;
  }

  .card-b a {
    font-size: 9px !important;
  }
  .card-b h2 {
    font-size: 11px !important;
    line-height: 1.2;
    margin-top: 6px;
    margin-bottom: 200px; /* ruang besar untuk maskot */
    text-align: center;
  }

  /* === TOMBOL DI BAWAH === */
  .card-b a.btn-more {
    font-size: 0.65rem !important;
    padding: 5px 8px !important;
    border-radius: 8px;
    width: 90%;
    margin: 4px auto 0;
    text-align: center;
  }

  /* Bungkus tombol ke bawah */
  .card-b a.btn-more:first-of-type {
    margin-top: auto; /* dorong ke bawah */
  }
}