/* Start custom CSS for html, class: .elementor-element-ee47349 *//* ===============================
   MOBILE
================================= */
@media (max-width:768px){

.hero{
    min-height:100vh;
    padding-bottom:230px;
}

.navbar{
    padding:15px 20px;
}

.logo img{
    width:75px;
}

.hero-content{
    padding:20px;
}

.welcome{
    font-size:24px;
}

.title{
    font-size:42px;
    line-height:1.05;
}

.subtitle{
    font-size:22px;
}

.location{
    font-size:13px;
    letter-spacing:4px;
}

.desc{
    font-size:14px;
    line-height:1.6;
    max-width:300px;
    margin:auto;
}

.buttons{
    flex-direction:column;
    align-items:center;
    gap:12px;
}

.btn{
    width:270px;
    justify-content:center;
}

.features{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    padding:20px 15px;
}

.feature i{
    font-size:24px;
}

.feature h4{
    font-size:12px;
}

.feature p{
    display:block;
    font-size:10px;
}

}

/* ===============================
   HERO EFFECT
================================= */

.hero{
    overflow:hidden;
    animation:heroZoom 18s ease-in-out infinite alternate;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        120deg,
        rgba(255,255,255,.05),
        rgba(255,255,255,.12),
        rgba(255,255,255,.05)
    );
    animation:glassMove 8s linear infinite;
    pointer-events:none;
}

/* ===============================
   LOGO
================================= */

.logo img{
    width:80px;
    height:auto;
    display:block;
    animation:floatLogo 4s ease-in-out infinite;
}

/* ===============================
   TEXT ANIMATION
================================= */

.welcome,
.title,
.subtitle,
.location,
.desc{
    opacity:0;
    animation:fadeUp .9s forwards;
}

.title{
    animation-delay:.2s;
}

.subtitle{
    animation-delay:.4s;
}

.location{
    animation-delay:.6s;
}

.desc{
    animation-delay:.8s;
}

/* ===============================
   BUTTON
================================= */

.btn{
    position:relative;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.btn:hover{

    transform:translateY(-5px) scale(1.04);

    box-shadow:0 20px 35px rgba(0,0,0,.35);

}

.btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:70%;

    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.6),
        transparent
    );

}

.btn:hover::before{

    animation:shine .8s;

}

/* ===============================
   WHATSAPP BUTTON
================================= */

.btn-wa{

    animation:wave 2.5s infinite;

}

/* ===============================
   VIDEO BUTTON
================================= */

.btn-video{
    background:#ffffff;
    color:#0b4b8f;
}

.btn-video:hover{
    background:#0b4b8f;
    color:#fff;
}

/* ===============================
   FEATURES
================================= */

.feature{

    padding:10px;

    border-radius:18px;

    transition:.35s;

}

.feature:hover{

    background:#f7fbff;

    transform:translateY(-8px);

    box-shadow:0 15px 30px rgba(11,75,143,.15);

}

.feature i{

    animation:pulse 2.5s infinite;

}

/* ===============================
   VIDEO POPUP
================================= */

.video-modal{

    position:fixed;

    inset:0;

    display:none;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.85);

    backdrop-filter:blur(8px);

    z-index:9999;

    padding:20px;

}

.video-modal.active{

    display:flex;

    animation:fadeVideo .3s;

}

.video-content{

    width:100%;

    max-width:430px;

    position:relative;

    animation:popVideo .45s cubic-bezier(.175,.885,.32,1.3);

}

.video-content video,
.video-content iframe{

    width:100%;

    display:block;

    border-radius:18px;

    background:#000;

}

.close-video{

    position:absolute;

    top:-45px;

    right:0;

    font-size:32px;

    color:#fff;

    cursor:pointer;

    transition:.3s;

}

.close-video:hover{

    transform:rotate(90deg);

}

/* ===============================
   HERO EFFECT (FIXED)
================================= */

.hero{
    position:relative;
    overflow:hidden;

    /* menjaga foto tetap tajam */
    background-size:cover !important;
    background-position:center center !important;
    background-repeat:no-repeat !important;

    /* optimasi rendering */
    transform:translateZ(0);
    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        120deg,
        rgba(255,255,255,.02),
        rgba(255,255,255,.08),
        rgba(255,255,255,.02)
    );

    pointer-events:none;

    animation:glassMove 8s linear infinite;
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.08),
        rgba(0,0,0,.18)
    );

    pointer-events:none;
}

@keyframes floatLogo{

0%,100%{
    transform:translateY(0);
}

50%{
    transform:translateY(-8px);
}

}

@keyframes fadeUp{

from{
    opacity:0;
    transform:translateY(30px);
}

to{
    opacity:1;
    transform:translateY(0);
}

}

