* {
  box-sizing: border-box;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #ededed, #d4d4d4);
}

/* TOP NAVBAR */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  position: sticky;
  top: 0;
  z-index: 99;
}

/* LOGO */
.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 55px;
  margin-right: 12px;
}

.brand span {
  font-weight: bold;
  color: #222;
}

/* MENU */
.menu {
  display: flex;
  gap: 15px;
}

.menu a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  color: #222;
  background: rgba(255,255,255,0.6);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.menu a:hover {
  transform: translateY(-3px) scale(1.1);
  background: linear-gradient(to right, #bdbdbd, #9e9e9e);
  color: white;
}

/* HERO */
.hero {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(15px);
  padding: 70px 20px;
  text-align: center;
  margin: 40px auto;
  width: 90%;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.hero h1 {
  font-size: 38px;
  margin-bottom: 10px;
  color: #222;
}

.hero p {
  font-size: 18px;
  color: #444;
}

/* CONTAINER / CARD */
.container {
  margin: 40px auto;
  width: 85%;
  max-width: 1100px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(15px);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.3);
  animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FORM */
input {
  width: 100%;
  padding: 16px;
  margin: 12px 0;
  border-radius: 20px;
  border: none;
  background: rgba(255,255,255,0.85);
  box-shadow: inset 0 5px 10px rgba(0,0,0,0.15);
  font-size: 15px;
}

button {
  background: linear-gradient(to right, #b0b0b0, #8c8c8c);
  border: none;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  transform: scale(1.15);
  background: linear-gradient(to right, #8c8c8c, #5f5f5f);
  color: white;
}

/* TABLE */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 25px;
  border-radius: 20px;
  overflow: hidden;
}

th {
  background: rgba(0,0,0,0.15);
  padding: 15px;
}

td {
  padding: 14px;
  text-align: center;
}

tr:nth-child(even) {
  background: rgba(255,255,255,0.5);
}
/* DASHBOARD CARDS */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px) scale(1.05);
}

.card h3 {
  margin: 0;
  font-size: 18px;
  color: #444;
}

.card span {
  font-size: 40px;
  font-weight: bold;
  color: #222;
}

/* FEATURE BUTTONS */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.feature-box {
  background: linear-gradient(135deg, #d1d1d1, #f5f5f5);
  padding: 25px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: #222;
  font-weight: bold;
}

.feature-box:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #9e9e9e, #cfcfcf);
  color: white;
}
/* ================= PROFILE KAMPUS ================= */
.profil-kampus {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  margin-top: 50px;
  line-height: 1.7;
}

.profil-kampus h2 {
  color: #222;
  margin-bottom: 15px;
  font-size: 28px;
  border-bottom: 2px solid #0077cc;
  display: inline-block;
  padding-bottom: 5px;
}

.profil-kampus p {
  color: #555;
  margin-bottom: 15px;
}

.profil-kampus ul {
  list-style-type: disc;
  margin-left: 20px;
  color: #555;
}

.profil-kampus ul li {
  margin-bottom: 8px;
}

/* ================= FORM KAMPUS ================= */
.form-kampus {
  background: #f9f9f9;
  padding: 25px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin-top: 40px;
}

.form-kampus h3 {
  margin-bottom: 15px;
  color: #222;
  font-size: 22px;
  border-bottom: 2px solid #0077cc;
  display: inline-block;
  padding-bottom: 5px;
}

.form-kampus input,
.form-kampus select,
.form-kampus textarea,
.form-kampus button {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 16px;
  transition: 0.3s;
}

.form-kampus input:focus,
.form-kampus select:focus,
.form-kampus textarea:focus {
  border-color: #0077cc;
  outline: none;
}

.form-kampus button {
  background: #0077cc;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.form-kampus button:hover {
  background: #005fa3;
  transform: scale(1.02);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .profil-kampus, .form-kampus {
    padding: 20px 15px;
  }
}
