/*========================*/
/* RESET */
/*========================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

#home {
  margin: 0;
  padding: 0;
  border: none;
  background: black; /* atau warna dasar kamu */
}

/*========================*/
/* SCROLL ANIMATION */
/*========================*/
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/*========================*/
/* POPUP WELCOME VIDEO */
/*========================*/
#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.popup-content {
  position: relative;
  background: #000;
  border-radius: 12px;
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 9 / 16; /* penting: pastikan kotak tinggi proporsional */
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.popup-video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.popup-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Close button */
#popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: #D84315;
  color: white;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  font-weight: bold;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

#popup-close:hover {
  background-color: #bf360c;
}



@media (max-width: 768px) {
  section {
    margin-bottom: 40px; /* beri jarak antar section secara umum */
  }

#activity {
    padding-top: 20px;
  }
}

@media (max-width: 992px) {
  #about {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 768px) {
  #about {
    margin-top: 60px;
  }
}

@media (max-width: 1024px) {
  #about {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}


/*========================*/
/* SECTION GENERAL */
/*========================*/
section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  text-align: center;
}


/*========================*/
/* PARALLAX COLORS */
/*========================*/
.about-section {
  background: linear-gradient(to bottom, #ffffff, #E7E7E7);
}
.activity-section {
  background: linear-gradient(to bottom, #121212, #1f1f1f); /* Very dark gray */
  color: #f5f5f5;
}
.gallery-section {
  background: linear-gradient(to bottom, #ffffff, #E7E7E7);
}
.contact-section {
  background: linear-gradient(to bottom, #121212, #1f1f1f) !important;
}


/*========================*/
/* PARALLAX EFFECT */
/*========================*/
.parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}


/*========================*/
/* HEADER & NAV */
/*========================*/
header {
  position: fixed;
  width: 100%;
  background: white;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}



.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff5722;
}

nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li a {
  text-decoration: none;
  font-weight: 600;
  color: #d84315;
  white-space: nowrap;
}

.nav-links li a:hover {
  color: #e64a19;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  margin-left: 1rem;
}

/* Tampilkan menu penuh di desktop */
@media (min-width: 768px) {
  nav ul.nav-links {
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
    gap: 1.5rem;
  }

  .hamburger {
    display: none;
  }
}

/* Navigasi default */
.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li {
  display: none;
}

/* Tampilkan menu saat hamburger diaktifkan (mobile) */
.nav-links.show li {
  display: block;
  margin-bottom: 10px;
}

/* Reset semua menu di desktop supaya tampil */
@media (min-width: 768px) {
  .nav-links li {
    display: block !important;
    margin-bottom: 0;
  }
}


/*========================*/
/* RESPONSIVE */
/*========================*/
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 5%;
    background: white;
    flex-direction: column;
    width: 200px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 1rem;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .slide-caption {
    left: 5%;
    right: 5%;
    bottom: 10%;
    padding: 1rem;
    font-size: 1rem;
  }

  .slide-caption h2 {
    font-size: 1.3rem;
  }

  .slide-caption p {
    font-size: 0.9rem;
  }

}

@media (min-width: 768px) {
  .nav-links {
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
  }

  .hamburger {
    display: none;
  }
}

/*========================*/
/* SLIDER FULLSCREEN */
/*========================*/
#mainslider {
  min-height: 300px;
  margin-bottom: 40px;
}

.slider-fullscreen {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background-color: #000;
  margin-top: 60px; /* untuk memberi ruang agar tidak ketutupan navbar */
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.slide {
  flex: 0 0 100%;
  position: relative;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 20%;
  left: 10%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 10px;
  max-width: 500px;
}

@media (max-width: 768px) {
  .slide-caption {
    display: none !important;
  }
}

.slide-caption h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.slide-caption p {
  font-size: 1.1rem;
}

.prev, .next {
  position: absolute;
  top: 50%;
  font-size: 2rem;
  color: white;
  background: rgba(0,0,0,0.3);
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 100;
  transform: translateY(-50%);
}

.prev { left: 10px; }
.next { right: 10px; }

@media screen and (max-width: 768px) {
  .slider-fullscreen {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .slide {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-height: 500px) {
  .slider-fullscreen {
    aspect-ratio: auto;
    height: 100vh;
  }
}
/* CONTENT CONTAINER */
.content {
  max-width: 900px;
  margin: auto;
}


/*========================*/
/* ABOUT SECTION */
/*========================*/
#about {
  min-height: 300px;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  #about {
    margin-top: 60px;
  }
}

/* Container utama */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

/* Judul dan paragraf pembuka */
.section-title {
  font-size: 2.5rem;
  color: #ff5722;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.about-left h2 {
  font-size: 2.5rem;
  color: #ff5722;
  margin-bottom: 0.5rem;
}

.about-left p {
  font-size: 1.2rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}

/* SOLUSI DEFINITIF UNTUK 2 KOLOM */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.two-column-layout {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.main-content {
  flex: 3;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align:left;
}

.sidebar {
  flex: 2;
  background: #f8f8f8;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .two-column-layout {
    flex-direction: column;
  }
}

.event-organizer-box {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 14px;
  margin-top: 24px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  max-width: 280px;
}

.event-organizer-title {
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 8px;
}

.event-organizer-box img {
  width: 90px;
  height: auto;
  margin-bottom: 6px;
}

.event-organizer-box h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #d84315;
  margin: 0;
}



