* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0f172a;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background: url("img/Logo 3.jpeg") center/cover no-repeat;
  overflow: hidden;
}

.hero-content {
  animation: slideDown 1s ease-out forwards;
  opacity: 0;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hero-buttons .btn-primary {
  animation: slideLeft 1s ease-out forwards;
  opacity: 0;
}

.hero-buttons .btn-secondary {
  animation: slideRight 1s ease-out forwards;
  opacity: 0;
  animation-delay: 0.3s;
}

/* Animations */
@keyframes slideDown {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Optional: delay hero buttons slightly */
.hero-buttons .btn-primary {
  animation-delay: 0.2s;
}
.hero-buttons .btn-secondary {
  animation-delay: 0.4s;
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 25px;
  background: rgba(10, 10, 10, 0.95); 
  backdrop-filter: blur(8px);
  color: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* BRAND (LOGO + TEXT) */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: -10px; 
}

.nav-brand img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.logo {
  font-size: 15px;
  font-weight: 600;
  color: #38bdf8; 
  text-decoration: none;
}

/* MENU */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-links li a {
  font-size: 14px;
  color: #e5e7eb;
  text-decoration: none;
  transition: 0.3s;
}

/* Hover */
.nav-links li a:hover {
  color: #38bdf8;
}
nav ul {
  list-style: none;      
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;              
  align-items: center;
}

nav li {
  position: relative;
}

nav li a {
  text-decoration: none;
  color: #fff;
  padding: 10px 15px;
  display: block;
  cursor: pointer;
}

/* dropdown menu tersembunyi */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  display: none;           
  min-width: 180px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  z-index: 1000;
}

/* dropdown item */
.dropdown-menu li a {
  padding: 10px 15px;
  color: #fff;
  white-space: nowrap;
}

/* hover effect untuk item */
.dropdown-menu li a:hover {
  background: #222;
}

/* CTA */
.cta {
  margin-left: 15px;
}

.btn {
  background: #16a34a; /* hijau WA */
  color: white !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.btn:hover {
  background: #15803d;
}
/* About Section Image */
.about-image {
  width: 100%; 
  text-align: center; 
  margin: 20px 0;
}

.about-image img {
  width: 100%;       
  max-width: 600px; 
  height: auto;      
  border-radius: 12px; 
  object-fit: cover;   
  display: inline-block;
}

/* ================= DROPDOWN ================= */

.dropdown-menu {
  display: none; 
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 2000;
}

/* tampil saat hover (desktop) */
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0;
  background: #111;
  border-radius: 6px;
  min-width: 180px;
  padding: 8px 0;
  display: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  font-size: 13px;
}

.dropdown-menu li a:hover {
  background: #16a34a;
  color: white;
}

/* Show dropdown */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* ================= TOGGLE ================= */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 1200;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 230px; 
    height: 100vh;
    background: #111;
    flex-direction: column;
    padding: 70px 20px;
    transition: 0.3s;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin-bottom: 18px;
  }

  .-links li a {
    font-size: 15px;
  }

  /* Dropdown mobile */
  .dropdown-menu {
    position: static;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  /* CTA mobile */
  .cta {
    margin-top: 10px;
  }

  .btn {
    display: block;
    text-align: center;
  }

  /* Logo lebih kecil */
  .nav-brand img {
    width: 28px;
    height: 28px;
  }

  .logo {
    font-size: 13px;
  }
}
.nav-brand .logo {
  display: flex;
  align-items: center; 
  gap: 10px; 
  text-decoration: none; 
 
}
/* HERO SECTION */
.hero {
  height: 100vh;
  background: url('img/Logo 3.jpeg') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content h1 {
  line-height: 0.8;
}

.hero-content p {
  line-height: 1.6;
  padding: 0 10px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .hero-content {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 15px;
  }
}

/* Overlay gelap */
.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  top: 0;
  left: 0;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color:  #38bdf8;
  max-width: 700px;
}

/* Judul */
.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Deskripsi */
.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #e2e8f0;
}

.hero-content span {
  color: #38bdf8;
  font-weight: 600;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Primary button */
.btn-primary {
  background: #38bdf8;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #0ea5e9;
}

/* Secondary button */
.btn-secondary {
  border: 2px solid #38bdf8;
  color: #38bdf8;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #38bdf8;
  color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }
}
/* ================= ABOUT ================= */
.about {
  padding: 100px 50px;
  background: #020617;
  color: white;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
}

/* Gambar */
.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
}

/* Konten */
.about-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #38bdf8;
}

.about-content p {
  margin-bottom: 15px;
  color: #cbd5f5;
}

/* List */
.about-list {
  margin: 20px 0;
  list-style: none;
}

.about-list li {
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
  }
}

/* ================= PROGRAM ================= */
/* Section Program */
.program {
  padding: 100px 20px;
  text-align: center;
  background: #020617;
  color: white;
}

