@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap");

/* Fonts */
body {
  font-family: "Cormorant Garamond", serif;
  background-color: #ede3ce;
  font-weight: 400; /* normal */
  font-size: 20px; /* default ukuran teks */
  margin: 0;
  padding: 0;
} 

/* Navbar */
.navbar {
  padding: 8px 15px;
  border-bottom: 1px solid #6c1515;
}

.navbar-brand {
  font-size: 24px;
  font-weight: 900;
  color: #6c1515;
  margin-right: 25px;
  margin-bottom: 20px;
}

.nav-link {
  margin-left: 16px;
  font-size: 24px;
  font-weight: 700;
  color: #510303;
}

.navbar .nav-link:hover {
  color: #d01913 !important; /* saat hover */
}

.nav-link.active {
  color: #d01913;
}

.navbar .nav-link.active,
.navbar .nav-link.show {
  color: #a40500 !important; /* ubah sesuai warna yang kamu mau */
}

.logo {
  height: 28px;
} 

/* Section spacing */
.about-intro,
.mission {
  padding-top: 60px;
  padding-bottom: 60px;
} 

/* Batasi lebar teks biar gak full */
.about-intro p,
.mission p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  line-height: 1.8;
  text-align: justify;
  color: #2e1d1d;
} 

/* Gambar dalam section */
.about-intro img,
.mission img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px auto;
  display: block;
} 

/* Heading */
.about-intro h2,
.mission h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  color: #2e1d1d;
} 

.mission .col-lg-6 img {
  aspect-ratio: 16/9;   /* bisa 16/9, 1/1, 3/4 sesuai gaya */
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Responsive tweak */
@media (max-width: 992px) {
  .about-intro .col-lg-6 {
    text-align: center;
  }
  .about-intro img {
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .about-intro p,
  .mission p {
    padding-left: 25px;
    padding-right: 25px;
  }
}
