@import url('https://fonts.googleapis.com/css2?family=Pattaya&family=Poppins:wght@400;700&display=swap');

body {
  font-family: "Pattaya", sans-serif;
  color: white;
  box-shadow: inset 0 30px 30px rgba(59,56,160,1);
  min-height: 100vh;
  margin: 0;
  background-color: #7A85C1;
  background-image: linear-gradient(90deg, rgba(59, 56, 160, 1) 0%, rgba(122, 133, 193, 1) 50%, rgba(59, 56, 160, 1) 100%);
  background-size: 200%;
  animation: animasi-gradasi 25s infinite alternate;
}
@keyframes animasi-gradasi {
  0% {
    background-position: left;
  }
  100% {
    background-position: right;
  }
}

a {
  color:white;
  text-decoration: none;
}

a:hover {
  color: white;
}

header {
  color: white;
  padding: 30px 20px;
  text-align: center;
  text-shadow: 
    0 0 5px #9D4EDD,
    0 0 10px #4FC3F7,
    0 0 15px rgba(157,78,221,0.8);
}

header h1 {
  margin: 0;
  font-size: 1.5em;
}

header p {
  color :#DADADA;
  font-size: 1.2em;
  margin-top: 10px;
}

section {
  padding: 15px 20px;
  max-width: 800px;
  margin: auto;
}

.card {
  font-family: "Poppins", sans-serif;
  background: #7A85C1;
  padding: 15px 20px; 
  margin-bottom: 15px; 
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  color: #DADADA;
  text-align: justify;
}

.card h2 {
  
  color : #B0C4FF;
  font-family: "Pattaya", sans-serif;
  text-shadow: 
    0 0 5px #9D4EDD,
    0 0 10px #4FC3F7,
    0 0 15px rgba(157,78,221,0.8);
}

footer {
  color: white;
  text-align: center;
  padding: 30px;
  margin-top: 40px;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 1.8em;
  }

  nav a {
    display: block;
    margin: 10px 0;
  }
}
    /* Tombol hamburger */
    .burger {
      position: fixed;
      flex-direction: column;
      justify-content: space-between;
      top: 10px;
      left: 10px;
      width: 30px;
      height: 25px;
      cursor: pointer;
      z-index: 10;
      display: flex;
    }
    
    @keyframes glowPulse {
  0% {
    box-shadow: 
      0 0 5px #9D4EDD,
      0 0 10px #4FC3F7,
      0 0 15px rgba(157,78,221,0.6);
  }
  100% {
    box-shadow: 
      0 0 10px #9D4EDD,
      0 0 20px #4FC3F7,
      0 0 30px rgba(157,78,221,1);
  }
}

.burger span {
  animation: glowPulse 2s infinite alternate;
}
    
  .burger span {
  display: block;
  height: 4px;
  background: #B0C4FF; /* ungu neon */
  border-radius: 2px;
  transition: all 0.4s ease;
  transform-origin: 0 0;
  box-shadow: 
    0 0 5px #9D4EDD,
    0 0 10px #4FC3F7,
    0 0 15px rgba(157,78,221,0.8);
}

    /* Efek jadi X */
    .burger.active span:nth-child(1) {
      transform: rotate(45deg) translate(2px, 1px);
    }
    .burger.active span:nth-child(2) {
      opacity: 0;
    }
    .burger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(-2px, 1px);
    }

    /* Menu geser */
    .menu {
      position: fixed;
      top: 0;
      left: -150px; /* sembunyi */
      width: 150px;
      height: 100%;
      background: #3B38A0;
      color: #fff;
      padding-top: 30px;
      transition: left 0.4s ease;
      z-index: 1;
      box-shadow: inset -70px 0 70px rgba(122,133,193,1);
      border-right: 1px solid #3B38A0;
    }

    .menu.active {
      left: 0; /* muncul dari kiri */
    }

    .menu a {
      display: block;
      padding: 15px 20px;
      color: white;
      text-decoration: none;
      transition: background 0.3s;
    }

    .menu a:hover {
      background: #1A2A80;
      box-shadow: inset -70px 0 70px rgba(122,133,193,1);
      border-right: 1px solid #3B38A0;
    }
.foto {
  width: 120px;
  display: block;
  margin: 20px auto;
  border-radius: 50%;
  border: 3px solid #7A85C1; /* pakai warna tema */
  box-shadow: 
    0 0 20px #3B38A0,
    0 0 40px #7A85C1,
    0 0 60px rgba(122,133,193,0.9);
  padding: 4px;
  background: linear-gradient(135deg, #3B38A0, #7A85C1);
  animation: neonPulse 2.5s infinite alternate;
}

@keyframes neonPulse {
  0% {
    box-shadow: 
      0 0 15px #3B38A0,
      0 0 30px #7A85C1,
      0 0 45px rgba(122,133,193,0.6);
  }
  100% {
    box-shadow: 
      0 0 35px #3B38A0,
      0 0 70px #7A85C1,
      0 0 100px rgba(122,133,193,1);
  }
}
.sosmed {
  display: flex;
  flex-direction: column;
  gap: 10px; 
}
 
.btn-sosmed {
  font-family: "Pattaya", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #2a1f4a; /* warna gelap sesuai tema */
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.2s ease;
  box-shadow: 0 0 5px #2a1f4a;
}

.btn-sosmed i {
  font-size: 20px;
}

.btn-sosmed:hover {
  background: #4e2ef8; /* neon warna hover */
  box-shadow: 0 0 10px #4e2ef8, 0 0 20px #4e2ef8;
}

.fa-list { list-style: none; padding: 0; }
.fa-list li { position: relative; padding-left: 1.6rem; margin: .45rem 0; }
.fa-list li::before {
  content: "\f00c"; /* fa-check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute; left: 0; top: 0;
}