@keyframes pulse{

0%,100%{
    transform:scale(1);
}

50%{
    transform:scale(1.15);
}

}

@keyframes shine{

to{
    left:140%;
}

}

@keyframes glassMove{

from{
    transform:translateX(-100%);
}

to{
    transform:translateX(100%);
}

}

@keyframes wave{

0%{
    box-shadow:0 0 0 0 rgba(37,211,102,.6);
}

70%{
    box-shadow:0 0 0 18px rgba(37,211,102,0);
}

100%{
    box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}

@keyframes fadeVideo{

from{
    opacity:0;
}

to{
    opacity:1;
}

}

@keyframes popVideo{

from{
    opacity:0;
    transform:scale(.7) rotate(-5deg);
}

to{
    opacity:1;
    transform:scale(1) rotate(0);
}

}

/* VIDEO POPUP */

.btn-video{
    background:#ff0000;
    color:#fff;
}

.video-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.85);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
    padding:20px;
}

.video-modal.active{
    display:flex;
}

.video-content{
    width:100%;
    max-width:420px;
    position:relative;
}

.video-content iframe{
    width:100%;
    aspect-ratio:9/16;
    border:none;
    border-radius:18px;
    display:block;
}

.close-video{
    position:absolute;
    top:-42px;
    right:0;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8ad3f53 *//* ===============================
   ABOUT SECTION
================================= */

.about-section{
    max-width:1200px;
    margin:0 auto;
    padding:60px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    background:linear-gradient(135deg,#ffffff,#f5f7fb);
    overflow:hidden;
    position:relative;
}

/* Cahaya bergerak */

.about-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );
    transform:translateX(-100%);
    animation:aboutLight 8s linear infinite;
    pointer-events:none;
}

.about-content{
    flex:1;
    max-width:520px;
    animation:fadeLeft 1s ease;
}

.about-label{
    display:block;
    color:#0b3b78;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:8px;
    letter-spacing:2px;
}

.about-content h2{
    margin:0;
    color:#0b3b78;
    font-size:58px;
    font-weight:800;
    line-height:.95;
}

.about-content h2 span{
    display:block;
    font-family:'Allura',cursive;
    font-size:52px;
    color:#2f7fd9;
    font-weight:400;
    margin-top:5px;
    line-height:1;
}

.about-content p{
    margin-top:20px;
    color:#333;
    font-size:16px;
    line-height:1.8;
}

/* Tombol */

.about-btn{
    display:inline-block;
    margin-top:20px;
    padding:14px 28px;
    background:#0b3b78;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    font-weight:600;
    font-size:14px;
    position:relative;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 10px 25px rgba(11,59,120,.25);
}

.about-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(11,59,120,.35);
}

.about-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.6),
        transparent
    );
}

.about-btn:hover::before{
    animation:shine .8s;
}

/* Gambar */

.about-image{
    flex:1;
    animation:fadeRight 1s ease;
}

.about-image img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:22px;
    display:block;
    box-shadow:0 20px 45px rgba(0,0,0,.18);
    transition:.5s;
    animation:floatImage 5s ease-in-out infinite;
}

.about-image img:hover{
    transform:scale(1.05) rotate(-1deg);
    box-shadow:0 30px 60px rgba(0,0,0,.25);
}

/* ===============================
   MOBILE
================================= */

@media(max-width:768px){

.about-section{
    display:flex;
    flex-direction:row;
    align-items:flex-start;
    gap:15px;
    padding:25px 15px;
}

.about-content{
    width:52%;
    max-width:none;
}

.about-image{
    width:48%;
    flex:none;
}

.about-label{
    font-size:11px;
    margin-bottom:4px;
}

.about-content h2{
    font-size:34px;
}

.about-content h2 span{
    font-size:30px;
}

.about-content p{
    font-size:12px;
    margin-top:10px;
}

.about-btn{
    margin-top:15px;
    padding:10px 18px;
    font-size:12px;
}

.about-image img{
    height:220px;
}

}

/* HP Kecil */

@media(max-width:480px){

.about-content h2{
    font-size:28px;
}

.about-content h2 span{
    font-size:24px;
}

.about-content p{
    font-size:11px;
}

.about-image img{
    height:190px;
}

}

/* ===============================
   ANIMATION
================================= */

@keyframes fadeLeft{

from{
    opacity:0;
    transform:translateX(-60px);
}

to{
    opacity:1;
    transform:translateX(0);
}

}

@keyframes fadeRight{

from{
    opacity:0;
    transform:translateX(60px);
}

to{
    opacity:1;
    transform:translateX(0);
}

}

@keyframes floatImage{

0%,100%{
    transform:translateY(0);
}

50%{
    transform:translateY(-10px);
}

}

