.btn-pink {
  background-color: #F8C3C7;
  border: none;
  color: white;
}
.btn-pink:hover {
  background-color: #f3aab1;
}

body {
  background-color: #fdfdfd;
}

.card {
  border-radius: 12px;
}

.text-pink {
  color: #F8C3C7 !important;
}
.text-pink:hover {
  color: #f09ca4 !important;
}

.form-control:focus {
  border-color: #F8C3C7;
  box-shadow: 0 0 0 0.2rem rgba(248, 195, 199, 0.25);
}

body {
  overflow-x: hidden;
}


.navbar-custom {
  background-color: #F8C3C7; /* warna pink */
}

/* Warna link utama navbar */
.navbar-custom .nav-link {
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

/* Hover link utama */
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link:focus {
  color: #FFD33C; /* warna kuning */
}

/* Aktif link (opsional) */
.navbar-custom .nav-link.active {
  color: #FFD33C;
  font-weight: 600;
}

/* Tombol login & register */
/* .navbar-custom .btn-primary {
  background-color: #FFD33C;
  border: none;
  color: #333;
} */

.navbar-custom .btn-primary:hover {
  background-color: #ffca0a;
  color: #333;
}

.navbar-custom .btn-outline-primary {
  border-color: #FFD33C;
  color: #333;
}

.navbar-custom .btn-outline-primary:hover {
  background-color: #FFD33C;
  color: #333;
}

/* Dropdown */
.navbar-custom .dropdown-menu {
  background-color: #F8C3C7; /* sama dengan navbar */
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Item dropdown */
.navbar-custom .dropdown-item {
  color: #333;
  font-weight: 500;
  transition: 0.2s;
}

/* Hover dropdown item */
.navbar-custom .dropdown-item:hover {
  background-color: #FFD33C;
  color: #333;
}

/* Dropdown toggle icon */
.navbar-custom .dropdown-toggle::after {
  border-top-color: #333;
}


.pastel-footer {
  background-color: #F8C3C7;
  color: #5a4e4e;
}

/* Teks dan link di footer */
.footer-link {
  color: #5a4e4e; /* abu tua */
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #d63384; /* pink lebih tua */
  text-decoration: underline;
}

/* Sosial media */
.social-link {
  color: #5a4e4e;
  transition: color 0.3s;
}

.social-link:hover {
  color: #d63384;
}

/* Layout keseluruhan supaya footer di bawah */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1; /* isi ruang tengah */
}

footer {
  margin-top: auto;
}

/* --- Tambahan Styling Baru --- */

/* Map container */
.map-container iframe {
  width: 100%;
  height: 220px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Heading Footer */
.footer h5 {
  margin-bottom: 1rem;
}

/* Responsive tweak untuk layar kecil */
@media (max-width: 768px) {
  .map-container iframe {
    height: 180px;
  }
}


/* home start */

.hero-section {
  background-color: #F8C3C7;
  padding: 60px 0;
  width: 100vw; /* ganti 100% jadi 100vw */
  position: relative;
  left: 50%;              /* ini */
  right: 50%;             /* ini */
  margin-left: -50vw;     /* ini */
  margin-right: -50vw;    /* ini */
  overflow: hidden;
  display: flex;
}


.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.hero-text p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 20px;
}

.btn-daftar {
  display: inline-block;
  background-color: #FFD33C;
  color: #333;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.btn-daftar:hover {
  background-color: #ffca0a;
}

.hero-image {
  position: relative;
  z-index: 1; /* container */
  bottom: 0;
  top: 80px;
}

.hero-image::before {
  content: "";
  position: absolute;
  right: -100px;
  top: 50px;
  width: 500px;
  height: 500px;
  background-color: red;
  border-radius: 50%;
  z-index: 0; /* di belakang gambar */
}

.hero-image img {
  position: relative;
  z-index: 2; /* gambar di atas lingkaran */
  max-width: 400px;
  border-radius: 80px;
}

/* Dekorasi lingkaran */
.hero-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  background-color: #8BBED1;
  border-radius: 50%;
  z-index: 0;
}


.hero-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 150px;
  width: 120px;
  height: 120px;
  background-color: #B28BD1;
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* home end */

/* profil singkat start */
/* === Profil Section === */
.profil-section {
  padding: 80px 0;
  background-color: #fff;
}

.profil-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  text-align: left;
}

.profil-image img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #ddd;
}

.profil-text {
  max-width: 500px;
}

.profil-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.profil-text p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
}

.btn-profil {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #F8C3C7;
  border-radius: 12px;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-profil:hover {
  background-color: #F8C3C7;
}

.blog-card {
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.blog-img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  margin-right: 20px;
}
