/* =================================
   VARIABEL & PENGATURAN DASAR
   ================================= */
:root {
  --primary: #0099f1;
  --bg: #010101;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--bg);
  color: #fff;
  font-weight: 400;
}
p,
li,
ol {
  line-height: 1.7;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}
/* Padding umum untuk section */
.about,
.acara,
.pemateri,
.timeline,
.detail-info,
.lomba-card {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* =================================
   HEADER & NAVBAR
   ================================= */
#header {
  display: flex;
  position: fixed;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 7%;
  background-color: rgba(1, 1, 1, 0);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 9999;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transform: translateY(0);
}
#header.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
}
body #header.scrolled { 
  background-color: rgba(0, 0, 0, 0.9); 
}
.navbar-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-right: auto;
  font-style: italic;
}
.navbar-logo span {
  color: var(--primary);
}
.navbar {
  margin-right: 10px;
}
.navbar-link {
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 10px;
}
.navbar-link li {
  list-style-type: none;
  padding: 10px;
}
.navbar-link li a {
  color: #fff;
  font-size: 1.2rem;
  position: relative;
  text-decoration: none;
  padding-bottom: 7px;
  transition: all .3s ease 0s;
}

/* Garis bawah pada hover & active link */
li a::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 2px;
  bottom: 0;
  left: 25%;
  background-color: var(--primary);
  border-radius: 20px;
  transform: scaleX(0);
  transition: transform 0.4s ease-in-out;
}
li a:hover {
  color: var(--primary);
}
li a:hover::after {
  transform: scaleX(1);
}
.navbar-link li.active a {
  color: var(--primary);
}
.navbar-link li.active a::after {
  transform: scaleX(1);
}
.navbar .navbar-link.is-active {
  /* align-items: center; */
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background-color: rgba(1, 1, 1, 0.9);
}

/* Hamburger Menu */
.hamburger {
  position: relative;
  display: none;
  width: 35px;
  height: 35px;
  background: none;
  appearance: none;
  cursor: pointer;
  z-index: 99;
}
.hamburger .bar,
.hamburger::after,
.hamburger::before {
  content: '';
  display: block;
  position: relative;
  background-color: #0099f1;
  border-radius: 10px;
  width: 90%;
  height: 3px;
  margin: 5px 0;
  z-index: 9999;
  transition: .4s;
}
.hamburger.is-active .bar {
  display: none;
}
.hamburger.is-active::after {
  transform: rotate(45deg) translate(-3px, -6px);
}
.hamburger.is-active::before {
  transform: rotate(-45deg) translate(-0px, 1px);
}

/* =================================
   HERO SECTION
   ================================= */
.hero {
  display: flex;
  position: relative;
  padding: 180px 0;
  background-image: url("/img/WEB\ DESIGN\ GKMS.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0;
  background: linear-gradient(0deg,
      rgba(1, 1, 3, 1) 8%,
      rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
}
.hero .content {
  flex: 3;
  padding: 1.4rem 0 1.4rem 7%;
  max-width: none;
}
.hero .content h1 {
  font-size: 5em;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
  line-height: 1.2;
}
.hero .content h1 span {
  color: var(--primary);
}
.hero .content p {
  font-size: 1.6rem;
  margin-top: 1rem;
  line-height: 1.4;
  font-weight: 300;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.1);
}

/* CTA Button Styles */
a.cta,
a.cta-acara {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  border-radius: 5px;
    font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
a.cta {
  margin-top: 1rem;
  padding: 1rem 3rem;
  border-radius: 0.5rem;
  box-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}
a.cta:hover,
a.cta-acara:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

/* =================================
   NEWS SLIDER (DALAM HERO)
   ================================= */
.news-container {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 7% 1.5rem 0;
}
.news-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 1rem;
  scroll-snap-stop: always;
}
.news-wrapper::-webkit-scrollbar {
  display: none;
}
a.news-card {
  flex: 0 0 96%;
  width: 100%;
  scroll-snap-align: center;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-color: #1a1a1a;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block; 
  aspect-ratio: 4/5; /* Menjaga rasio kartu agar tidak penyok */
}
.news-image-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px; /* Sesuaikan dengan border-radius news-card */
  overflow: hidden; /* Ini bagian terpenting, untuk menyembunyikan gambar lain */
}
.news-image-wrapper {
  display: flex; /* Membuat gambar berjajar ke samping */
  width: 100%;
  height: 100%;
  /* Efek transisi agar pergerakan terlihat mulus */
}
.news-image-wrapper img {
  position: absolute; /* Tumpuk semua gambar di posisi yang sama */
  flex-shrink: 0;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  opacity: 0; /* Awalnya semua gambar tidak terlihat */
  transition: opacity 1s ease-in-out; /* Efek transisi opasitas */
  z-index: 1; /* Atur z-index agar bisa ditumpuk */
}
/* Gambar yang sedang aktif akan memiliki opasitas 1 dan z-index lebih tinggi */
.news-image-wrapper img.active {
  opacity: 1;
  z-index: 2;
}
/* Kita perlu memastikan overlay berada di atas slider gambar */
.news-card-overlay {
  position: relative; /* Ubah dari absolute ke relative agar tetap di alur normal, atau atur z-index */
  z-index: 2;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0) 100%);
}
/* Hapus img lama yang berada langsung di dalam news-card */
a.news-card > img {
  display: none; /* Sembunyikan jika masih ada style untuk img lama */
}
a.news-card:hover {
  box-shadow: 0 8px 25px rgba(0, 153, 241, 0.15);
}
a.news-card:hover img {
  transform: scale(1.05); /* Efek zoom halus */
}
.news-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: white;
  z-index: 2;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
