/********** Template CSS **********/
:root {
    --primary: #FE5D37;
    --light: #ffffff;
    --dark: #103741;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    background-color: #ecb80d;
    color: white;
}


/*** 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;
    transition: .5s;
}

.contact-btn {
    background-color: #ecb80d;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px; /* Atur tinggi elemen */
    width: 130px; /* Atur lebar elemen */
    border-radius: 25px; /* Opsional: Membuat sudut sedikit melengkung */
    text-align: center; /* Memastikan teks dalam elemen tetap terpusat */
}

.contact-btn p {
    color: white;
    margin: 0; /* Hilangkan margin bawaan elemen <p> */
    font-size: 13px; /* Opsional: Atur ukuran font */
    font-weight: 300; /* Opsional: Menebalkan teks */
    letter-spacing: 1px;
}

.next-btn {
    background-color: #ecb80d;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px; /* Atur tinggi elemen */
    width: 130px; /* Atur lebar elemen */
    border-radius: 25px; /* Opsional: Membuat sudut sedikit melengkung */
    text-align: center; /* Memastikan teks dalam elemen tetap terpusat */
}

.next-btn p {
    color: white;
    margin: 0; /* Hilangkan margin bawaan elemen <p> */
    font-size: 13px; /* Opsional: Atur ukuran font */
    font-weight: 300; /* Opsional: Menebalkan teks */
    letter-spacing: 1px;
}

.catering-btn {
    background-color: #ecb80d;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px; /* Atur tinggi elemen */
    width: 130px; /* Atur lebar elemen */
     /* Opsional: Membuat sudut sedikit melengkung */
    text-align: center; /* Memastikan teks dalam elemen tetap terpusat */
}

.catering-btn p {
    color: white;
    margin: 0; /* Hilangkan margin bawaan elemen <p> */
    font-size: 13px; /* Opsional: Atur ukuran font */
    font-weight: 300; /* Opsional: Menebalkan teks */
    letter-spacing: 1px;
}


.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Heading ***/
h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: 'Lobster Two', cursive;
    font-weight: 700;
}

.navbar-brand {
    display: block;
    text-align: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 40px;
    height: 50px;
    margin-right: 2px;
    margin-top: 1px;
}

.logo-title {
    font-family: "Roboto", serif;
    margin-top: 3px !important;
    font-size: 12px;
    color: black !important;
    font-weight: 500;
    letter-spacing: 3px;
}
.sec-logo-title {
    margin-top: -8px;
    font-family: "Roboto", serif;
    margin-right: 3px;
    font-size: 7px;
    color: black !important;
    font-weight: 500;
    margin-bottom: 0px;
}


h5,
h6,
.h5,
.h6 {
    font-weight: 600;
}

.font-secondary {
    font-family: 'Lobster Two', cursive;
}


/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    padding: 30px 15px;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color:rgb(240, 181, 4);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: calc(100% - 15px);
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
/* .header-carousel::before,
.header-carousel::after,
.page-header::before,
.page-header::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    background: url(../img/bg-header-top.png) center center repeat-x;
    z-index: 1;
} */

.header-carousel::after,
.page-header::after {
    height: 19px;
    top: auto;
    bottom: 0;
    background: url(../img/bg-header-bottom.png) center center repeat-x;
}

.logo img {
    width: 50px !important;
    height: 50px !important;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Facility ***/

.facility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 260px; /* Batas lebar sesuai dengan gambar */
    margin: 0 auto;
}

.facility-item .facility-icon img {
    position: relative;
    margin: 0 auto;
    max-width: 260px;
    height: auto;
    /* border-radius: 100px; */
    /* display: flex; */
    display: block;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}

.facility-item .facility-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background: rgba(255, 255, 255, .9); */
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-text {
    position: relative;
    min-height: 150px;
    /* padding: 30px; */
    /* border-radius: 100%; */
    display: flex;
    text-align: left;
    justify-content: left;
    flex-direction: column;
    width: 100%;
    padding: 5px;
}

.facility-item .facility-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    word-wrap: break-word; /* Untuk memecah kata panjang */
}

.facility-item .facility-text p {
    font-size: 13px;
    line-height: 1.5;
    word-wrap: break-word;
    margin: 0;
}

.facility-item .facility-text * {
    position: relative;
    z-index: 2;
}

.facility-item * {
    transition: .5s;
}

.facility-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px; /* Jarak antar elemen */
    justify-content: center;
}

.facility-row .col-lg-3, .facility-row .col-sm-6 {
    flex: 1 1 calc(25% - 16px); /* 4 kolom di layar besar */
    max-width: calc(25% - 16px);
}

@media (max-width: 1200px) {
    .facility-row .col-lg-3, .facility-row .col-sm-6 {
        flex: 1 1 calc(50% - 16px); /* 2 kolom di layar sedang */
        max-width: calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    .facility-row .col-lg-3, .facility-row .col-sm-6 {
        flex: 1 1 100%; /* 1 kolom di layar kecil */
        max-width: 100%;
    }
}



/*** About ***/
.about-img img {
    transition: .5s;
}

.about-img img:hover {
    background: var(--primary) !important;
}


/*** Classes ***/
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}