@keyframes aboutLight{

from{
    transform:translateX(-120%);
}

to{
    transform:translateX(120%);
}

}

@keyframes shine{

to{
    left:140%;
}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fe368cd *//* ===============================
   FAVORITE MENU
================================= */

.favorite-menu{
    padding:35px 15px;
    background:linear-gradient(180deg,#ffffff,#f8fbff);
    position:relative;
    overflow:hidden;
}

/* Efek cahaya */

.favorite-menu::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );
    transform:translateX(-100%);
    animation:menuLight 9s linear infinite;
    pointer-events:none;
}

.section-title{
    text-align:center;
    color:#0b3b78;
    font-size:20px;
    font-weight:800;
    margin-bottom:20px;
    position:relative;
}

.section-title::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:#2f7fd9;
    margin:10px auto 0;
    border-radius:20px;
}

/* Grid */

.menu-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}

/* Card */

.menu-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #eef2f7;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
    animation:fadeMenu .8s ease both;
}

.menu-card:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:0 18px 35px rgba(11,59,120,.18);
}

/* Image */

.menu-card img{
    width:100%;
    height:100px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.menu-card:hover img{
    transform:scale(1.1);
}

/* Info */

.menu-info{
    padding:12px 8px;
    text-align:center;
}

.menu-info h3{
    color:#0b3b78;
    font-size:11px;
    font-weight:700;
    line-height:1.4;
    min-height:30px;
}

.menu-info span{
    display:block;
    margin-top:6px;
    color:#0b3b78;
    font-weight:800;
    font-size:18px;
}

/* Button */

.all-menu-btn{
    margin:25px auto 0;
    max-width:260px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    background:#0b3b78;
    color:#fff;
    text-decoration:none;
    padding:14px 22px;
    border-radius:40px;
    font-weight:600;
    font-size:14px;
    position:relative;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 12px 30px rgba(11,59,120,.25);
}

.all-menu-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(11,59,120,.35);
}

.all-menu-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:70%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.6),
        transparent
    );
}

.all-menu-btn:hover::before{
    animation:shine .8s;
}

/* ===============================
   MOBILE
================================= */

@media(max-width:768px){

.favorite-menu{
    padding:25px 10px;
}

.section-title{
    font-size:17px;
    margin-bottom:15px;
}

.menu-grid{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}

.menu-card{
    border-radius:16px;
}

.menu-card img{
    height:120px;
}

.menu-info{
    padding:10px 6px;
}

.menu-info h3{
    font-size:11px;
}

.menu-info span{
    font-size:16px;
}

.all-menu-btn{
    width:100%;
    max-width:260px;
    font-size:13px;
    padding:12px;
}

}

/* ===============================
   ANIMATION
================================= */

@keyframes fadeMenu{

from{
    opacity:0;
    transform:translateY(30px);
}

to{
    opacity:1;
    transform:translateY(0);
}

}

@keyframes menuLight{

from{
    transform:translateX(-120%);
}

to{
    transform:translateX(120%);
}

}

@keyframes shine{

to{
    left:140%;
}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-84625e0 *//* ===============================
   LOCATION SECTION
================================= */

.location-section{
    padding:0;
    overflow:hidden;
    position:relative;
}

/* ===============================
   LOCATION BOX
================================= */

.location-box{

    background:
    linear-gradient(rgba(8,45,90,.78),
    rgba(8,45,90,.78)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e');

    background-size:cover;
    background-position:center;

    color:#fff;

    padding:22px;

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:18px;

    position:relative;
    overflow:hidden;

}

/* Cahaya bergerak */

.location-box::before{

    content:"";

    position:absolute;
    inset:0;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.12),
        transparent
    );

    transform:translateX(-120%);

    animation:locationLight 8s linear infinite;

    pointer-events:none;

}

.location-info{

    display:flex;
    gap:15px;
    flex:1;

}

.location-icon{

    font-size:32px;
    margin-top:3px;

    animation:pulseLocation 2.5s infinite;

}

.location-text h3{

    font-size:15px;
    font-weight:700;
    margin-bottom:6px;

}

.location-text p{

    font-size:12px;
    line-height:1.6;

}

/* ===============================
   MAP BUTTON
================================= */

.maps-btn{

    background:#fff;
    color:#0b3b78;
    text-decoration:none;

    padding:12px 18px;

    border-radius:40px;

    display:flex;
    align-items:center;
    gap:8px;

    font-size:13px;
    font-weight:700;

    white-space:nowrap;

    transition:.35s;

    position:relative;
    overflow:hidden;

}

.maps-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 30px rgba(255,255,255,.25);

}

.maps-btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:70%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.6),
        transparent
    );

}

