/********** Template CSS **********/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

:root {
    --primary: #CDAC44; /* hover tiap card aktiv */
    --light: #F1F8FF;
    --dark:#150F06;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    background-color: #CDAC44 !important; /* Warna latar tombol */
    border-color: #CDAC44 !important; /* Warna border tombol */
}

.back-to-top:hover {
    background-color: #150F06 !important; /* Warna saat tombol di-hover */
    border-color: #CDAC44  !important;
}

/* kontainer background pages */
.container-xxl {
    background-color: #FDF8C4 !important; /* ini bisa gamnti warna lain */
}
.container-fluid {
    background-color: #FDF8C4 !important; /* ini bisa gamnti warna lain */
}
.bg-content{
    background-color: #FDF8C4 !important; /* ini bisa gamnti warna lain */
}

/* Teks-font all */
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #000000;
}

p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color:rgba(25, 25, 25, 1);
}

.text-content {
    color: rgba(25, 25, 25, 1) ;
    /* warna icon arrow back */
}

.text-color {
    color: #FDF8C4 ;
    /* warna icon arrow back */
}



/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
    background-color: var(--primary)!important; /* Warna latar tombol */
    border-color: var(--primary) !important; /* Warna border tombol */
    border-radius: 15px; /* Sudut membulat */
}

/* Hover effect untuk tombol utama */
.btn:hover {
    background-color: var(--dark) !important; /* Warna saat hover (lebih gelap dari #CDAC44) */
    border-color: var(--primary) !important; /* Warna border saat hover */
    color: var(--light) !important; /* Pastikan teks tetap terlihat */
    transform: scale(1.05); /* Efek membesar sedikit */
    box-shadow: 0 4px 12px var(--light); /* Efek bayangan */
    border-radius: 15px; /* Sudut membulat */
}


/* tekn btn */
.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 32px;
    height: 32px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/* ** Navbar ** teks menu-menu navbar */
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 20px; /* ini ukuran font menu navbar */
    text-transform: uppercase;
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}


/*** Header ***/
.bg-dark {
    background-color: #150F06!important; /* Ganti YOUR_COLOR dengan warna yang diinginkan */
}
.navbar-brand h1 {
    color: #CDAC44 !important; /* Ganti dengan warna yang diinginkan */
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #CDAC44 !important; /* Ganti dengan warna yang diinginkan */
}


.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 43, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    color: #CDAC44 !important; /* warna sub judul footer */
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    height: 500px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #FCF4A7;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.portolio-card {
    height: 500px;
    width:max-content;
    padding: 50px;
    margin: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #FCF4A7!important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;   
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: .5s;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: .5s;
}

/* hover teks */
.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #FCF4A7 !important;
}

/* card */
.card{
    background: #FCF4A7;
}

.card-item {
    background: #FCF4A7;
    width: 250px;
}


/*** Testimonial ***/
.testimonial {
    background: var(--dark);/* ,url(../img/carousel-2.jpg) */ /* linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)) */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.image-wrapper {
    background: #fdfdfd;
    height: 200px;
}
.image-wrapper2 .img {
    background: #fdfdfd;
    height: 300px;
    /* height: 150px; */
    /* height: 100px;
    width: 50px; */
}

/* .image-wrapper2 {
    width: 100%;  /* Sesuaikan ukuran yang dibutuhkan */
    /* max-width: 400px; Atur maksimal lebar gambar */
    /* margin: 0 auto; Tengahkan gambar jika diperlukan */
    /* height: 300px; */
/* } */

/* .image-wrapper2 img { */
    /* width: 100%; */
    /* height: auto; Pastikan proporsi gambar tetap */
    /* display: block; */
/* }  */




.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
    
}

.testimonial-carousel .testimonial-item {
    padding: 30px;
}

.portfolio-carousel .portolio-card {
    margin-right: 5px !important; /* Kurangi margin hanya untuk Portfolio */
    margin-left: 5px !important;
}

.portfolio-carousel .card-item {
    padding: 8px; /* Kurangi padding hanya dalam card Portfolio */
}


.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: #FFFFFF;
}


/*** Footer ***/
.contact {
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    margin-top: -110px;
    padding-top: 180px;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.auth-container {
    height: 75vh;
}

.image-container {
    height: 0;
    padding: 56.25% 0 0 0;
    overflow: hidden;
}

.image-container img {
    position: absolute;
    display: block;
    max-width: 100%;
    max-height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}


/* breadcrum-navigasi */
/* Style the list */
ul.breadcrumb {
    padding: 10 16px;
    list-style: none;
    background-color: none;
  }
  
  /* Display list items side by side */
  ul.breadcrumb li {
    display: inline;
    font-size: 18px;
  }
  
  /* Add a slash symbol (/) before/behind each list item */
  ul.breadcrumb li+li:before {
    padding: 8px;
    color:rgb(202, 202, 202);
    content: "/\00a0";
  }
  
  /* Add a color to all links inside the list */
  ul.breadcrumb li a {
    color:rgb(202, 202, 202);
    text-decoration: none;
  }
  
  /* Add a color on mouse-over */
  ul.breadcrumb li a:hover {
    color: #CDAC44 ;
    text-decoration: underline;
  }