/* IMPORT FONT (elegan & luxury feel) */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --primary: #0a0a0a;
    --blue: #2c5f82;
    --gold: #c6a96b;
    --cream: #d4bd91;
    --light: #f8f8f8;
    --text: #222;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Times New Roman', sans-serif;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
}

.btn {
    border-radius: 0;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-primary {
    color: #fff !important;
    border: 1px solid #fff !important;
}

.btn-outline-primary:active,
.btn-outline-primary:hover {
    background: #2c5f82cc !important;
    color: #fff !important;
}

.btn-primary {
    background: var(--blue) !important;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: var(--blue) !important;
    color: #fff;
}

.truncate {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



/* NAVI */
.navi {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;

    background: rgba(44, 95, 130, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navi .brand {
    position: relative;
    align-self: self-start;
}

.navi .brand img {
    position: absolute;
    top: 0;
    left: 25px;
    width: 70px;
}

.navi .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navi .menu .link {
    display: block;
    padding: 20px 25px;
    color: var(--light);
}

.navi .menu .dd {
    position: relative;
}

.navi .menu .dd-toggle {
    color: var(--light);
}

.navi .menu .dd-toggle .bi {
    font-size: 10px;
}

.navi .menu .dd-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #2c5f82cc;
    display: none;
}

.navi .menu .dd.active .dd-menu {
    display: block;
}

.navi .menu .dd-menu .link {
    display: block;
    padding: 10px 25px;
    color: var(--light);
    border-bottom: 1px solid #ffffff36;
}

.navi .menu .dd-menu .link:last-child {
    border-bottom: none;
}

.navi .icon-toggle {
    font-size: 24px;
    color: var(--light);
    padding: 10px 16px;
    display: none;
    cursor: pointer;
}

@media(max-width:678px) {

    .navi {
        position: sticky;
        top: 0;
        left: 0;
    }

    .navi .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100vh;
        background: #2c5f82;
        display: block;
        padding-top: 10px;
        transition: .5s ease;
    }

    .navi .menu.slide {
        left: 0;
    }

    .navi .menu .link {
        display: block;
        padding: 10px 25px;
        color: var(--light);
    }

    .navi .menu .dd-menu {
        position: relative;
        min-width: 200px;
        background: #2c5f82cc;
    }

    .navi .icon-toggle {
        display: block;
    }
}



/* CAROUSEL */

.carousel-item {
    height: 100vh;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.carousel-caption {
    bottom: 10%;
}

@media(max-width:678px) {

    .carousel-item {
        height: 70vh;
    }

    .carousel-caption a {
        font-size: 20px;
    }
}

/* SECTION 1 */
.section-1 {
    background: var(--blue);
    text-align: center;
    color: var(--light);
    font-style: italic;
    padding: 60px 15px;
}

@media(max-width:678px) {}



/* SECTION 2 */
.section-2 .wrap {
    height: 78vh;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

@media(max-width:678px) {

    .section-2 .wrap {
        height: 60vh;
    }
}



/* SECTION 3 */
.section-3 {
    text-align: center;
    padding: 80px 20px;
}

@media(max-width:678px) {}



/* SECTION 4 */
.section-4 .wrap {
    height: 49vh;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

@media(max-width:678px) {

    .section-4 .wrap {
        height: 40vh;
    }
}



/* SECTION 5 */
.section-5 .wrap {
    display: flex;
    align-items: center;
    background: var(--cream);
}

.section-5 .wrap img {
    width: 100px;
}

.section-5 .wrap h6 {
    color: var(--light);
    font-size: 22px;
    line-height: 2.5rem;
}


@media(max-width:678px) {

    .section-5 .wrap h6 {
        font-size: 16px;
        line-height: 1.5rem;
    }
}



/* TESTIMONI SECTION 6 */
.section-6 {
    padding: 60px 0;
}

.section-6 .bg-light {
    background: #fafafa !important;
    border-left: 3px solid var(--cream);
}



/* EVENT SECTION-7 */
.section-7 {
    padding: 60px 0;
}

.section-7 .item {
    padding: 40px 20px;
    text-align: center;
    background: #fff;
    color: var(--cream);
    transition: all 0.3s ease;
    border: 1px solid var(--cream);
}

.section-7 .item:hover {
    background: var(--cream);
    color: #fff;
}

.section-7 .bi {
    font-size: 28px;
    margin-bottom: 10px;
}

.section-7 .wrap {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.section-7 .wrap .item {
    min-width: 220px;
}

@media(max-width: 678px) {

    .section-7 .wrap {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
        gap: 25px;
    }

    .section-7 .wrap .item {
        min-width: 200px;
    }
}



/* EVENT SECTION 8 */
.section-8 {
    padding-bottom: 60px;
}

.section-8 .wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.section-8 .item {
    overflow: hidden;
}

.section-8 .item h6 {
    background: var(--cream);
    color: var(--light);
}



/* ABOUT SECTION 9 */
.section-9 {
    padding-bottom: 60PX;
}

.section-9 .wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.section-9 p {
    font-size: 15px;
    color: #555;
}

@media (max-width: 768px) {

    .section-9 .wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}



/* VENUE SECTION 10 */
.section-10 .item {
    background: #fff;
    border: none;
}

.section-10 .body {
    padding: 20px;
}

.section-10 .wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}


/* ENTERPRISE */
.section-11 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}



/* INSTAGRAM */
.instagram .wrap {
    display: flex;
    height: 40vh;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

@media(max-width:678px) {
    
    .instagram .wrap {
        height: 35vh;
    }   
    
}


/* CONTACT */
.contact .wrap {
    display: grid;
    grid-template-columns: 1fr 2fr 1.7fr;
}

.contact .wrap p a {
    color: #000;
}

@media(max-width:678px) {

    .contact .wrap {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }
}



/* FOOTER */
.footer {
    background: var(--blue);
    color: #aaa;
    padding: 60px 0;
    padding-bottom: 44px;
    margin-top: 100px;
}

.footer .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr 1fr;
}

.footer .wrap .item h5,
.footer .wrap .item p,
.footer .wrap .item a {
    color: var(--light);
}

.footer img {
    width: 90px;
}

.copyright {
    background: var(--blue);
    color: var(--light);
}

@media (max-width: 768px) {

    .footer .wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}





/* MODAL */
#modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

#modal img {
    max-width: 100%;
    max-height: 80%;
}

#close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.preview {
    cursor: pointer;
}





/* ============================ */
/* PAGES DETAIL */
/* ============================ */

/* NAVI */
.detail .navi {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;

    background: rgba(44, 95, 130, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail .navi .brand {
    position: relative;
    align-self: self-start;
}

.detail .navi .brand img {
    position: absolute;
    top: 0;
    left: 25px;
    width: 70px;
}

.detail .navi .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail .navi .menu .link {
    display: block;
    padding: 20px 25px;
    color: var(--light);
}

.detail .navi .menu .dd {
    position: relative;
}

.detail .navi .menu .dd-toggle {
    color: var(--light);
}

.detail .navi .menu .dd-toggle .bi {
    font-size: 10px;
}

.detail .navi .menu .dd-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #2c5f82cc;
    display: none;
}

.detail .navi .menu .dd.active .dd-menu {
    display: block;
}

.detail .navi .menu .dd-menu .link {
    display: block;
    padding: 10px 25px;
    color: var(--light);
    border-bottom: 1px solid #ffffff36;
}

.detail .navi .menu .dd-menu .link:last-child {
    border-bottom: none;
}

.detail .navi .icon-toggle {
    font-size: 24px;
    color: var(--light);
    padding: 10px 16px;
    display: none;
    cursor: pointer;
}

@media(max-width:678px) {

    .detail .navi {
        position: sticky;
        top: 0;
        left: 0;
    }

    .detail .navi .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100vh;
        background: #2c5f82;
        display: block;
        padding-top: 10px;
    }

    .detail .navi .menu.slide {
        left: 0;
    }

    .detail .navi .menu .link {
        display: block;
        padding: 10px 25px;
        color: var(--light);
    }

    .detail .navi .menu .dd-menu {
        position: relative;
        min-width: 200px;
        background: #2c5f82cc;
    }

    .detail .navi .icon-toggle {
        display: block;
    }
}


/* ABOUT */
.about-detail .wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr 1fr;
    gap: 30px;
}

.about-detail .wrap p {
    font-size: 12px;
}

@media(max-width:678px) {

    .about-detail .wrap {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-detail .wrap p {
        font-size: 14px;
    }
}

/* ENTERPRISE */
.enterprise-detail .wrap {
    display: flex;
    height: 40vh;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}


/* ENTERPRISE */
.event-images .wrap {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.event-images .wrap-1,
.event-images .wrap-2,
.event-images .wrap-3 {
    height: 40vh;
}

.event-images .wrap-4 {
    height: 90vh;
}



/* MAWAR */
.mawar-detail .d-flex {
    gap: 12px;
    height: 270px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}



/* MELATI */
.melati-detail .d-flex {
    gap: 12px;
    height: 270px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}



/* SOKA */
.soka-detail .wrap-one {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
}

.soka-detail .d-flex {
    gap: 12px;
    height: 50vh;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.soka-detail .wrap-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}


@media(max-width:678px) {

    .soka-detail .wrap-one {
        grid-template-columns: 1fr;
    }

    .soka-detail .wrap-two {
        grid-template-columns: 1fr;
    }

}


/* MEETING */
.meeting-detail .wrap-one {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
}

.meeting-detail .wrap-two {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
}

.meeting-detail .wrap-one .d-flex {
    gap: 12px;
    height: 40vh;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.meeting-detail .wrap-two .d-flex {
    gap: 12px;
    height: 40vh;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}


@media(max-width:678px) {

    .meeting-detail .wrap-one {
        grid-template-columns: 1fr;
    }

    .meeting-detail .wrap-two {
        grid-template-columns: 1fr;
    }
}