.maps-btn:hover::before{

    animation:shine .8s;

}

/* ===============================
   RESERVATION
================================= */

.reservation-box{

    margin:0 20px;
    margin-top:-18px;

    background:linear-gradient(135deg,#25D366,#18b83d);

    color:#fff;
    text-decoration:none;

    border-radius:18px;

    padding:18px;

    display:flex;
    align-items:center;
    gap:18px;

    position:relative;
    z-index:5;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

/* Efek cahaya */

.reservation-box::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:70%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.5),
        transparent
    );

}

.reservation-box:hover{

    transform:translateY(-6px);

    box-shadow:0 25px 45px rgba(0,0,0,.25);

}

.reservation-box:hover::before{

    animation:shine .8s;

}

.wa-icon{

    font-size:46px;

    animation:waPulse 2s infinite;

}

.reservation-text{

    flex:1;

}

.reservation-text h3{

    font-size:22px;
    font-weight:700;
    margin-bottom:3px;

}

.reservation-text p{

    font-size:13px;

}

.arrow-icon{

    font-size:24px;

    animation:arrowMove 1.3s infinite;

}

/* ===============================
   MOBILE
================================= */

@media(max-width:768px){

.location-box{

    padding:16px;

}

.location-info{

    gap:10px;

}

.location-icon{

    font-size:22px;

}

.location-text h3{

    font-size:13px;

}

.location-text p{

    font-size:10px;

}

.maps-btn{

    padding:10px 14px;

    font-size:11px;

}

.reservation-box{

    margin:0 15px;
    margin-top:-15px;

    padding:14px;

    border-radius:15px;

}

.wa-icon{

    font-size:36px;

}

.reservation-text h3{

    font-size:17px;

}

.reservation-text p{

    font-size:11px;

}

.arrow-icon{

    font-size:18px;

}

}

/* ===============================
   ANIMATION
================================= */

@keyframes locationLight{

from{
    transform:translateX(-120%);
}

to{
    transform:translateX(120%);
}

}

@keyframes pulseLocation{

0%,100%{
    transform:scale(1);
}

50%{
    transform:scale(1.2);
}

}

@keyframes waPulse{

0%{
    transform:scale(1);
}

50%{
    transform:scale(1.15);
}

100%{
    transform:scale(1);
}

}

@keyframes arrowMove{

0%{
    transform:translateX(0);
}

50%{
    transform:translateX(6px);
}

100%{
    transform:translateX(0);
}

}

@keyframes shine{

to{
    left:140%;
}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ccb864c *//* ===============================
   SMOOTH SCROLL
================================= */

html{
    scroll-behavior:smooth;
}

/* ===============================
   BOTTOM NAVIGATION
================================= */

.bottom-nav{

    position:fixed;

    bottom:15px;

    left:50%;

    transform:translateX(-50%);

    width:calc(100% - 20px);

    max-width:430px;

    height:72px;

    display:flex;

    justify-content:space-evenly;

    align-items:center;

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.5);

    border-radius:25px;

    box-shadow:
        0 12px 35px rgba(0,0,0,.15),
        0 2px 10px rgba(0,0,0,.08);

    z-index:9999;

    animation:navUp .8s ease;

}

/* ===============================
   NAV ITEM
================================= */

.nav-item{

    flex:1;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:5px;

    text-decoration:none;

    color:#163b6b;

    font-size:10px;

    font-weight:600;

    transition:.35s;

    border-radius:18px;

    padding:8px 0;

    position:relative;

}

/* ICON */

.nav-item i{

    font-size:21px;

    transition:.35s;

}

/* ACTIVE */

.nav-item.active{

    color:#0d8cff;

}

.nav-item.active i{

    transform:translateY(-3px) scale(1.15);

}

/* HOVER */

.nav-item:hover{

    color:#0d8cff;

    transform:translateY(-4px);

}

.nav-item:hover i{

    transform:scale(1.25);

}

/* Glow Active */

.nav-item.active::before{

    content:"";

    position:absolute;

    top:5px;

    width:42px;

    height:42px;

    border-radius:50%;

    background:rgba(13,140,255,.12);

    z-index:-1;

    animation:pulseNav 2s infinite;

}

/* ===============================
   BODY
================================= */

body{

    padding-bottom:95px;

}

/* ===============================
   ANIMATION
================================= */

@keyframes navUp{

from{

    opacity:0;

    transform:translate(-50%,100px);

}

to{

    opacity:1;

    transform:translate(-50%,0);

}

}

@keyframes pulseNav{

0%{

    transform:scale(.8);

    opacity:.4;

}

50%{

    transform:scale(1.2);

    opacity:.2;

}

100%{

    transform:scale(.8);

    opacity:.4;

}

}/* End custom CSS */