@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 */
}

/* CONTACT SECTION */
/* .contact-section {
  background-color: #f5efe3;
  padding: 80px 20px;
} */

.social-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 15px; /* frame lebih besar */
  box-shadow: 0px 10px 35px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 15px 45px rgba(0,0,0,0.12);
}

.social-img {
  width: 100%;
  height: 420px; /* tinggi card tetap */
  object-fit: contain; /* gambar utuh, tidak kepotong */
  background-color: #ffffff; /* biar tidak ada area kosong transparan */
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 10px; /* biar ada space dan tidak terlalu mepet */
}

/* Buttons */
.contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
}

/* Shopee orange */
.shopee-btn {
  background: #ee4d2d;
}

/* Instagram gradient */
.instagram-btn {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

/* FEED FRAME (Shopee / Instagram) */
.feed-frame {
  width: 100%;
  height: 420px; /* kamu mau lebih gedean sedikit */
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  box-shadow: 0px 10px 35px rgba(0,0,0,0.08);
}

/* Gambar dalam frame */
.feed-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* supaya crop cantik */
}

/* Responsif Mobile */
@media (max-width: 768px) {
  .contact-btn {
    width: 100%;
    text-align: center;
  }
}

.logo {
  height: 28px;
}

html,
body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1; /* isi konten dorong footer ke bawah */
}

footer {
  margin-top: auto;
}
