/* ------------------------------------ */
/* GLOBAL STYLES */
/* ------------------------------------ */

/* panduan warna */

/* .panduan-warna {
  background-color: #e6f1f0; 
  color:#7CB041; 
  color: #006B67; 
  color: #5D8431; 
  color:#C4B631; 
  color:#013331; 
  color:#666666; 
  color:#9B9027; 
  color: #212529; 
  color: #076951; 
  color: #d6b631; 
  color: #0f6c68; 
  color: #d5e8c5; 
  color: #ffffff; 
  color: #ffc107; 
} */

/* Warna dasar latar dan teks seluruh halaman */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #e6f1f0;
  color: #212529; /* Warna teks utama */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Container default dengan padding */
.container {
  max-width: 1004px;
}

/* style.css */
.main-container {
  max-width: 1013px;
  margin: 120px auto 0 auto; /* top, right, bottom, left */
  padding: 0 15px; /* supaya tetap responsif */
}

.container-landing {
  max-width: 1013px;
  margin: 20px auto; /* top, right, bottom, left */
  padding: 0 15px; /*supaya tetap responsif */
}

.hero {
  background-color: white;
  border-radius: 15px;
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero-content {
  flex: 1;
  padding: 20px;
  min-width: 250px;
}

.hero-bg {
  background-color: #d5e8c5;
}

/* DESKTOP */
@media (min-width: 769px) {
  .hero {
    flex-wrap: nowrap;
    flex-direction: row-reverse; /* gambar di kanan */
  }

  .hero img {
    width: 55%;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .hero-content {
    width: 45%;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .hero img {
    width: 100%;
    border-radius: 15px 15px 0 0;
  }

  .hero-content {
    width: 100%;
  }
}
.hero-content {
  font-family: "Roboto", sans-serif;
  color: white;
  background-color: #006b67;
  padding: 30px;
  border-radius: 0 0 0 15px;
  font-weight: 400; /* Pastikan default teks tidak bold */
}

.hero-content em {
  font-style: italic;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
  font-weight: 300; /* juga tidak bold */
}

.hero-content h2 {
  font-size: 28px;
  font-weight: 300; /* hanya ini yang bold */
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 25px;
}

.hero-content .cta-button {
  background-color: #d6b631;
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.container-nav {
  max-width: 1012px;
  margin-top: 15px !important; /* Jarak atas untuk menghindari tumpang tindih dengan navbar */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  padding-left: 1rem;
  padding-right: 1rem;
}
.container-nav-landing {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px;
}

.footer-landing {
  background-color: #e6f1f0;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
  color: #666;
}

/* ------------------------------------ */
/* CUSTOM */
/* ------------------------------------ */
.logo {
  margin-top: 5px;
}

.my-padding {
  padding-top: 35px;
}

.bg-sec-main {
  background-color: #006b67 !important ;
}

.bg-total {
  background-color: #5d8431 !important;
  color: white !important; /* Teks putih */
}

.btn-umra {
  background-color: #006b67 !important; /* Warna hijau */
  color: white !important; /* Teks putih */
}

.btn-umra:hover {
  background-color: #5d8431 !important;
  color: white !important; /* Teks tetap putih */
}

.bg-footer-umra {
  margin-top: 50px;
  padding: 30px 0px;
  background-color: #006b67 !important; /* Warna hijau tua */
  color: white !important; /* Teks putih */
}

.hotel-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.hotel-card .image {
  flex: 1 1 300px;
}

.hotel-card .image img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.hotel-card .info {
  flex: 1 1 300px;
}

/* ------------------------------------ */
/* GLOBAL STYLES */
/* ------------------------------------ */

/* panduan warna */

/* .panduan-warna {
  background-color: #e6f1f0; 
  color:#7CB041; 
  color: #006B67; 
  color: #5D8431; 
  color:#C4B631; 
  color:#013331; 
  color:#666666; 
  color:#9B9027; 
  color: #212529; 
  color: #076951; 
  color: #d6b631; 
  color: #0f6c68; 
  color: #d5e8c5; 
  color: #ffffff; 
  color: #ffc107; 
} */

/* Warna dasar latar dan teks seluruh halaman */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #e6f1f0;
  color: #212529; /* Warna teks utama */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Container default dengan padding */
.container {
  max-width: 1004px;
}

/* style.css */
.main-container {
  max-width: 1013px;
  margin: 120px auto 0 auto; /* top, right, bottom, left */
  padding: 0 15px; /* supaya tetap responsif */
}

.container-landing {
  max-width: 1013px;
  margin: 20px auto; /* top, right, bottom, left */
  padding: 0 15px; /*supaya tetap responsif */
}

.hero {
  background-color: white;
  border-radius: 15px;
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero-content {
  flex: 1;
  padding: 20px;
  min-width: 250px;
}

.hero-bg {
  background-color: #d5e8c5;
}

/* DESKTOP */
@media (min-width: 769px) {
  .hero {
    flex-wrap: nowrap;
    flex-direction: row-reverse; /* gambar di kanan */
  }

  .hero img {
    width: 55%;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .hero-content {
    width: 45%;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .hero img {
    width: 100%;
    border-radius: 15px 15px 0 0;
  }

  .hero-content {
    width: 100%;
  }
}
.hero-content {
  font-family: "Roboto", sans-serif;
  color: white;
  background-color: #006b67;
  padding: 30px;
  border-radius: 0 0 0 15px;
  font-weight: 400; /* Pastikan default teks tidak bold */
}

.hero-content em {
  font-style: italic;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
  font-weight: 300; /* juga tidak bold */
}

.hero-content h2 {
  font-size: 28px;
  font-weight: 300; /* hanya ini yang bold */
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 25px;
}

.hero-content .cta-button {
  background-color: #d6b631;
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.container-nav {
  max-width: 1012px;
  margin-top: 15px !important; /* Jarak atas untuk menghindari tumpang tindih dengan navbar */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  padding-left: 1rem;
  padding-right: 1rem;
}
.container-nav-landing {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px;
}

.footer-landing {
  background-color: #e6f1f0;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
  color: #666;
}

/* ------------------------------------ */
/* CUSTOM */
/* ------------------------------------ */
.logo {
  margin-top: 5px;
}

.my-padding {
  padding-top: 35px;
}

.bg-sec-main {
  background-color: #006b67 !important ;
}

.bg-total {
  background-color: #5d8431 !important;
  color: white !important; /* Teks putih */
}

.btn-umra {
  background-color: #006b67 !important; /* Warna hijau */
  color: white !important; /* Teks putih */
}

.btn-umra:hover {
  background-color: #5d8431 !important;
  color: white !important; /* Teks tetap putih */
}

.bg-footer-umra {
  margin-top: 50px;
  padding: 30px 0px;
  background-color: #006b67 !important; /* Warna hijau tua */
  color: white !important; /* Teks putih */
}

.hotel-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.hotel-card .image {
  flex: 1 1 300px;
}

.hotel-card .image img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.hotel-card .info {
  flex: 1 1 300px;
}

.table-responsive {
  overflow-x: auto;
  white-space: nowrap;
  max-width: 100%; /* agar tidak melebar ke luar container */
}

.table-responsive table {
  width: 100%;
  min-width: 990px; /* agar scroll muncul di layar sempit */
  border-collapse: collapse;
}

.table-responsive th,
.table-responsive td {
  padding: 8px;
  border: 1px solid #ccc;
  text-align: left;
  vertical-align: middle;
}

.table-responsive th {
  background-color: ##f8f9fa;
}

/* Custom container to limit width */
.container-dashboard {
  max-width: 1030px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 50px;
}

/* ------------------------------------ */
/* NAVBAR */
/* ------------------------------------ */

.navbar-umra {
  background-color: #e6f1f0 !important;
  box-shadow: none !important;
  border-bottom: none !important;
}

/* Navbar links agar pasti putih */
.navbar-umra .nav-link {
  color: #076951 !important;
}

/* nav bar halaman index */
.navbar-landing {
  background-color: #e6f1f0;
}
.navbar-landing .nav-link {
  color: #076951 !important;
}

.container-nav-landing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: relative;
}

.navbar-landing .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar-landing .menu {
  display: flex;
  gap: 15px;
}

.navbar-landing .menu a {
  color: #076951;
  text-decoration: none;
  padding: 6px 3px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.navbar-landing .menu a:hover {
  background-color: rgba(110, 44, 44, 0.2);
}

.navbar-landing .menu a.simulasi {
  background-color: #d6b631;
  border-radius: 10px;
  padding: 6px 20px;
}
.navbar-landing .menu a.simulasi:hover {
  background-color: #9c840f; /* versi lebih gelap dari #d6b631 */
  color: #ffffff !important; /* Teks putih saat hover */
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar-landing .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #eeeeee;
    padding: 10px;
    border-radius: 10px;
    z-index: 99;
  }

  .navbar-landing .menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    color: #000000;
  }
}

/* end navbar halaman index */

/* ------------------------------------ */
/* KARTU & SECTION */
/* ------------------------------------ */

/* Gaya kartu utama (card) */
.card {
  background-color: #ffffff; /* Latar kartu putih */
  border: 1px solid #ddd; /* Garis abu lembut */
  border-radius: 0.5rem; /* Sudut membulat */
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); /* Bayangan ringan */
}

/* Header dalam kartu, biasa dipakai untuk judul section */
.card-header {
  background-color: #ffc107; /* Warna kuning khas Bootstrap warning */
  color: #212529; /* Teks gelap agar kontras */
  font-weight: 600;
}

/* Isi dari kartu */
.card-body {
  padding: 1.5rem; /* Spasi dalam card */
}

/* ------------------------------------ */
/* TOMBOL */
/* ------------------------------------ */

/* Tombol utama dengan warna biru Bootstrap */
.btn-primary {
  background-color: #007bff; /* Warna biru */
  border-color: #007bff;
  color: #fff; /* Teks putih */
}

/* Hover untuk tombol utama */
.btn-primary:hover {
  background-color: #0056b3; /* Biru lebih gelap saat hover */
  border-color: #004085;
}

/* Tombol besar di bagian akhir halaman */
.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
}

/* ------------------------------------ */
/* LIST GROUP (untuk menampilkan data dalam ul/li) */
/* ------------------------------------ */

/* Setiap item list dalam group */
.list-group-item {
  background-color: #fff; /* Latar putih */
  border: 1px solid #dee2e6; /* Border abu terang */
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ------------------------------------ */
/* TABEL */
/* ------------------------------------ */

/* Table default */
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  table-layout: fixed; /* tambahkan ini */
}

/* Header table untuk highlight */
.table thead,
th,
td {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: #f1f1f1; /* Abu-abu terang untuk header */
}

/* ------------------------------------ */
/* WARNA TAMBAHAN UNTUK TABEL */
/* ------------------------------------ */

/* Highlight baris total harga */
.table-success {
  background-color: #d4edda; /* Hijau muda */
}

/* Highlight baris harga per jamaah */
.table-primary {
  background-color: #cce5ff; /* Biru muda */
  font-weight: bold;
}


/* Custom container to limit width */
.container-dashboard {
  max-width: 1030px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 50px;
}

/* ------------------------------------ */
/* NAVBAR */
/* ------------------------------------ */

.navbar-umra {
  background-color: #e6f1f0 !important;
  box-shadow: none !important;
  border-bottom: none !important;
}

/* Navbar links agar pasti putih */
.navbar-umra .nav-link {
  color: #076951 !important;
}

/* nav bar halaman index */
.navbar-landing {
  background-color: #e6f1f0;
}
.navbar-landing .nav-link {
  color: #076951 !important;
}

.container-nav-landing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: relative;
}

.navbar-landing .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar-landing .menu {
  display: flex;
  gap: 15px;
}

.navbar-landing .menu a {
  color: #076951;
  text-decoration: none;
  padding: 6px 3px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.navbar-landing .menu a:hover {
  background-color: rgba(110, 44, 44, 0.2);
}

.navbar-landing .menu a.simulasi {
  background-color: #d6b631;
  border-radius: 10px;
  padding: 6px 20px;
}
.navbar-landing .menu a.simulasi:hover {
  background-color: #9c840f; /* versi lebih gelap dari #d6b631 */
  color: #ffffff !important; /* Teks putih saat hover */
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar-landing .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #eeeeee;
    padding: 10px;
    border-radius: 10px;
    z-index: 99;
  }

  .navbar-landing .menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    color: #000000;
  }
}

/* end navbar halaman index */

/* ------------------------------------ */
/* KARTU & SECTION */
/* ------------------------------------ */

/* Gaya kartu utama (card) */
.card {
  background-color: #ffffff; /* Latar kartu putih */
  border: 1px solid #ddd; /* Garis abu lembut */
  border-radius: 0.5rem; /* Sudut membulat */
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); /* Bayangan ringan */
}

/* Header dalam kartu, biasa dipakai untuk judul section */
.card-header {
  background-color: #ffc107; /* Warna kuning khas Bootstrap warning */
  color: #212529; /* Teks gelap agar kontras */
  font-weight: 600;
}

/* Isi dari kartu */
.card-body {
  padding: 1.5rem; /* Spasi dalam card */
}

/* ------------------------------------ */
/* TOMBOL */
/* ------------------------------------ */

/* Tombol utama dengan warna biru Bootstrap */
.btn-primary {
  background-color: #007bff; /* Warna biru */
  border-color: #007bff;
  color: #fff; /* Teks putih */
}

/* Hover untuk tombol utama */
.btn-primary:hover {
  background-color: #0056b3; /* Biru lebih gelap saat hover */
  border-color: #004085;
}

/* Tombol besar di bagian akhir halaman */
.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
}

/* ------------------------------------ */
/* LIST GROUP (untuk menampilkan data dalam ul/li) */
/* ------------------------------------ */

/* Setiap item list dalam group */
.list-group-item {
  background-color: #fff; /* Latar putih */
  border: 1px solid #dee2e6; /* Border abu terang */
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ------------------------------------ */
/* TABEL */
/* ------------------------------------ */

/* Table default */
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  table-layout: fixed; /* tambahkan ini */
}

/* Header table untuk highlight */
.table thead,
th,
td {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: #f1f1f1; /* Abu-abu terang untuk header */
}

/* ------------------------------------ */
/* WARNA TAMBAHAN UNTUK TABEL */
/* ------------------------------------ */

/* Highlight baris total harga */
.table-success {
  background-color: #d4edda; /* Hijau muda */
}

/* Highlight baris harga per jamaah */
.table-primary {
  background-color: #cce5ff; /* Biru muda */
  font-weight: bold;
}
