/* Reset */
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:"Poppins",sans-serif;
  background:linear-gradient(180deg,#fff,#fdf9fb);
  color:#222;
  text-align:center;
  overflow-x:hidden;
}

/* Fade-in Animation */
.fade-in{opacity:0;transform:translateY(20px);transition:opacity 1s ease,transform 1s ease;}
.fade-in.visible{opacity:1;transform:translateY(0);}

/* Header Gradient */
.header-gradient{
  background:linear-gradient(180deg,#ffb6c1 0%,#ff99cc 100%);
  padding-bottom:60px;
  box-shadow:0 2px 10px rgba(0,0,0,0.2);
  animation:fadeUp 1s ease;
}
@keyframes fadeUp{from{opacity:0;transform:translateY(-30px);}to{opacity:1;transform:translateY(0);}}

/* Navbar */
.navbar{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:20px;
  padding:14px 0;
}
.navbar a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
  padding:8px 16px;
  border-radius:10px;
  transition:.3s;
}
.navbar a:hover{background:rgba(255,255,255,0.3);}

/* Sidebar */
.menu-toggle{display:none;position:fixed;top:15px;left:15px;font-size:28px;background:none;border:none;color:#fff;z-index:1100;cursor:pointer;}
.sidebar{
  position:fixed;top:0;left:-260px;width:240px;height:100%;
  background:linear-gradient(to bottom,#ffb6c1,#ff99cc);
  transition:left .3s ease;
  box-shadow:2px 0 10px rgba(0,0,0,0.3);
  z-index:1050;
  padding-top:60px;
}
.sidebar.show{left:0;}
.sidebar a{
  display:block;color:#fff;padding:15px 25px;text-align:left;
  font-weight:bold;text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,0.2);
  transition:.3s;
}
.sidebar a:hover{background:#ffccff;color:#000;}

/* Logo */
.header-logo{padding:30px 0;animation:fadeInLogo 2s ease;}
.header-logo img{
  width:230px;border-radius:25px;
  animation:float 3s ease-in-out infinite;
  filter:drop-shadow(0 0 30px rgba(255,140,160,0.6));
}
@keyframes float{0%,100%{transform:translateY(0);}50%{transform:translateY(-10px);}}
@keyframes fadeInLogo{from{opacity:0;transform:scale(0.8);}to{opacity:1;transform:scale(1);}}

/* Main Section */
.main-section{
  background:linear-gradient(180deg,rgba(255,255,255,0.95),rgba(255,240,250,0.9));
  padding:60px 0;
  display:flex;flex-direction:column;align-items:center;gap:25px;
}
.main-section h2.title{
  color:#ff4b75;
  margin-bottom:10px;
  font-size:28px;
}
.main-section p{
  color:#444;
  max-width:600px;
  margin-bottom:30px;
  line-height:1.6;
}

/* ===== STAFF SECTION ===== */
.staff-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}
.staff-group {
  background: #ffffffb3;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  backdrop-filter: blur(6px);
  transition: 0.4s ease;
}
.staff-group:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255,105,180,0.3);
}
.staff-group h2 {
  margin: 0 0 25px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 1px;
  text-align: left;
}
.staff-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.staff-card {
  background: #f9faff;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  min-width: 200px;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.staff-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255,182,193,0.4);
  background: #fff0f6;
}
.staff-card img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}
.staff-name {
  font-weight: bold;
  font-size: 16px;
  background: #333;
  padding: 4px 10px;
  border-radius: 6px;
  color: #fff;
}

/* Role Colors */
.owner h2 { color: #e60000; }
.admin h2 { color: #0055ff; }
.helper h2 { color: #00aa44; }
.media h2 { color: #EC1690; }

@media (max-width: 768px) {
  .staff-list { flex-direction: column; align-items: center; }
}

/* Footer */
footer{
  background:linear-gradient(180deg,#000,#1a1a1a);
  color:#fff;
  text-align:center;
  padding:30px 10px;
  line-height:1.8;
  font-size:14px;
  border-top:2px solid #ffb6c1;
}
footer a{color:#ffb6c1;text-decoration:none;}
.social-icons{display:flex;justify-content:center;gap:20px;margin:15px 0;}
.social-icons img{width:40px;height:40px;border-radius:50%;transition:.3s;}
.social-icons img:hover{transform:scale(1.2);}

@media(max-width:768px){.navbar{display:none;}.menu-toggle{display:block;}}
@media(min-width:769px){.sidebar{display:none;}}
