/* Reset basic margin & padding */
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Background Utama: Hitam & Gambar Gedung */
.hero-section {
  /* Kita pakai overlay putih transparan agar teks di depannya tidak kalah dengan gambar */
  background:
    linear-gradient(hsla(0, 2%, 8%, 0.636)),
    url(https://i.pinimg.com/1200x/bf/d2/df/bfd2df72e81e414fa3f36df32ad3c66d.jpg)
      no-repeat center center/cover;

  height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: white;
}

/* Navbar Utama */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 8%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

/* Mengatur wadah utama Logo agar gambar & tulisan berjejer ke samping */
.logo {
  display: flex;
  align-items: center; /* Membuat gambar & teks lurus sejajar di tengah secara vertikal */
  gap: 12px; /* Jarak antara gambar logo dengan tulisan VECTRA */
  padding-left: 10px;
}

/* Mengatur ukuran gambar logo-nya */
.logo img {
  height: 50px; /* Sesuaikan tinggi gambar agar pas dengan ukuran tulisan */
  width: auto; /* Lebar otomatis menyesuaikan agar tidak gepeng */
  display: block;
}
/* Mengatur gaya tulisan VECTRA-nya */
.logo h1 {
  color: #ff6b00;
  font-size: 26px;
  letter-spacing: 3px;
  font-weight: bold;
}

/*mengatur navigasi*/
.navbar ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
}

.navbar ul li a {
  color: #ff6b00;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

/* Aksen Warna Orange pada Hover */
.navbar ul li a:hover {
  color: #ff6b00;
}

/* Tombol Book an Appointment khas Orange */
.navbar ul li a.btn-appointment {
  border-bottom: 2px solid #ff6b00;
  padding-bottom: 4px;
  color: #ff6b00;
  font-weight: bold;
}

/* Sembunyikan Checkbox & Hamburger di Desktop */
#menu-toggle,
.hamburger {
  display: none;
}

/* Area Teks Tengah */
.hero-text {
  margin: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: 850px;
  justify-content: center;
  padding: 0 20px;
}

.hero-text h2 {
  color: #ff6b00;
  font-size: 50px;
  font-weight: 300;
  line-height: 1.3;
  font-weight: bold !important;
  margin-bottom: 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 107, 0, 0.25)
  );
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-right: 1px solid rgba(255, 107, 0, 0.3);
  border-bottom: 1px solid rgba(255, 107, 0, 0.3);
  padding: 40px 30px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  width: fit-content;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.hero-text p {
  color: #a0a0a0;
  font-size: 16px;
  letter-spacing: 1px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* =================================================== */
/* MEDIA QUERY: OTOMATIS BERUBAH DI PONSEL (Responsive) */
/* =================================================== */
@media screen and (max-width: 768px) {
  /* Memunculkan Tombol Hamburger */
  .hamburger {
    display: block;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    z-index: 101;
  }

  /* Mengubah Menu Menjadi Dropdown Vertikal saat di-klik */
  .navbar nav {
    position: fixed;
    top: 0;
    right: -100%; /* Sembunyi di kanan layar sebelum diklik */
    width: 70%;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 100px;
    transition: right 0.4s ease;
  }

  .navbar ul {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .navbar ul li a {
    font-size: 18px;
  }

  /* Logika CSS: Jika hamburger diklik, menu muncul slide-in */
  #menu-toggle:checked ~ nav {
    right: 0;
  }

  /* Penyesuaian Ukuran Teks di Layar HP */
  .hero-text h2 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 14px;
  }
}

/* Styling untuk konten tambahan di bawah hero agar bisa di-scroll */
.content-section {
  padding: 100px 8%;
  background-color: #111111; /* Hitam sedikit terang agar kontras */
  color: #ffffff;
  min-height: 60vh; /* Memberi tinggi minimal agar halaman memanjang ke bawah */
  padding-top: 20px;
}

/* Section dengan tema orange */
.text-orange {
  background-color: #000000;
  color: #ff6b00;
}

.content-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ff6b00;
}

.content-section p {
  font-size: 18px;
  color: #cccccc;
  line-height: 1.6;
}

.text-kontak {
  min-height: 30vh;
}

/*footer*/
/* --- WADAH UTAMA FOOTER (Background Gelap) --- */
.footer-section {
  background-color: #111111; /* Hitam arang elegan */
  color: #e0e0e0; /* Teks abu-abu terang, jangan putih 100% biar gak silau */
  padding-top: 50px; /* Jarak dari atas ke konten footer */
  font-size: 15px;
}

/* --- PEMBAGIAN KOLOM (FLEXBOX) --- */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; /* Biar kalau di HP otomatis turun ke bawah */
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 30px 20px;
  gap: 30px; /* Jarak antar kolom */
}

/* Lebar masing-masing kolom */
.footer-brand {
  flex: 2;
  min-width: 250px;
}
.footer-links {
  flex: 1;
  min-width: 150px;
}
.footer-contact {
  flex: 1;
  min-width: 200px;
}

