/* ==========================================================
   STYLE DASAR WEBSITE DESA WISATA KETINGAN
   Dibuat untuk tampilan bersih dan mudah dibaca
   ========================================================== */

/* ====== Reset & Font ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: #333;
  background-color: #fff;
}

/* ====== Navbar ====== */
.navbar {
  transition: background-color 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #d4f5dd !important;
}

/* ====== Hero Section ====== */
section.hero {
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
}

/* ====== Section Umum ====== */
section {
  padding: 60px 0;
}

section h2,
section h3 {
  color: #155724;
  font-weight: 700;
}

section p {
  font-size: 1rem;
  color: #555;
}

/* ====== Card (untuk destinasi, budaya, paket) ====== */
.card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card img {
  height: 220px;
  object-fit: cover;
}

/* ====== Tombol ====== */
.btn-success {
  background-color: #198754;
  border: none;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: #157347;
  transform: scale(1.03);
}

/* ====== Galeri ====== */
.galeri-item img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.galeri-item img:hover {
  transform: scale(1.05);
}

/* ====== Formulir ====== */
form .form-control {
  border-radius: 10px;
  border: 1px solid #ccc;
}

form .form-control:focus {
  border-color: #198754;
  box-shadow: 0 0 5px rgba(25, 135, 84, 0.3);
}

/* ====== Footer ====== */
footer {
  background-color: #198754;
  color: white;
  font-size: 0.95rem;
}

footer p {
  margin-bottom: 0;
}

/* ====== Responsif ====== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section {
    padding: 40px 0;
  }
}
