* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fafafa;
  padding-top: 80px;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px; /* jarak antara logo dan teks */
}

.logo img {
  height: 75px;
  width: auto;
  object-fit: contain;
  display: block; /* sesuaikan ukuran logo */
}

.logo-text {
  font-size: 20px;  /* bisa diganti sesuai kebutuhan */
  font-weight: bold;
  color: white;
}

/* Sembunyikan checkbox */
.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff4c29;
}

.hero {
  min-height: 90vh;
  background: url("Polaroid_WDW.png") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 50px 20px;
  text-shadow: 
    0 0 5px #404040,
    0 0 10px #404040,
    0 0 20px #ff6600,
    0 0 30px #ff6600,
    0 0 40px #ff6600,
    0 0 55px #ff6600,
    0 0 75px #ff6600;
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ff4c29;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #e63c20;
}

.about {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

.about h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #111;
}

.about-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-text p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.8;
}

.about-img {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.about-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  transition: filter 0.4s ease;
}

.about-img img:hover {
  filter: blur(10px);
}

/* Responsive (biar stack di HP) */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-img {
    justify-content: center;
  }
}


.focus {
  background: #fff;
  padding: 80px 20px;
}

.focus h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
}

.focus-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.focus-item {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.focus-item:hover {
  transform: translateY(-5px);
}

.focus-item h3 {
  margin-bottom: 10px;
  color: #ff4c29;
}

/* Creative Crew Section */
.crew {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.crew h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #333;
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.crew-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.crew-item img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ff6600;
  transition: transform 0.3s ease;
}

.crew-item img:hover {
  transform: scale(1.08);
}

.jabatan {
  margin-top: 15px;
  font-weight: bold;
  color: #444;
  position: relative;
  cursor: pointer;
}

/* Tooltip */
.jabatan::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(17, 17, 17, 0.9);
  color: #fff;
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.jabatan:hover::after {
  opacity: 1;
}


/* Artikel Section */
.artikel {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Poppins", sans-serif;
}

.artikel h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Flexbox container untuk artikel */
.artikel-flexbox {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Hide radio buttons */
.artikel-flexbox input[type="radio"] {
  display: none;
}

/* Artikel Item */
.artikel-item {
  display: none; /* default disembunyikan */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px;
  transition: all 0.3s ease;
}

.artikel-item h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #222;
}

.artikel-item .abstrak {
  font-size: 0.95rem;
  color: #555;
}

/* Tampilkan artikel sesuai radio checked */
#art1:checked ~ .artikel-container #artikel1,
#art2:checked ~ .artikel-container #artikel2,
#art3:checked ~ .artikel-container #artikel3,
#art4:checked ~ .artikel-container #artikel4,
#art5:checked ~ .artikel-container #artikel5,
#art6:checked ~ .artikel-container #artikel6,
#art7:checked ~ .artikel-container #artikel7 {
  display: block;
}

/* Pagination Flexbox */
.artikel-pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.artikel-pagination .page-number,
.artikel-pagination .page-dots {
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  background: #f5f5f5;
  color: #333;
  transition: all 0.3s ease;
}

.artikel-pagination .page-number:hover,
.artikel-pagination .page-dots:hover {
  background: #ff6600;
  color: white;
}

/* Highlight active number */
#art1:checked ~ .artikel-pagination label[for="art1"],
#art2:checked ~ .artikel-pagination label[for="art2"],
#art3:checked ~ .artikel-pagination label[for="art3"],
#art4:checked ~ .artikel-pagination label[for="art4"],
#art5:checked ~ .artikel-pagination label[for="art5"],
#art6:checked ~ .artikel-pagination label[for="art6"],
#art7:checked ~ .artikel-pagination label[for="art7"] {
  background: #ff6600;
  color: #fff;
}


/*Gallery Section*/
.gallery {
  padding: 80px 20px;
  background: #fafafa;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s, filter 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  filter: brightness(85%);
}

/*Lightbox*/
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.lightbox:target {
  display: flex;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

.lightbox .close:hover {
  color: #ff4c29;
}

.lightbox p {
  font-size: 1rem;
  color: #fff;
  text-align: center;
  margin-top: 5px;
  max-width: 80%;
}

.contact {
  background: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ff6600;
}

.contact form {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact label {
  font-weight: 500;
  color: #333;
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: 0.95rem;
}

.contact input,
.contact textarea {
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: inherit;
}

.contact input:focus,
.contact textarea:focus {
  border-color: #ff6600;
  box-shadow: 0 0 8px rgba(255,102,0,0.3);
  outline: none;
}

.contact textarea {
  min-height: 120px;
  resize: vertical;
}

.contact button {
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.contact button:hover {
  background: #e65500;
  transform: translateY(-2px);
}

footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 25px 20px;
  font-size: 0.95rem;
  position: relative;
}

footer .ig-link {
  display: inline-flex; 
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

footer .ig-link img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

footer .ig-link:hover {
  color: #ff4c29; 
}

footer .container {
  margin-top: 10px;
}

footer p {
  margin: 0;
  color: #aaa;
  font-size: 0.9rem;
}

footer .social-links {
  margin-top: 10px;
}

/*Responsive*/
@media (max-width: 992px) {
  .navbar {
    padding: 12px 25px;
  }

  .nav-links {
    gap: 15px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  .navbar {
    padding: 10px 20px;
  }

  .navbar .logo img {
    height: 60px;
  }

  .menu-icon {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    background: rgba(17,17,17,0.95);
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    text-align: center;

    /* animasi slide */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
  }

  .nav-links li {
    margin: 10px 0;
  }

  /* Saat checkbox aktif → tampilkan menu */
  .menu-toggle:checked ~ .nav-links {
    max-height: 300px;
    transition: max-height 0.4s ease-in;
  }

  .hero {
    padding: 60px 15px;
    min-height: 70vh;
    background-position: center top;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .about,
  .focus,
  .gallery,
  .contact {
    padding: 50px 15px;
    margin: 60px auto;
  }

  .focus-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact form {
    padding: 20px;
  }

  footer {
    font-size: 0.85rem;
    padding: 15px 10px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .contact button {
    font-size: 0.9rem;
    padding: 12px;
  }
}