.catering-bg {
    background-color: #fff4aa !important;
    border-radius: 10px;
}

.wedding-list {
    background-color: #f0eee3 !important;
    border-radius: 0px !important;
    max-height: 300px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease-in-out, padding 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 1;
    padding-bottom: 30px;
}

.wedding-list.expanded {
    max-height: 1000px;
    padding-bottom: 50px;
}

.show-more {
    background: rgba(0, 0, 0, 0.2);
    color: white;
    text-align: center;
    padding: 5px;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    transition: background 0.2s ease-in-out;
}

.show-more:hover {
    background: rgba(0, 0, 0, 0.3);
}


.wedding-list-title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.wedding-list h4 {
    margin-left: 13px;
    margin-top: 15px;
    color: #7f0202;
    font-size: 15px;
    font-family: "Roboto", serif;
    font-weight: 400;
    letter-spacing: 1px;
}

.wedding-list h5 {
    font-family: "Roboto", serif;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 11px;
    padding: 10px;
    margin-bottom: 0;
}

.sub-title {
    background-color: #ffffff;
    max-width: 250px;
    border-radius: 0px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
    
}

.wedding-list-images img {
    margin: 0;
    height: auto;
    border-radius: 0px !important;
}

.wedding-package {
    margin-left: -30px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.wedding-package i {
    font-size: 20px; 
    margin: 0;
}

.wedding-package p {
    margin: 0;
    font-size: 16px; 
}

.wedding-package-list li {
    font-size: 13px;
    margin-left: 15px;
}

/*** Team ***/
.team-item .team-text {
    position: absolute; 
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #FFFFFF;
    border: 17px solid var(--light);
    border-radius: 250px;
    transition: .5s;
}

.team-item:hover .team-text {
    border-color: var(--primary);
}



/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-item {
    background-color: #fff4aa4b;
}

.testimonial-item i{
    color: #ecb80d;
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: #ecb80d;
    border-radius: 45px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 45px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 16px;
    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 {
    color: #ecb80d !important;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--primary) !important;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* catering-menu */
.catering-menu h4 {
    color: #cc0000;
    font-size: 15px;
}

.catering-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 260px; /* Batas lebar sesuai dengan gambar */
    height: auto;
    margin: 20px auto; /* Menambahkan margin agar tidak terlalu rapat */
    padding: 20px; /* Memberikan jarak di dalam card */
    background-color: #fff; /* Warna latar belakang card */
    border: 1px solid #ddd; /* Garis tipis di sekitar card */
    /* border-radius: 10px;  */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Efek transisi ketika card dihover */
}
    
.catering-menu-item .catering-menu-icon img {
    position: relative;
    margin: 0 auto;
    max-width: 220px;
    /* border-radius: 100px; */
    /* display: flex; */
    display: block;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.catering-menu-item .catering-menu-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    /* height: 100%; */
    top: 0;
    left: 0;
    /* background: rgba(255, 255, 255, .9); */
    transition: .5s;
    z-index: 1;
}

.catering-menu-item .catering-menu-text {
    position: relative;
    min-height: 150px;
    /* padding: 30px; */
    /* border-radius: 100%; */
    display: flex;
    text-align: left;
    justify-content: left;
    flex-direction: column;
    width: 100%;
    padding: 10px;
}

.catering-menu-item .catering-menu-text::before {
    position: absolute;
    content: "";
    width: 100%;
    /* height: 100%; */
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.catering-menu-item .catering-menu-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    word-wrap: break-word; /* Untuk memecah kata panjang */
}

.catering-menu-item .catering-menu-text p {
    font-size: 13px;
    line-height: 1.5;
    word-wrap: break-word;
    margin: 0;
}

.catering-menu-item .catering-menu-text * {
    position: relative;
    z-index: 2;
}

.catering-menu-item * {
    transition: .5s;
}

.catering-menu-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px; /* Jarak antar elemen */
    justify-content: center;
}

.catering-menu-row .col-lg-3, .catering-menu-row .col-sm-6 {
    flex: 1 1 calc(25% - 16px); /* 4 kolom di layar besar */
    max-width: calc(25% - 16px);
}

@media (max-width: 1200px) {
    .catering-menu-row .col-lg-3, .catering-menu-row .col-sm-6 {
        flex: 1 1 calc(50% - 16px); /* 2 kolom di layar sedang */
        max-width: calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    .catering-menu-row .col-lg-3, .catering-menu-row .col-sm-6 {
        flex: 1 1 100%; /* 1 kolom di layar kecil */
        max-width: 100%;
    }
}

/* Menambahkan kelas untuk mengatur bullet list agar berada di tengah */
.list-center {
    text-align: center;
    list-style-position: inside; /* Menempatkan bullet di dalam */
    padding-left: 0;
}

.list-center li {
    margin-bottom: 5px; /* Jarak antar item */
}

.contact-info i{
    color: #ecb80d;
}

.rules-value {
    padding-inline: 30px;
}

.rules i {
    background-color: #ecb80d;
    color: white;
    padding-inline: 15px;
    padding-block: 10px;
}


.rules h4 {
    margin-top: -10px;
}

.invisible {
    user-select: none; 
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.invisible p {
    display: none;
}