/* Desain Judul di tiap kolom */
.footer-container h3 {
  color: #ff6b00; /* Orange kebanggaan kita */
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-container h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-brand p {
  line-height: 1.6;
  color: #aaaaaa;
}

/* Desain List Tautan Cepat */
.footer-links ul {
  list-style: none; /* Hilangkan titik bullet */
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #cccccc;
  text-decoration: none;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease; /* Animasi geser */
}

/* Pas link-nya didekati kursor mouse */
.footer-links ul li a:hover {
  color: #ff6b00;
  padding-left: 5px; /* Teksnya maju sedikit ke kanan, estetik banget! */
}

.footer-contact p {
  margin-bottom: 8px;
}

/* --- BAGIAN BAWAH: COPYRIGHT --- */
.footer-bottom {
  background-color: #000000; /* Hitam pekat untuk bagian paling bawah */
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  color: #777777;
  border-top: 1px solid #222222;
}
/* Wadah luar - SEKARANG PUTIH/TERANG */
/* --- CONTAINER UTAMA & LAYOUT SPLIT --- */
.login-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f0f2f5; /* Background luar abu-abu terang yang clean */
  padding: 20px;
}

.login-container {
  display: flex;
  width: 100%;
  max-width: 1000px; /* Lebar maksimal box split screen */
  height: 600px;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden; /* Biar sudut gambar di kiri ikut melengkung */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* --- SISI KIRI: BACKGROUND & GLASSMORPHISM ORANGE --- */
.login-left {
  flex: 1;
  /* Kita pakai gambar tema fisika gelap yang kamu pilih sebelumnya */
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1635070041078-e363dbe005cb?q=80&w=1600")
      no-repeat center center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

/* Lapisan Kaca Orange Tebal di Atas Gambar */
.glass-overlay {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 107, 0, 0.25)
  );
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-right: 1px solid rgba(255, 107, 0, 0.3);
  border-bottom: 1px solid rgba(255, 107, 0, 0.3);
  padding: 40px 30px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  text-align: center;
  width: 85%;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.glass-overlay h2 {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 10px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.glass-overlay p {
  font-size: 16px;
  color: #f0f0f0;
  font-style: italic;
}

/* --- SISI KANAN: FORM TERANG (PUTIH, ORANGE, HITAM) --- */
.login-right {
  flex: 1;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.login-form-box {
  width: 100%;
  max-width: 360px;
}

/* Bagian Logo Atas Form */
.form-logo {
  text-align: center;
  margin-bottom: 30px;
}

.form-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 12px;
}

.form-logo h3 {
  color: #ff6b00; /* Orange Menyala */
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 4px;
}

.form-logo span {
  color: #777777;
  font-size: 14px;
}

/* Form Input Style */
.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.input-group input {
  width: 100%;
  padding: 12px 14px;
  background-color: #f9f9f9;
  border: 1px solid #dddddd;
  border-radius: 8px;
  color: #111111;
  font-size: 15px;
  transition: all 0.3s ease;
}

.input-group input:focus {
  outline: none;
  border-color: #ff6b00;
  background-color: #ffffff;
  box-shadow: 0 0 8px rgba(255, 107, 0, 0.2);
}

/* Opsi Tambahan (Remember Me & Lupa Password) */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 25px;
}

.remember-me {
  color: #555555;
  cursor: pointer;
}

.forgot-pass {
  color: #ff6b00;
  text-decoration: none;
  font-weight: 500;
}

.forgot-pass:hover {
  text-decoration: underline;
}

/* Tombol Login (Hitam Solid, Hover Orange) */
.btn-login {
  width: 100%;
  padding: 14px;
  background-color: #111111; /* Dasar Hitam */
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background-color: #ff6b00; /* Berubah Orange saat di-hover */
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

/* Teks Daftar Akun Baru */
.register-text {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: #555555;
}

.register-text a {
  color: #ff6b00;
  text-decoration: none;
  font-weight: bold;
}

.register-text a:hover {
  text-decoration: underline;
}

/* --- RESPONSIVE MOBILE (Biar kalau dibuka di HP otomatis numpuk vertikal) --- */
@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
    height: auto;
  }
  .login-left {
    padding: 60px 20px;
  }
}

/*BAGIAN DARI EVENT CSS NYA*/
/* Atur posisi: Tanggal di Kiri, Tombol di Kanan */
.card-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  margin-top: 20px;
  border-top: 1px solid #333; /* Kasih garis tipis pemisah kalau mau */
  padding-top: 15px;
}
/* Biar 2 tombolnya berjejer rapi */
.card-buttons {
  display: flex;
  width: 100%;
  gap: 10px; /* Jarak antara tombol Ikut dan Panduan */
}

/* Desain Dasar Kedua Tombol */
.btn-ikut,
.btn-panduan {
  flex: 1;
  padding: 8px 16px;
  text-align: center;
  border-radius: 6px;
  text-decoration: none; /* Hilangkan garis bawah bawaan link */
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease; /* Animasi mulus saat dihover */
}

/* Tombol Utama: IKUT EVENT (Background Orange Solid) */
.btn-ikut {
  background-color: #ff6b00;
  color: #ffffff;
  border: 1px solid #ff6b00;
}

.btn-ikut:hover {
  background-color: #e65c00; /* Warna agak gelap pas diklik */
  box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3); /* Efek cahaya neon */
}

/* Tombol Sekunder: PANDUAN (Garis Pinggir Saja) */
.btn-panduan {
  background-color: transparent; /* Tembus pandang */
  color: #ff6b00; /* Teks warna orange */
  border: 1px solid #ff6b00;
}

.btn-panduan:hover {
  background-color: rgba(255, 107, 0, 0.1); /* Nyala tipis pas disentuh */
}
/* L
ayout Grid agar card event berjejer rapi */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

/* Desain Kotak/Card Event */
.event-card {
  background-color: #111111;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
