/* style.css */

/* Hero Section */
.hero-section {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/images/kelas.JPG');
  background-size: cover;
  background-position: center;
}

/* Navbar */
.navbar {
  transition: all 0.3s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Portfolio Cards */
.portfolio-card {
  transition: transform 0.3s;
}

.portfolio-card:hover {
  transform: translateY(-10px);
}

/* Footer */
footer {
  margin-top: 5rem;
}

footer .fs-4 {
  transition: color 0.3s;
}

footer .fs-4:hover {
  color: #0d6efd;
}

.about-text p {
  text-align: justify;
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1.05rem;
  white-space: normal;
}

.about-img {
  width: 75%; /* Atau ganti sesuai keinginan, misalnya 80%, 400px, dsb */
  max-width: 450px; /* Batasi ukuran maksimal */
  height: auto; /* Otomatis mengikuti rasio */
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0.75rem; /* Sudut membulat */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Bayangan */
  transition: transform 0.3s ease-in-out;
}

.about-img:hover {
  transform: scale(1.05); /* Efek zoom saat hover */
}

.card-img-left {
  width: 10%;
  object-fit: cover;
  border-top-left-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
