@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

:root {
  --primary-font: "Montserrat", serif;

  --hero-title-font: "Exo 2", sans-serif;
  --hero-desc-font: "Plus Jakarta Sans", sans-serif;
}

* {
  font-family: var(--primary-font);
}

body {
  background-color: rgba(233, 233, 233, 1);
}

a {
  text-decoration: none;
}

.cursor-pointer {
  cursor: pointer;
}

.text-justify {
  text-align: justify;
}

.text-green {
  color: rgba(36, 103, 47, 1);
}

.btn-green {
  color: white;
  background-color: rgba(36, 103, 47, 1);
}

.btn-green:hover {
  color: white;
  background-color: rgb(26, 66, 33);
}

.btn-orange {
  color: white;
  background-color: rgba(253, 139, 81, 1) !important;
  font-weight: 600;
}

.btn-orange:hover {
  color: rgba(242, 229, 191, 1);
  background-color: rgba(0, 0, 0, 1);
}

.object-fit-cover {
  object-fit: cover;
}

.fw-500 {
  font-weight: 500;
}

.section {
  padding: 70px 0;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1e1e1e;
  margin-bottom: 12px;
}

.section-title-decoration {
  margin-bottom: 40px;
}

.section-title-decoration div > div {
  background-color: #fd8b51;
  border-radius: 5px;
  height: 5px;
}

.section-title-decoration div > div:nth-of-type(1) {
  width: 10px;
}

.section-title-decoration div > div:nth-of-type(2) {
  width: 20px;
}

.section-title-decoration div > div:nth-of-type(3) {
  width: 40px;
}

.section-title-decoration div > div:nth-of-type(4) {
  width: 80px;
}

.section-img {
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1/1;
  border-radius: 200px;
  object-fit: cover;
  border: 25px solid rgba(255, 255, 255, 1);
}

.line-decoration {
  margin: 15px 0;
}

.line-decoration div > div {
  background-color: rgba(212, 175, 120, 1);
  border-radius: 5px;
  height: 5px;
}

.line-decoration div > div:nth-of-type(1),
.line-decoration div > div:nth-of-type(7) {
  width: 10px;
}

.line-decoration div > div:nth-of-type(2),
.line-decoration div > div:nth-of-type(6) {
  width: 20px;
}

.line-decoration div > div:nth-of-type(3),
.line-decoration div > div:nth-of-type(5) {
  width: 40px;
}

.line-decoration div > div:nth-of-type(4) {
  width: 80px;
}

.card-line-decoration-2{
  position: absolute;
  bottom: 17px;
  left: -5px;
}

.card-line-decoration-2 div > div {
  height: 5px;
  border-radius: 5px;
}

.card-line-decoration-2 div >div:nth-of-type(1) {
  width: 80px;
  background-color: rgba(37, 113, 128, 1);
}

.card-line-decoration-2 div >div:nth-of-type(2) {
  width: 40px;
  background-color: rgba(203, 96, 64, 1);
}

.card-line-decoration-2 div >div:nth-of-type(3) {
  width: 20px;
  background-color:rgba(253, 139, 81, 1);
}

.section-desc {
  font-size: 1rem;
  line-height: 150%;
  color: #1e1e1e;
  margin-bottom: 40px;
}