/* Judul & Subjudul */
.section-title {
  font-size: 32px;
  margin-bottom: 10px;
  color: #38bdf8;
}
.section-subtitle {
  color: #cbd5f5;
  margin-bottom: 40px;
}

/* Container grid desktop 3 kolom */
.program-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr; /* semua row sama tinggi */
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* Card program */
.program-card {
  background: #111;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s, border-color 0.3s;
}

/* Judul & teks */
.program-card h3 {
  margin-bottom: 10px;
  color: #38bdf8;
}
.program-card p {
  font-size: 14px;
  color: #d1d5db;
  margin-bottom: 15px;
}

/* List tanpa bullet */
.program-card ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
  margin-top: 15px;
}
.program-card ul li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #cbd5f5;
}

/* Hover effect keren */
.program-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #16a34a;
}

/* Animasi muncul keren */
.animate-program {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
}
.animate-program.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Responsive tablet & mobile */
@media (max-width: 992px) {
  .program-container {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
}
@media (max-width: 600px) {
  .program-container {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}
.galeri-section {
  padding: 80px 20px;
  background: #0a0a0f;
  color: white;
  text-align: center;
}

.galeri-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* desktop 4 kolom */
  gap: 20px;
  max-width: 1400px;
  margin: auto;
  padding: 0 10px;
  box-sizing: border-box;
}

/* Card */
.galeri-card {
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s, border-color 0.3s;
}

.galeri-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.galeri-card h3 {
  margin-top: 10px;
  font-size: 16px;
  color: #cbd5f5;
}

/* Hover effect */
.galeri-card:hover {
  transform: translateY(-5px);
  border-color: #16a34a;
}

/* Animasi muncul */
.animate-galeri{
  opacity:0;
  transform:translateY(30px);
  transition:all 0.6s ease;
}

.animate-galeri.show{
  opacity:1;
  transform:translateY(0);
}

/* Responsive Tablet */
@media (max-width: 992px) {
  .galeri-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .galeri-card img {
    height: 160px;
  }
}

/* Responsive Mobile */
@media (max-width: 600px) {
  .galeri-container {
    grid-template-columns: 1fr;
  }
  .galeri-card img {
    height: 150px;
  }
}
/* Section */
.galeri-landing-section {
  padding: 100px 20px;
  background: #0b0b17;
  text-align: center;
  color: white;
}

/* Judul & subtitle */
.galeri-landing-title {
  font-size: 36px;
  margin-bottom: 15px;
  color: #38bdf8;
}

.galeri-landing-subtitle {
  font-size: 18px;
  margin-bottom: 50px;
  color: #cbd5f5;
}

/* Grid card */
.galeri-landing-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* desktop 4 kolom */
  gap: 25px;
  max-width: 1400px;
  margin: auto;
  padding: 0 10px;
  box-sizing: border-box;
}

/* Card */
.galeri-landing-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s, border-color 0.3s;
}

/* Gambar */
.galeri-landing-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  cursor: pointer;
}

/* Caption */
.galeri-landing-caption {
  font-size: 14px;
  color: #cbd5f5;
  margin: 10px 0;
}

/* Hover card */
.galeri-landing-card:hover {
  transform: translateY(-5px);
  border-color: #16a34a;
}

/* Tombol lihat semua */
.btn-galeri {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 30px;
  background: #38bdf8;
  color: #111;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-galeri:hover {
  background: #16a34a;
  color: white;
}

/* Animasi muncul */
.animate-galeri {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.6s ease-out;
}

.animate-galeri.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  text-align: center;
  padding-top: 60px;
}

.lightbox-img {
  max-width: 90%;
  max-height: 70%;
  border-radius: 10px;
}

.lightbox-caption {
  color: #38bdf8;
  margin-top: 15px;
  font-size: 16px;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #38bdf8;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close-lightbox:hover {
  color: #16a34a;
}

/* Responsive Tablet */
@media (max-width: 992px) {
  .galeri-landing-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .galeri-landing-card img {
    height: 160px;
  }
  .galeri-landing-title {
    font-size: 30px;
  }
  .galeri-landing-subtitle {
    font-size: 16px;
  }
}

