/* === 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%;
  }
}

.carousel-control-prev,
.carousel-control-next {
  display: none; 
}

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);
}

<style>
  @media (min-width: 992px) {
    .space-right-lg {
      margin-right: 60px; /* atau 3rem / 4rem */
    }
  }
</style>

@media (min-width: 1200px) {
  footer .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/*utama*/
/* Pastikan carousel ada position relative untuk positioning control dan overlay */
  .carousel {
    position: relative;
  }

  .carousel-caption-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5); /* latar gelap lut */
    padding: 40px 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    z-index: 20;
    text-align: center;
  }

	.carousel-caption-overlay h1 {
	  font-size: 2rem;
	  font-weight: bold;
	  color: #FF6F00; /* oren terang */
	  text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
	}

  .carousel-caption-overlay .btn {
	  font-size: 1rem;
	  padding: 10px 25px;
	  font-weight: 600;
	  color: #fff;
	  background: linear-gradient(45deg, #007bff, #00c6ff);
	  border: none;
	  border-radius: 30px;
	  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
	  transition: all 0.3s ease;
	}

	.carousel-caption-overlay .btn:hover {
	  background: linear-gradient(45deg, #0056b3, #00a3cc);
	  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
	}


  /* Controls fix */
  .carousel-control-prev,
  .carousel-control-next {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 5%;
    z-index: 30;
    opacity: 1;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.7);
    background-size: 60% 60%;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    filter: none;
  }

  /* Extra padding on mobile */
  @media (max-width: 576px) {
    .carousel-caption-overlay {
      padding: 30px 15px;
    }

    .carousel-caption-overlay h1 {
      font-size: 1.5rem;
    }

    .carousel-caption-overlay .btn {
      font-size: 0.9rem;
    }
  }

  #page-loader.fade {
    opacity: 0;
    transition: opacity 0.5s ease;
  }