.page-header {
  padding: 32px 0;
  color: white !important;
  background: linear-gradient(
      rgba(37, 113, 128, 0.75),
      rgba(37, 113, 128, 0.75)
    ),
    url("../images/foto/page-header-bg.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header .breadcrumb .breadcrumb-item a,
.page-header .breadcrumb .breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before {
  color: white;
  text-decoration: none;
  font-weight: 400;
  text-transform: uppercase;
}

.page-header .breadcrumb {
  justify-content: center;
  margin-bottom: 12px;
}

.page-header .breadcrumb .breadcrumb-item.active {
  font-weight: 600;
}

.page-header-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.page-header-desc {
  font-size: 1rem;
}

header {
  background-color: rgba(255, 255, 255, 1);
}

.header-logo {
  width: 75px;
  height: 50px;
  object-fit: contain;
}

header .navbar-brand {
  filter: invert(1);
}

header.home-header .navbar-brand {
  filter: invert(0);
}

.card .card-decoration {
  width: 400px;
  height: 40px;
  position: absolute;
  right: -20px;
  bottom: -22px;
  border-radius: 20px;
  background-color: rgba(37, 113, 128, 1);
}

.card:has(.card-decoration) {
  position: relative;
  overflow: hidden;
}

.card-galeri-decoration {
  width: 100%;
  height: 16px;
  background-color: rgba(212, 175, 120, 1);
  position: absolute;
  bottom: 0;
}

header .nav-item .nav-link {
  position: relative;
  text-transform: uppercase;
  font-weight: bold;
  padding-left: 14px !important;
  padding-right: 14px !important;
}

header .nav-item .nav-link.active {
  color: #24672f;
}

header .nav-item .nav-link.active::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  background-color: #24672f;
  right: 0;
  transform: translateY(-27px);
}

.home-header {
  background-color: #257180;
}

header.home-header .nav-item .nav-link.active {
  color: rgba(253, 139, 81, 1) !important;
}

header.home-header .nav-item .nav-link.active::before {
  background-color: rgba(253, 139, 81, 1) !important;
}

header.home-header .nav-item .nav-link {
  color: white;
}

footer {
  background-color: #257180;
}

.footer-logo {
  width: 75px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 8px;
}

.footer-desc {
  line-height: 170%;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #f2e5bf;
  margin-bottom: 20px;
}

footer .nav-link {
  color: white;
}

.footer-social {
  color: white;
  text-decoration: none;
}

.footer-social .icon {
  font-size: 1.25rem;
  color: #f2e5bf;
}

.secondary-footer {
  background-color: #000000;
  padding: 14px 0;
}

#hero {
  margin-top: -76px;
  height: 100vh;
  background-color: #101a55;
}

.hero-title {
  font-family: var(--hero-title-font);
  color: white;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.hero-desc {
  color: white;
  font-family: var(--hero-desc-font);
  font-size: 1.275rem;
  margin-bottom: 50px;
}

.hero-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 500px;
  height: auto;
  object-fit: contain;
}

#hero .btn {
  color: rgba(9, 63, 73, 1);
  background-color: rgba(212, 175, 120, 1);
  border-radius: 10px;
  font-weight: bold;
  border: none;
}

#hero .btn:hover {
  color: white;
  background-color: rgba(253, 139, 81, 1) !important;
}

.btn-haji {
  color: white;
  font-weight: 600;
  border: 2px solid rgba(242, 229, 191, 1);
}

.btn-haji:hover {
  color: rgba(0, 0, 0, 1);
  background-color: rgba(242, 229, 191, 1);
}

.btn-umrah {
  color: rgba(0, 0, 0, 1);
  font-weight: 600;
  border: 2px solid rgba(203, 96, 64, 1);
}

.btn-umrah:hover {
  color: white;
  background-color: rgba(203, 96, 64, 1);
}

.btn-produk-umroh {
  color: white;
  background-color: rgba(37, 113, 128, 1);
}

.hubungi-kami-section,
.sponsor-section {
  background-color: rgba(255, 255, 255, 1);
}

.hubungi-kami-img {
  position: absolute;
  bottom: 40px;
  right: 20%;
  width: 300px;
  height: auto;
  object-fit: contain;
}

.testimoni-section {
  background-color: rgba(236, 236, 236, 1);
}

.testimoni-card {
  color: white;
  padding: 30px;
}

.testimoni-card:nth-of-type(1) {
  width: 25%;
  background-color: #000000;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.testimoni-card:nth-of-type(2) {
  width: 50%;
  background-color: #cb6040;
}

.testimoni-card:nth-of-type(3) {
  width: 50%;
  background-color: #fd8b51;
}

.testimoni-card:nth-of-type(4) {
  width: 25%;
  background-color: #257180;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.testimoni-text {
  font-weight: 500;
  font-style: italic;
  margin-bottom: 50px;
}

.testimoni-name {
  color: rgba(37, 113, 128, 1);
  font-weight: 700;
  font-style: italic;
}

.testimoni-card-container {
  margin-top: -120px;
}

.testimoni-card-container.profil-page {
  margin-top: 0;
}

.sponsor-logo {
  width: 100%;
  height: 100px;
  object-fit: contain;
  opacity: 0.6;
  transition: all 0.2s;
}
.sponsor-logo:hover {
  opacity: 1;
}

.umrah-icon {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  color: white;
  background-color: rgba(36, 103, 47, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hover-effect-shadow{
  transition: .2s;
}

.hover-effect-shadow:hover{
  transform: translateY(-7px);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}