/* Reset beberapa elemen dasar */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

/* Navbar */
.navbar {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand span {
  font-size: 1.1rem;
}

.navbar-nav .nav-link {
  margin-right: 15px;
  transition: color 0.3s, transform 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #ffc107 !important;
  transform: translateY(-2px);
}

/* Hero section */
#home {
  background: linear-gradient(135deg, #ff4b2b, #ff416c);
  color: white;
  text-align: left;
  padding: 60px 0;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

#home h1 {
  font-size: 2.5rem;
}

#home p {
  font-size: 1rem;
  margin-top: 20px;
}

#home .btn {
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
}

#home img {
  max-width: 80%;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  font-size: 0.9rem;
}

/* Dropdown menu */
.dropdown-menu {
  background-color: #dc3545;
}

.dropdown-item {
  color: white;
  transition: background 0.3s;
}

.dropdown-item:hover {
  background-color: #c82333;
}

/* Search form */
form input.form-control {
  border-radius: 30px;
  padding-left: 15px;
}

form button.btn {
  border-radius: 30px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  #home h1 {
    font-size: 2rem;
  }

  #home img {
    max-width: 100%;
    margin-top: 20px;
  }

  .navbar-nav .nav-link {
    margin-right: 0;
  }
}
/* Global reset & base */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

h2,
h4,
h5 {
  font-weight: bold;
}

a {
  text-decoration: none;
  transition: color 0.3s;
}

/* Navbar */
.navbar {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand span {
  font-size: 1.1rem;
}

.navbar-nav .nav-link {
  margin-right: 15px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffc107 !important;
}

/* Section Titles */
.section-title {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #dc3545;
}

/* About Image */
img.img-fluid {
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

img.img-fluid:hover {
  transform: scale(1.05);
}

/* Card style */
.card {
  border: none;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-title {
  color: #dc3545;
}

.card-text {
  font-size: 0.95rem;
}

/* Footer */
footer {
  font-size: 0.9rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }

  img.img-fluid {
    margin-bottom: 20px;
  }
}

/* Bottom*/
.btn-warning:hover {
  background-color: #e0a800;
  color: #fff;
}

.btn-outline-danger:hover {
  background-color: #dc3545;
  color: #fff;
}

/* Bottom WA*/
.btn-whatsapp {
  background-color: #2ab330;
  color: white;
}
.btn-whatsapp:hover {
  background-color: #1ebe5d;
  color: white;
}
