body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 0;
}

/* NAVBAR */
.navbar {
  background-color: #0b3d2e;
  padding: 12px 20px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
}

.back-btn {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: color 0.3s;
}

.back-btn:hover {
  color: #ffd700;
}

.mentor-container {
  display: flex;
  flex-direction: column; /* agar isi bertumpuk ke bawah */
  max-width: 800px;
  margin: 80px auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mentor-photo {
  display: flex;
  flex-direction: column;
  align-items: center; /* rata tengah semua gambar */
  padding: 20px;
}

.mentor-photo img {
  width: 100%;
  max-width: 600px; /* batas lebar gambar */
  margin-bottom: 15px; /* jarak antar gambar */
  border-radius: 8px;
  object-fit: cover;
}

/* CV Gallery */
.cv-gallery {
  display: flex;
  flex-direction: column; /* tumpuk ke bawah */
  gap: 15px; /* jarak antar gambar */
  width: 100%;
  max-width: 600px;
}
.cv-gallery img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* public/css/footer.css */
/* public/css/footer.css */
.footer {
  background: linear-gradient(to right, #0f3b2e, #1e694d);
  color: #fff;
  padding: 3rem 2rem;
  /* Tambahkan ini untuk memastikan footer selalu di bawah jika konten pendek */
  margin-top: auto; 
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 5rem;
  max-width: 1200px;
  margin: auto;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  color: #ffffff;
}

.footer-column p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #dcdcdc;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #dcdcdc;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}