/* Grid layout untuk 4 poin */
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Tetap 4 kolom penuh */
  gap: 24px;
  margin-top: 32px;
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
	padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
	padding-left: 16px;
    padding-right: 16px;
  }
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 16px;
}

/* Kartu masing-masing poin */
.about-point {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  background: white;
  transition: transform 0.3s ease;
}

.about-point:hover {
  transform: translateY(-5px);
}

/* Gambar: sebagai latar belakang, 16:9 dan berwarna hitam jika tidak penuh */
.about-img {
  aspect-ratio: 16 / 9;
  width: 100%;
  background-color: black;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Teks bawah gambar */
.about-text {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: top-center;
  flex: 1;
  text-align: center;
}

.about-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.about-text p {
  font-size: 0.95rem;
  color: #555;
}

/* RESPONSIVE */
/* Responsive tetap fleksibel */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 kolom di tablet */
  }
}

@media (max-width: 600px) {
  .about-grid {
    grid-template-columns: 1fr; /* 1 kolom di mobile */
  }
}

/*========================*/
/* OUR ACTIVITY SECTION */
/*========================*/

#activity {
  min-height: 300px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.activity-container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
}

.activity-container h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ff5722;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.activity-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.activity-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.activity-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.activity-text {
  padding: 1.5rem;
  text-align: left;
}

.activity-text h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: #333;
}

.activity-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.activity-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* gunakan 'cover' jika ingin full tapi crop */
  aspect-ratio: 16 / 9;
  border-radius: 8px;
}



/*========================*/
/* GALLERY GRID */
/*========================*/

/* GALLERY */

.gallery-grid,
.gallery-container {
  height: auto !important;
}

#gallery {
  min-height: 300px;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  #gallery {
    padding-top: 32px;
    padding-bottom: 32px;
	padding-left: 40px;
	padding-right: 40px;
  }
}

.gallery-filter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.gallery-filter-form .gallery-filter-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.gallery-filter-form input,
.gallery-filter-form select {
  padding: 8px;
  font-size: 14px;
  flex: 1 1 auto;
  min-width: 150px;
  border-radius:10px;
}

.gallery-filter-form button {
  padding: 8px 16px;
  background-color: #ff5722;
  color: white;
  border: none;
  border-radius:10px;
  cursor: pointer;
  flex-shrink: 0;
  
}

.gallery-filter-form button:hover {
  background: #e64a19;
}

/* Mobile view: Susun dua baris */
@media (max-width: 600px) {
  .gallery-filter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-filter-form .gallery-filter-form-row {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .gallery-filter-form input[type="text"] {
    width: 100%;
  }

  .gallery-filter-form input[type="date"],
  .gallery-filter-form button {
    flex: 1 1 30%;
    min-width: unset;
  }
}

/* Desktop view: Susun 1 baris */
@media (min-width: 601px) {
  .gallery-filter-form {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }

  .gallery-filter-form .gallery-filter-form-row {
    flex: none;
  }
}

.grid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.grid-gallery img {
  width: 100%;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s;
}

.grid-gallery img:hover {
  transform: scale(1.05);
}

.gallery-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ff5722;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  border: 2px solid #ff5722;
  color: #ff5722;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: #ff5722;
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* default, mobile/tablet */
  gap: 16px;
}

/* Tambahkan media query untuk fullscreen */
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
	padding-left: 40px;
	padding-right: 40px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
	padding-left: 40px;
	padding-right: 40px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #gallery {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item:hover {
  transform: scale(1.02);
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.modal-img {
  max-width: 90%;
  max-height: 70vh;
  border-radius: 8px;
}

.modal-caption {
  color: white;
  margin-top: 1rem;
  text-align: center;
}

.modal-caption h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.modal-caption p {
  font-size: 1rem;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
}

/* LIGHTBOX */
#lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

/*========================*/
/* OUR MEDIA SECTION */
/*========================*/

#media {
  min-height: 300px;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
}

.our-media-section .container {
  max-width: none;
  width: 90%;
}

.our-media-section {
  padding: 80px 0;
  background-color: inherit;
}

.media-section {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0;
}

.media-half {
  flex: 1 1 50%;
  box-sizing: border-box;
  padding: 10px;
}

