* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  height: 100%;
}
body {
  margin: 0;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  background-image: url('Assets/image/spongebob-squarepants.png');
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-image: inherit;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  filter: blur(6px);        /* atur blur */
  transform: scale(1.05);   /* cegah pinggir terpotong */
  z-index: -1;
}

#navbar {
position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(31, 111, 229, 0.6); 
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
}

/* LOGO */
.logo img {
  height: 100px;
  width: 150px;
}

/* KANAN NAVBAR */
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.glass {
  padding: 14px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  background: rgba(255, 255, 0, 0.9);
  transition: transform 0.3s ease;
}

.glass:hover {
  transform: scale(1.05);
}

.dropdown {
  position: relative;
}

/* dropdown content */
.dropdown-content {
  position: absolute;
  top: 120%;
  left: 0;
  background: rgba(255, 255, 0, 0.95);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);

  /* ANIMASI */
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s ease;
}

/* aktif saat diklik */
.dropdown.active .dropdown-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown-content a {
  display: block;
  padding: 12px 18px;
  text-decoration: none;
  color: black;
}
.dropdown-content a:hover {
  background: #ddd;
}

/*content*/
.custom-card {
  width: 250px;
  border: 1px solid black;
  border-radius: 15px;
  overflow: hidden;
  padding: 15px;
  text-align: center;
  background-color: #973bc2;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.custom-card img {
  width: 100%;
  border-radius: 10px;
}

.custom-card h3 {
  margin: 10px 0;
  font-size: medium;
  color: rgb(231, 241, 89);
}

.custom-card button {
  background-color: black;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
  width: 200px;
}

.card-container {
  margin-top: 100px;
  display: flex;
  gap: 20px;
  padding: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.custom-card button:hover {
  background-color: rgb(231, 241, 89);
  color: black;
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/*logo*/
.logo-sm img{
  margin-top: 20px;
  width: 60px;
}
/*end logo*/
/* end content */

.page-wrapper {
  flex: 1;            
}

/*footer*/
.footer-container {
  margin-top: auto; 
  width: 100%;
}
.footer {
  margin-top: 100px;
  width: 100vw;
  padding: 40px 0;

  display: flex;
  flex-direction: column;   
  align-items: center;

  background: linear-gradient(
    to right,
    rgba(31, 111, 229, 0.85),
    rgba(40, 140, 255, 0.75)
  );

  backdrop-filter: blur(5px);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.15),
    transparent
  );

  pointer-events: none;
}
.footer-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 20px; /* kecil saja atau 0 */
  
  display: flex;
  justify-content: space-between;
}
/* SECTION */
.footer-section {
  flex: 1;
  text-align: center;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* LOGO */
.footer-section img{
  height: 100px;
  width: 150px;
  margin-bottom: 10px;
}
.footer-section{
  color: #98ca1a;
}
/* DEVELOPER LIST */
.developer-list li {
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}
.text-ft{
  width: 100%;
  max-width: 1200px;
  margin-top: 30px;
  padding: 0 20px;

  color: #fff;
  text-align: justify;
   text-justify: inter-word;
  line-height: 1.6;
}
/* end footer */