/* === Font Global === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

/* === Tajuk === */
h1, h2, h3, h4, h5 {
  font-weight: 600;
  color: #222;
}

.title h2 {
  font-size: 32px;
  margin-bottom: 20px;
  position: relative;
}

.title h2::after {
  content: '';
  width: 60px;
  height: 3px;
  background: #0d6efd;
  display: block;
  margin-top: 10px;
}

/* === Header / Navbar === */
.header {
  background-color: #ffffff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar .nav-link {
  color: #333 !important;
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.navbar .nav-link:hover {
  color: #0d6efd !important;
}

/* === Button === */
.btn,
.send_btn,
.book_btn {
  background-color: #0d6efd;
  color: white;
  font-weight: 500;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btn:hover,
.send_btn:hover,
.book_btn:hover {
  background-color: #0b5ed7;
}

/* === Form Input === */
input.contactus,
textarea.textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 15px;
}

input.contactus:focus,
textarea.textarea:focus {
  border-color: #0d6efd;
  outline: none;
}

/* === Footer === */
footer {
  background-color: #f8f9fa;
  padding: 40px 0 20px;
  color: #444;
}

footer h3 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

footer ul {
  padding-left: 0;
  list-style: none;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li i {
  margin-right: 10px;
}

footer .copyright {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #ddd;
}

/* === Gallery === */
.gallery_img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery_img img:hover {
  transform: scale(1.03);
}

/* === Section padding === */
.back_re,
.about,
.contact,
.gallery {
  padding: 60px 0;
}

/* === Responsive tweaks === */
@media (max-width: 768px) {
  .title h2 {
    font-size: 28px;
  }

  .btn,
  .send_btn,
  .book_btn {
    width: 100%;
  }
}

footer a,
footer small,
footer i,
footer ul li {
  color: #ffffff !important;
}

footer a:hover {
  color: #ffc107 !important; /* optional: hover kuning */
}

footer hr {
  border-color: rgba(255,255,255,0.2); /* garis halus putih lut */
}

footer h5 {
  color: #ffc107 !important; /* kuning Bootstrap */
}
.navbar-nav .nav-link {
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  color: #ffffff !important; /* pastikan warna asal putih */
}

.navbar-nav .nav-link:hover {
  color: #ffc107 !important;  /* kuning bila hover */
  transform: translateY(-2px);
}

.social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-icon:hover {
  background-color: #ffffff;
  color: #0d6efd;
  transform: scale(1.1);
}