.media-half img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* MEDIA CONTAINER: 25:75 layout */
.media-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.media-left {
  width: 25%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.media-left .media-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.media-left .media-text h4 {
  font-size: 1rem;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
}

.media-left .media-text p {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.btn-primary {
  display: inline-block;
  padding: 10px 20px;
  background-color: #e5391e;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #c62818;
}

.media-right {
  width: 75%;
  box-sizing: border-box;
}

/* Gambar di media-left */
.media-left img {
  width: 100%;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
}

.media-description {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* VIDEO WRAPPER: Full aspect ratio */
.media-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 340px;
}

.media-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .media-container {
    flex-direction: column;
  }

  .media-left,
  .media-right {
    flex: 1 1 100%;
    width: 100%;
  }
}
/*========================*/
/* CONTACT US */
/*========================*/
#contact {
  min-height: 300px;
}

.contact-section {
  background: linear-gradient(135deg, #fff8f3, #fbe9e7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 100%;
  width: 100%;
  background: rgba(255,255,255,0.7);
  background-color: #ccc; /* contoh: abu-abu */
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 20px;
  margin: 0 auto;
  backdrop-filter: blur(12px);
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #d84315;
}

.contact-info p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #444;
}

.info-block {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}

.info-block i {
  margin-right: 10px;
  color: #d84315;
}

.contact-form {
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  font-size: 1rem;
  margin-bottom: 12px;
  border-radius: 8px;
  border: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form button {
  display: block;
  margin: 0 auto;
  padding: 10px 24px;
  background-color: #d84315;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.contact-form button:hover {
  background: #bf360c;
}

/* SOCIAL MEDIA */
.social {
  margin-top: 1rem;
}

.social a {
  color: #ff5722;
  text-decoration: none;
  font-weight: 600;
}


/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

form input, form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  max-width: 500px;
  margin: auto;
}

form button {
  background: #ff5722;
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: max-content;
  margin: auto;
}

form button:hover {
  background: #e64a19;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

button[type="submit"] {
  font-family: 'Arial Narrow', sans-serif; /* Font ramping */
  font-stretch: condensed; /* Untuk browser yang mendukung */
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  background-color: #D84315; /* warna emas */
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #F0861B; /* sedikit lebih gelap saat hover */
  color: #fff;
}



/*========================*/
/* FOOTER */
/*========================*/
.site-footer {
  background-color: #121212;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  border-top: 2px solid #D84315; /* Gold accent */
  position: relative;
}

.site-footer p {
  margin: 0;
  color: #e0e0e0;
  letter-spacing: 0.5px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 80px;
  height: 3px;
  background: #D84315;
  transform: translateX(-50%);
  border-radius: 2px;
}

/*========================*/
/* BOTTOM NAV MOBILE */
/*========================*/
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  border-top: 1px solid #ddd;
  z-index: 9999;
  justify-content: space-around;
  padding: 5px 0;
}

.bottom-nav .nav-item {
  text-align: center;
  color: #ff5722;
  text-decoration: none;
  font-size: 0.75rem;
  flex: 1;
}

.bottom-nav .nav-item i {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 2px;
}

.bottom-nav .nav-item:hover {
  color: #e64a19;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .bottom-nav {
    display: flex;
  }

  header .nav-links {
    display: none; /* akan muncul hanya ketika .show */
  }

  .hamburger {
    display: block;
  }
}

/*========================*/
/* SIDEBAR OVERLAY */
/*========================*/
.sidebar-overlay {
  position: fixed;
  top: 0; right: -100%;
  width: 50%;
  max-width: 300px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: right 0.3s ease-in-out;
}

.sidebar-overlay.show {
  right: 0;
}

.sidebar-content {
  padding: 2rem 1.5rem;
}

.sidebar-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin-top: 60px;
}

.sidebar-menu li {
  margin: 1rem 0;
}

.sidebar-menu li a {
  color: #d84315;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
}


/*========================*/
/* EVENT-FILTER */
/*========================*/
.event-filter {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

/* Baris pertama dan kedua */
.event-filter .filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* Input dan tombol umum */
.event-filter input[type="text"],
.event-filter input[type="date"] {
  padding: 8px;
  font-size: 14px;
  flex: 1 1 auto;
  min-width: 150px;
}

.event-filter button {
  padding: 8px 16px;
  background-color: #333;
  color: white;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.event-filter button:hover {
  background-color: #555;
}

/* Mobile view: Susun dua baris */
@media (max-width: 600px) {
  .event-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .event-filter .filter-row {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .event-filter input[type="text"] {
    width: 100%;
  }

  .event-filter input[type="date"],
  .event-filter button {
    flex: 1 1 30%;
    min-width: unset;
  }
}

/* Desktop view: Susun 1 baris */
@media (min-width: 601px) {
  .event-filter {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }

  .event-filter .filter-row {
    flex: none;
  }
}