/* Style untuk label kategori */
.card-category {
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 5px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.news-card-overlay h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Sembunyikan paragraf untuk desain yang lebih simpel */
.news-card-overlay p {
  display: none;
}
.news-navigation {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.nav-dot {
  all: unset;
  width: 10px;
  height: 10px;
  background-color: #555;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.nav-dot:hover {
  background-color: #777;
}
.nav-dot.active {
  background-color: var(--primary);
  transform: scale(1.2);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* =================================
   FLOATING WHATSAPP POPUP
   ================================= */
.whatsapp-popup {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 20px;
  right: 20px;
  z-index: 999999;
  background-color: #2db742;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  -webkit-tap-highlight-color: transparent; 
}
.whatsapp-popup:hover {
  transform: scale(1.1);
}
.whatsapp-popup .whatsapp-icon,
.whatsapp-popup .close-button {
  position: absolute;
  font-size: 30px;
  color: #ffffff;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.whatsapp-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
.close-button {
  opacity: 0;
  transform: rotate(-180deg) scale(0);
}
.whatsapp-popup.active .whatsapp-icon {
  opacity: 0;
  transform: rotate(180deg) scale(0);
}
.whatsapp-popup.active .close-button {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
.popup-content {
  display: flex; /* Atur agar maskot dan pesan berada dalam satu baris */
  align-items: center; /* Vertikal tengahkan konten */
  gap: 15px; /* Beri jarak antara maskot dan pesan */
  position: fixed;
  bottom: 85px;
  right: 20px;
  background: white;
  z-index: 9999;
  color: #333;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  width: 400px;
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.popup-content.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.popup-mascot {
  width: 100px; /* Ukuran maskot di dalam popup */
  flex-shrink: 0; /* Jangan paksa maskot mengecil */
}
.popup-mascot img {
  width: 100%;
  height: auto;
  display: block;
}
.popup-message {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.popup-message p {
  line-height: 1.5;
  font-size: 1rem;
  margin-bottom: 15px;
}
.popup-message a {
  width: 100%;
  margin-bottom: 8px;
  padding: 12px;
  font-size: 14px;
  border-radius: 5px;
  background-color: #2db742;
  color: white;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-message a:hover {
  background-color: #1DAE56;
}

/* =================================
   ABOUT, GENRE, CONTACT SECTIONS
   ================================= */
.about,
.genre,
.contact {
  padding: 8rem 7% 1.4rem;
}
.about h2,
.genre h2,
.contact h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 3rem;
}
.about h2 span,
.genre h2 span,
.contact h2 span {
  color: var(--primary);
}
.about .row {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center; 
}
.about .row img {
  width: 28vw;
}
.about .row .content {
  flex: 1; /* Menambahkan ini agar fleksibel */
  padding: 0 1rem;
}
.about .row .content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.about .row .content p {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.9rem;
}

/* =================================
   ACARA SECTION
   ================================= */
.acara {
  padding: 8rem 7% 1.4rem;
}
.acara h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}
.acara h2 span {
  color: var(--primary);
}
.acara p {
  text-align: center;
  max-width: 40rem;
  margin: auto;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 4rem;
}
.acara-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.acara-card {
  display: flex;
  gap: 2rem;
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-items: stretch; /* Membuat tinggi konten sama */
}
.acara-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 153, 241, 0.2);
}
.acara-card__img-container {
  flex: 1;
  max-width: 30%;
  position: relative;
}
.acara-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius:10px ;
}
.acara-poster {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Scroll halus di iOS */
}
/* Wrapper yang bergerak ke kiri/kanan */
.acara-poster-slider {
  position: relative; /* Penting untuk posisi dot */
  height: 100%;
  overflow: hidden; /* Sembunyikan poster yang keluar dari area */
  border-radius: 10px;
}
.acara-poster-wrapper {
  display: flex;
  gap: 10px;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.acara-poster-wrapper::-webkit-scrollbar {
  display: none;
}
.acara-poster-card {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: center;
  box-sizing: border-box; /* Pastikan padding tidak menambah ukuran */
}
.acara-poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Navigasi Dot untuk slider poster */
.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.slider-dots .dot {
  all: unset;
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dots .dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.slider-dots .dot.active {
  background-color: #fff;
  transform: scale(1.2);
}
.acara-card__content {
  flex: 1.5;
  padding: 2rem;
  display: flex; /* Untuk menata konten di dalamnya */
  flex-direction: column;
}
.acara-card__title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.acara-card__details {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.acara-card__details li {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
  font-weight: 300;
}
.acara-card__details li strong {
  font-weight: 700;
  color: #fff;
}
.cta-acara {
  padding: 0.8rem 2.5rem;
  flex-shrink: 0;
  font-weight: 600;
  align-self: flex-start; /* Posisikan tombol di awal */
}
.cta-acara:hover {
  background-color: #007acc; /* Sedikit berbeda dari a.cta:hover */
  transform: scale(1.05); /* Menyamakan efek hover */
}
.cta-slider-container {
    display: flex;
    align-items: flex-end; /* Posisikan item di bawah */
    margin-top: auto; /* Mendorong kontainer ini ke bagian bawah .acara-card__content */
    gap: 10rem;
}
/* Style untuk Slider Benefit di Dalam Acara Card */
.benefit-slider {
    position: relative;
    width: 45%; /* Sesuaikan lebar slider sesuai kebutuhan */
    overflow: hidden;
}
.benefit-wrapper {
    display: flex;
    /* Lebar = 100% * (jumlah gambar / gambar per slide) */
    /* Contoh: 100% * (6 / 2) = 300% */
    transition: transform 0.5s ease-in-out;
}
.benefit-card {
    /* Lebar setiap kartu = 100% / jumlah gambar per slide */
    flex: 0 0 50%; 
    padding: 0 5px; /* Sedikit jarak antar kartu */
    box-sizing: border-box;
    aspect-ratio: 3 / 4;
}
.benefit-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* =================================
   SPONSORS & MEDIA PARTNER
   ================================= */
.sponsors {
  padding: 6rem 7%;
  background-color: #0a0a0a;
  text-align: center;
}
.sponsors h2 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}
.sponsors h2 span {
  color: var(--primary);
}
.sponsors p {
  text-align: center;
  max-width: 40rem;
  margin: auto;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 4rem;
}
.sponsor-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.sponsor-logo img {
  max-width: 140px;
  height: auto;
  filter: grayscale(100%) opacity(60%);
  transition: filter 0.3s ease;
}
.sponsor-logo:hover img {
  filter: grayscale(0%) opacity(100%);
}

/* =================================
   FOOTER
   ================================= */
footer {
  background-color: var(--bg);
  border-top: 1px solid #222;
  text-align: center;
  padding: 3rem 0;
  margin-top: 3rem;
}
/* Ganti semua style .socials yang lama dengan ini */
footer .socials {
  padding: 1rem 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  border-bottom: 1px solid #222;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.social-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  height: 30px; /* Ukuran logo dikecilkan agar seimbang */
  width: auto;
}

.footer-brand span {
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.8;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.social-links a {
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--primary);
  transform: translateY(-5px);
}

.separator {
  width: 1px;
  height: 60px;
  background-color: #444;
}

/* Sembunyikan pemisah di layar kecil agar tidak aneh */
@media (max-width: 600px) {
  .separator {
    display: none;
  }
}
footer .links {
  margin-bottom: 2rem;
}
footer .links a {
  color: #fff;
  padding: 0.7rem 1rem;
  font-size: 1rem;
}
footer .credit {
  font-size: 1rem;
  color: #aaa;
}
footer .credit a {
  color: var(--primary);
  font-weight: 600;
}

/* =================================
   PAGE SEMNAS
   ================================= */
.page-khusus #header {
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  transform: translateY(0) !important;
}

/* ================================== */
/* Style for floating mascot       */
/* ================================== */
.floating-mascot {
  display: none;
  position: fixed;
  right: 8px;
  bottom: 0px; /* Posisikan tepat di atas tombol WA */
  width: 120px; /* Atur ukuran maskot */
  z-index: 999;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent; 
  /* Animasi default: mengambang naik-turun */
  animation: hover-float 3s ease-in-out infinite;
}
.floating-mascot img {
  width: 100%;
  transform: scaleX(-1);
  /* transition: transform 0.3s ease; */
}
/* Saat di-hover, ganti animasi menjadi melambai */
.floating-mascot.waving {
  animation: wave-body 1.5s ease-in-out 1; /* Jalankan animasi 1 kali */
}

/* Keyframes untuk animasi mengambang */
@keyframes hover-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
@keyframes wave-body {
  0% { transform: rotate(0deg) translateY(0); }
  25% { transform: rotate(8deg) translateY(-5px); }
  75% { transform: rotate(-8deg) translateY(-5px); }
  100% { transform: rotate(0deg) translateY(0); }
}

/* =================================
   MEDIA QUERIES
   ================================= */
/* Laptop */
@media (max-width: 1366px) {
  html {
    font-size: 75%;
  }
}

/* Tablet */
@media (max-width: 860px) {
  html {
    font-size: 62.5%;
  }

  #header {
    padding: 1rem 7%;
  }

  .hamburger {
    display: block;
  }

  .navbar {
    display: block;
    position: absolute;
    top: 0;
    right: -500px;
    z-index: 1;
    width: 50%;
    min-height: 100vh;
    background-color: #000;
    box-shadow: 1px 1px 10px 10px rgba(0, 0, 0, 0.05);
    transition: .4s;
  }

  .navbar.is-active {
    right: -10px;
  }

  .navbar .navbar-link {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 60px;
    gap: 25px;
  }

  .navbar .navbar-link a {
    color: var(--primary);
    font-size: 2rem;
  }

  .navbar .navbar-link a::after {
    transform-origin: 0 0;
  }

  .navbar .navbar-link a:hover::after {
    transform: scaleX(0.2);
  }

  .nav-btn {
    padding: 8px 16px;
    margin-right: 15px;
  }

  .cta {
    font-size: 1rem;
    padding: 8px 16px;
  }
  
  .nav-dot {
    display: none;
  }

  .hero {
    flex-direction: column;
  }
  
  .news-container {
    min-width: 100%;
    padding: 1.5rem;
    margin-top: 20px;
    touch-action: manipulation;
    -ms-touch-action: manipulation;
  }

  .news-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    padding: 0 1rem;
    scroll-snap-type: none;
    scrollbar-width: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: manipulation;
    -ms-touch-action: manipulation;
  }

  .news-wrapper::-webkit-scrollbar {
    display: auto;
  }

  .news-card {
    flex: 0 0 45%;
    max-width: 45%;
    box-sizing: border-box;
    padding: 0.75rem;
    border-radius: 1rem;
    background-color: rgba(0, 0, 0, 0.6);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: start;
    margin: 0;
    user-select: none;
    touch-action: manipulation;
    -ms-touch-action: manipulation;
  }

  .news-dots {
    display: none;
  }
  
  .about .row {
    flex-wrap: wrap;
  }

  .about .row img {
    width: 50vw;
  }

  .about .row .content {
    padding: 0;
  }

  .about .row .content h3 {
    margin-top: 1rem;
    font-size: 2rem;
  }

  .about .row .content p {
    font-size: 1.6rem;
    align-items: start;
  }

  .genre p {
    font-size: 1.2rem;
  }

  .contact .row {
    flex-wrap: wrap;
  }

  .contact .row .map {
    height: 30rem;
  }

  .contact .row form {
    padding-top: 0;
  }

  .acara-card {
    flex-direction: column;
  }

  .acara-card__img-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .acara-card__content {
    padding: 1.5rem;
  }

  .acara-card__details {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.popup-content{
  width: 300px;
}
.popup-message p {
  font-size: 1.2rem;
}
  .floating-mascot{
  width: 90px;
  bottom: 90px;
  display: block;
}
.popup-mascot{
  display: none;
}
.benefit-slider {
  display: none;
}
footer .socials{
  flex-direction: column;
}
}

/* Mobile */
@media (max-width: 600px) {
  .navbar {
    width: 60%;
  }
  .hero {
    padding: 180px 0px 100px;
    justify-content: center;
  }
  .hero .content h1 {
    font-size: 4em; /* Sedikit disesuaikan untuk layar kecil */
  }
  .about,
  .genre,
  .contact {
    padding: 6rem 7% 1.4rem; /* Menyesuaikan padding atas */
  }
  .about .row img {
    width: 60vw;
  }
}