/* =================================================
   SISTEM INFORMASI RPL
   FINAL CLEAN VERSION – TENANG, ELEGAN, KAMPUS
   ================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BODY & BACKGROUND ===== */
body {
  background: url('../../kampus.jpg') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  position: relative;
  font-family: 'League Spartan', 'Segoe UI', sans-serif;
  color: #fff;
}

/* Overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(6px);
  z-index: 0;
}

/* ===== CONTAINER UTAMA ===== */
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 85%;
  max-width: 1200px;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

/* ===== BAGIAN KIRI ===== */
.left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.left img {
  width: 300px;
  margin-bottom: 24px;
  filter:
    drop-shadow(0 0 4px rgba(255,255,255,0.6))
    drop-shadow(0 0 8px rgba(255,215,0,0.25))
    drop-shadow(0 4px 12px rgba(0,0,0,0.7));
}

.left h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.6px;
}

.left p {
  font-size: 15px;
  margin-top: 8px;
  letter-spacing: 1px;
  color: #e0e0e0;
}

/* ===== GARIS PEMBATAS ===== */
.divider {
  width: 2px;
  height: 420px;
  background: rgba(255,255,255,0.35);
  margin: 0 48px;
}

/* ===== BAGIAN KANAN ===== */
.right {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

/* Judul kecil */
.right h3 {
  font-size: 44px;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 16px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.85);
}

/* Judul utama */
.right h1 {
  font-size: 78px;
  font-weight: 900;
  line-height: 1.1;
  max-width: 900px;
  margin-bottom: 32px;
  text-shadow: 3px 3px 10px rgba(0,0,0,0.9);
}

/* ===== BUTTON ===== */
.button-group {
  display: flex;
  gap: 14px;
}

.btn {
  padding: 10px 26px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Login Calon Mahasiswa */
.btn-mahasiswa {
  border: 2px solid #FFD700;
  color: #FFD700;
}

.btn-mahasiswa:hover {
  background: #FFD700;
  color: #222;
  box-shadow: 0 0 20px rgba(255,215,0,0.7);
}

/* ===== TRUST + STATUS ===== */
.trust-badge {
  margin-top: 26px;
  font-size: 13px;
  opacity: 0.85;
}

.status-sistem {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
}

/* ===== FOOTER ===== */
footer {
  margin-top: 36px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.35);
  font-size: 13px;
  opacity: 0.8;
}

/* ===== LOGIN PIMPINAN ===== */
.login-pimpinan {
  position: absolute;
  top: 26px;
  right: 36px;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.login-pimpinan:hover {
  color: #FFD700;
  box-shadow: 0 0 14px rgba(255,215,0,0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
  }

  .divider {
    display: none;
  }

  .right {
    align-items: center;
  }

  .right h3 {
    font-size: 36px;
  }

  .right h1 {
    font-size: 54px;
  }

  .left img {
    width: 190px;
  }
}