/* Responsive Mobile */
@media (max-width: 600px) {
  .galeri-landing-container {
    grid-template-columns: 1fr;
  }
  .galeri-landing-card img {
    height: 150px;
  }
  .galeri-landing-title {
    font-size: 24px;
  }
  .galeri-landing-subtitle {
    font-size: 14px;
  }
}
/* ================= Responsive =================
/* Tablet: 2 kolom */
@media (max-width: 992px) {
  .program-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 kolom */
@media (max-width: 600px) {
  .program-container {
    grid-template-columns: 1fr;
  }
}
/* Awal: element tersembunyi dan naik sedikit */
.animate-program {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.6s ease-out;
}

/* Saat element muncul */
.animate-program.show {
  opacity: 1;
  transform: translateY(0);
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .program-container {
    grid-template-columns: 1fr;
  }
} 
/* ================= EVENT SECTION ================= */
.event-section {
  padding: 80px 20px;
  background: #020617;
  color: white;
  text-align: center;
}

/* TITLE */
.event-title {
  font-size: 32px;
  color: #38bdf8;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.event-subtitle {
  color: white;
  margin-bottom: 40px;
}

/* CONTAINER */
.event-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* CARD */
.event-card {
  background: #0f172a;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.event-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.event-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* CONTENT */
.event-content {
  padding: 15px;
}

.event-content h3 {
  color: #38bdf8;
  margin-bottom: 8px;
}

.event-content p {
  font-size: 14px;
  color: #cbd5f5;
  margin-bottom: 10px;
}

.event-date {
  font-size: 13px;
  color: #38bdf8;
}
@media (max-width: 768px) {

  .event-title {
    font-size: 24px;
  }

  .event-subtitle {
    font-size: 14px;
  }

  .event-card img {
    height: 150px;
  }
}
/* ================= PERSYARATAN ================= */
.syarat-section {
  padding: 80px 20px;
  background: #020617;
  color: white;
  text-align: center;
}

/* TITLE */
.syarat-title {
  font-size: 32px;
  color: #38bdf8;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.syarat-subtitle {
  color: #fcfdfd;
  margin-bottom: 40px;
}

/* GRID */
.syarat-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* CARD */
.syarat-card {
  background: #0f172a;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
}

.syarat-card:hover {
  transform: translateY(-5px);
}

/* ICON */
.syarat-card span {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}

/* TEXT */
.syarat-card h3 {
  color: #38bdf8;
  margin-bottom: 8px;
}

.syarat-card p {
  font-size: 14px;
  color: #cbd5f5;
}
/* ================= KONTAK SECTION ================= */
.kontak-section {
  padding: 80px 20px;
  background: #020617;
  color: white;
}

/* TITLE */
.kontak-title {
  text-align: center;
  font-size: 32px;
  color: #38bdf8;
  margin-bottom: 10px;
}

.kontak-subtitle {
  text-align: center;
  color: white;
  margin-bottom: 40px;
}

/* ================= WRAPPER (CENTER FIX) ================= */
.kontak-wrapper {
  max-width: 900px;
  margin: 0 auto; /* CENTER */
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* desktop 2 kolom */
  gap: 20px;
  justify-content: center;
}

/* ================= CARD ITEM ================= */
.kontak-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #0f172a;
  padding: 18px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: white;

  transition: all 0.3s ease;
}

/* 🔥 HOVER */
.kontak-item:hover {
  transform: translateY(-5px) scale(1.02);
  background: #1e293b;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* ICON */
.kontak-item img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  flex-shrink: 0;
}

/* TEXT */
.kontak-item div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.kontak-item h3 {
  margin: 0;
  font-size: 16px;
  color: #38bdf8;
}

.kontak-item p {
  margin: 3px 0 0;
  font-size: 14px;
  color: #cbd5f5;
}

/* ================= TABLET ================= */
@media (max-width: 768px) {
  .kontak-wrapper {
    grid-template-columns: repeat(2, 1fr); /* tetap 2 kolom biar "menengah" */
    gap: 15px;
    padding: 0 10px;
  }

  .kontak-item {
    padding: 14px;
  }

  .kontak-item img {
    width: 38px;
    height: 38px;
  }
}

/* ================= HP KECIL ================= */
@media (max-width: 480px) {
  .kontak-wrapper {
    grid-template-columns: 1fr; /* jadi 1 kolom */
    max-width: 320px;
    margin: 0 auto;
  }
}
/* ================= FOOTER ================= */
.footer {
  background: #020617;
  color: white;
  padding: 50px 20px 20px;
  border-top: 1px solid #1e293b;
}

/* CONTAINER */
.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* BRAND */
.footer-brand h2 {
  color: #38bdf8;
  margin-bottom: 10px;
}

.footer-brand p {
  color: #cbd5f5;
  font-size: 14px;
  line-height: 1.5;
}

/* MENU & SOSIAL */
.footer-menu h3,
.footer-social h3 {
  color: #38bdf8;
  margin-bottom: 10px;
}

.footer-menu a,
.footer-social a {
  display: block;
  color: #cbd5f5;
  text-decoration: none;
  margin-bottom: 6px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-menu a:hover,
.footer-social a:hover {
  color: #38bdf8;
  transform: translateX(5px);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #1e293b;
  font-size: 13px;
  color: #94a3b8;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-menu,
  .footer-social {
    text-align: center;
  }
}
*/