/* RESET */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body{
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 30px;

  color: white;

  background: #050816;
  overflow-x: hidden;
}

/* BACKGROUND */
.background{
  position: fixed;
  inset: 0;

  background:
    radial-gradient(circle at top left, #4f46e5 0%, transparent 35%),
    radial-gradient(circle at bottom right, #7c3aed 0%, transparent 35%),
    #050816;

  z-index: -2;
}

/* FOTO BACKGROUND KELAS */
.class-background{
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.class-background img{
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0.15;

  filter: blur(2px);

  transform: scale(1.05);
}

/* CONTAINER */
.container{
  width: 100%;
  max-width: 850px;

  background: rgba(10,15,35,0.72);

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 35px;

  padding: 60px 45px;

  backdrop-filter: blur(18px);

  box-shadow:
    0 0 40px rgba(0,0,0,0.4);

  text-align: center;

  margin-bottom: 80px;
}

/* HERO */
.hero{
  margin-bottom: 45px;
}

/* LOGO */
.logo-wrapper{
  display: flex;
  justify-content: center;

  margin-bottom: 25px;
}

.logo{
  width: 170px;
  height: 170px;

  object-fit: cover;
  border-radius: 50%;

  border: 5px solid rgba(255,255,255,0.1);

  box-shadow:
    0 0 30px rgba(99,102,241,0.5);
}

/* TITLE */
.title{
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;

  margin-bottom: 20px;
}

/* LINE */
.line{
  width: 100px;
  height: 4px;

  background: #7c3aed;

  margin: 0 auto 25px;
  border-radius: 10px;
}

/* DESCRIPTION */
.description{
  max-width: 620px;

  margin: auto;

  font-size: 17px;
  line-height: 1.8;

  color: rgba(255,255,255,0.75);
}

/* MENU */
.menu{
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* CARD */
.menu-card{
  display: flex;
  align-items: center;
  gap: 20px;

  text-decoration: none;
  color: white;

  background: rgba(255,255,255,0.06);

  border: 1px solid rgba(255,255,255,0.08);

  padding: 24px;

  border-radius: 25px;

  transition: 0.3s ease;
}

.menu-card:hover{
  transform: translateY(-5px);

  background: rgba(255,255,255,0.1);
}

/* ICON */
.menu-icon{
  min-width: 75px;
  height: 75px;

  border-radius: 20px;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 15px;
}

.menu-icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ICON COLORS */
.purple{
  background: linear-gradient(135deg,#7c3aed,#8b5cf6);
}

.blue{
  background: linear-gradient(135deg,#2563eb,#3b82f6);
}

.cyan{
  background: linear-gradient(135deg,#0891b2,#06b6d4);
}

.green{
  background: linear-gradient(135deg,#16a34a,#22c55e);
}

.pink{
  background: linear-gradient(135deg,#db2777,#ec4899);
}

/* CONTENT */
.menu-content{
  text-align: left;
  flex: 1;
}

.menu-content h3{
  font-size: 25px;
  margin-bottom: 8px;
}

.menu-content p{
  font-size: 15px;
  line-height: 1.7;

  color: rgba(255,255,255,0.7);
}

/* ARROW */
.arrow{
  font-size: 40px;
  color: rgba(255,255,255,0.5);
}

/* FOOTER */
.footer{
  margin-top: 40px;

  font-size: 15px;

  color: rgba(255,255,255,0.5);
}

/* ========================= */
/* SECTION STRUKTUR */
/* ========================= */

.organization-section{
  width: 100%;
  max-width: 1200px;

  padding: 80px 30px;

  border-radius: 40px;

  background:
    linear-gradient(
      to bottom,
      rgba(12,18,40,0.95),
      rgba(18,25,50,0.95)
    );

  border:
    1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(15px);

  box-shadow:
    0 0 40px rgba(0,0,0,0.25);

  margin: auto;
}

/* CONTAINER */
.organization-container{
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.organization-header{
  text-align: center;
  margin-bottom: 60px;
}

.organization-header h2{
  font-size: 48px;
  font-weight: 800;

  color: white;

  margin-bottom: 15px;
}

.organization-header p{
  font-size: 17px;
  line-height: 1.8;

  color: rgba(255,255,255,0.7);

  max-width: 650px;
  margin: auto;
}

/* GRID */
.organization-grid{
  display: grid;

  grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

  gap: 30px;
}

/* MEMBER CARD */
.member-card{
  background:
    rgba(255,255,255,0.05);

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius: 30px;

  padding: 35px 25px;

  text-align: center;

  transition: 0.3s ease;

  backdrop-filter: blur(10px);
}

.member-card:hover{
  transform: translateY(-10px);

  background:
    rgba(255,255,255,0.08);
}

/* FOTO */
.member-image{
  width: 130px;
  height: 130px;

  margin: auto auto 25px;

  border-radius: 30px;

  overflow: hidden;

  border:
    4px solid rgba(255,255,255,0.1);

  box-shadow:
    0 0 25px rgba(99,102,241,0.35);
}

.member-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* NAMA */
.member-card h3{
  font-size: 24px;
  font-weight: 700;

  color: white;

  margin-bottom: 10px;
}

/* JABATAN */
.member-card span{
  display: inline-block;

  padding: 8px 18px;

  border-radius: 50px;

  background:
    rgba(124,58,237,0.2);

  color: #c4b5fd;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 18px;
}

/* DESKRIPSI */
.member-card p{
  font-size: 14px;
  line-height: 1.7;

  color: rgba(255,255,255,0.72);
}

/* RESPONSIVE */
@media(max-width:768px){

  body{
    padding: 20px;
  }

  .container{
    padding: 40px 25px;
  }

  .title{
    font-size: 38px;
  }

  .description{
    font-size: 15px;
  }

  .menu-card{
    padding: 18px;
    gap: 15px;
  }

  .menu-icon{
    min-width: 60px;
    height: 60px;
  }

  .menu-content h3{
    font-size: 18px;
  }

  .menu-content p{
    font-size: 13px;
  }

  .organization-section{
    padding: 60px 20px;
  }

  .organization-header h2{
    font-size: 34px;
  }

  .organization-header p{
    font-size: 15px;
  }

  .member-card{
    padding: 25px 18px;
  }

  .member-image{
    width: 110px;
    height: 110px;
  }
  /* ========================= */
/* GALERI DOKUMENTASI */
/* ========================= */

.gallery-grid{
  display: grid;

  grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

  gap: 30px;

  margin-top: 40px;
}

/* CARD GALERI */
.gallery-card{
  background:
    rgba(255,255,255,0.05);

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius: 30px;

  overflow: hidden;

  transition: 0.3s ease;

  backdrop-filter: blur(10px);

  box-shadow:
    0 0 25px rgba(0,0,0,0.2);
}

.gallery-card:hover{
  transform: translateY(-10px);

  background:
    rgba(255,255,255,0.08);
}

/* FRAME FOTO OTOMATIS */
.gallery-image{
  width: 100%;

  height: 280px;

  overflow: hidden;

  position: relative;

  background:
    rgba(255,255,255,0.03);

  border-bottom:
    1px solid rgba(255,255,255,0.08);
}

/* FOTO */
.gallery-image img{
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: 0.4s ease;
}

/* EFEK HOVER FOTO */
.gallery-card:hover .gallery-image img{
  transform: scale(1.08);
}

/* CONTENT */
.gallery-content{
  padding: 25px;

  text-align: left;
}

.gallery-content h3{
  font-size: 24px;
  font-weight: 700;

  color: white;

  margin-bottom: 12px;
}

.gallery-content p{
  font-size: 14px;
  line-height: 1.8;

  color: rgba(255,255,255,0.72);
}

/* BUTTON KEMBALI */
.back-button{
  margin-top: 50px;
}

/* ========================= */
/* RESPONSIVE GALERI */
/* ========================= */

@media(max-width:768px){

  .gallery-grid{
    grid-template-columns: 1fr;
  }

  .gallery-image{
    height: 230px;
  }

  .gallery-content{
    padding: 20px;
  }

  .gallery-content h3{
    font-size: 20px;
  }

}
}
