*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#0f0f0f;
    color:white;
    overflow-x:hidden;
}

header{
    width:100%;
    min-height:100vh;

    background:
    linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.7)),
    url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=1600&auto=format&fit=crop');

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

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px 8%;

    position:fixed;
    width:100%;
    z-index:999;

    background:rgba(0,0,0,0.4);
    backdrop-filter:blur(10px);
}

.logo{
    font-size:32px;
    font-weight:700;
    color:#ffd369;
}

/* ================= NAVBAR ================= */

.navbar{

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

    list-style:none;
}

.navbar li a{

    text-decoration:none;

    color:white;

    font-size:16px;

    font-weight:500;

    transition:0.4s;
}

.navbar li a:hover{

    color:#ffd369;
}

/* BUTTON NAVBAR */

.nav-btn{

    background:#ffd369;

    color:black !important;

    padding:12px 25px;

    border-radius:40px;

    font-weight:600;
}

.nav-btn:hover{

    background:white;

    color:black !important;
}

.hero{
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;

    text-align:center;
    padding:20px;
}

.hero h1{
    font-size:70px;
    margin-bottom:20px;
}

.hero p{
    width:70%;
    font-size:20px;
    line-height:1.8;
    color:#ddd;
    margin-bottom:30px;
}

.hero button{
    padding:15px 40px;
    border:none;
    border-radius:50px;
    background:#ffd369;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
}

.section{
    padding:100px 10%;
}

.row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
    margin-bottom:100px;
    flex-wrap:wrap;
}

.row img{
    width:500px;
    max-width:100%;
    border-radius:20px;
}

.text{
    flex:1;
}

.text h2{
    font-size:45px;
    color:#ffd369;
    margin-bottom:20px;
}

.text p{
    color:#ccc;
    line-height:1.9;
    font-size:18px;
}

/* ANIMASI */

.hidden-left{
    opacity:0;
    transform:translateX(-100px);
    transition:1s;
}

.hidden-right{
    opacity:0;
    transform:translateX(100px);
    transition:1s;
}

.show{
    opacity:1;
    transform:translateX(0);
}

/* POPUP */

.popup{
    display:none;
    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.8);

    justify-content:center;
    align-items:center;

    z-index:9999;
}

.popup-content{
    width:90%;
    max-width:600px;

    background:#1a1a1a;

    padding:30px;
    border-radius:20px;
}

.close{
    position:absolute;
    right:20px;
    top:10px;
    font-size:30px;
    cursor:pointer;
}

.food{
    display:flex;
    justify-content:space-between;
    align-items:center;

    background:#2a2a2a;

    padding:15px;
    margin-bottom:15px;
    border-radius:10px;
}

.food button,
.pay-btn{
    border:none;
    padding:10px 20px;
    border-radius:10px;
    cursor:pointer;
}

.food button{
    background:#ffd369;
}

.pay-btn{
    width:100%;
    background:#2ecc71;
    margin-top:20px;
}

.waiting-box{
    display:none;
    margin-top:20px;
    text-align:center;
}

#timer{
    font-size:40px;
    margin-top:10px;
    color:#ffd369;
}

.pelanggan-box{
    text-align:center;
    padding:60px;
}

.pelanggan-box h1{
    font-size:70px;
    color:#ffd369;
}

@media(max-width:768px){

.hero h1{
    font-size:45px;
}

.hero p{
    width:100%;
}

.row{
    flex-direction:column;
}

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#0f0f0f;
    color:white;
    overflow-x:hidden;
}

/* ================= HEADER ================= */

header{
    width:100%;
    min-height:100vh;

    background:
    linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.7)),
    url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=1600&auto=format&fit=crop');

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

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px 8%;

    position:fixed;
    width:100%;
    z-index:999;

    background:rgba(0,0,0,0.4);
    backdrop-filter:blur(10px);
}

.logo{
    font-size:32px;
    font-weight:700;
    color:#ffd369;
}

.menu-icon{
    font-size:35px;
    cursor:pointer;
}

.hero{
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;

    text-align:center;
    padding:20px;
}

.hero h1{
    font-size:70px;
    margin-bottom:20px;
}

.hero p{
    width:70%;
    font-size:20px;
    line-height:1.8;
    color:#ddd;
    margin-bottom:30px;
}

.hero button{
    padding:15px 40px;
    border:none;
    border-radius:50px;
    background:#ffd369;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
}

/* ================= SECTION ================= */

.section{
    padding:100px 10%;
}

.row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
    margin-bottom:100px;
    flex-wrap:wrap;
}

.row img{
    width:500px;
    max-width:100%;
    border-radius:20px;
}

.text{
    flex:1;
}

.text h2{
    font-size:45px;
    color:#ffd369;
    margin-bottom:20px;
}

.text p{
    color:#ccc;
    line-height:1.9;
    font-size:18px;
}

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

.hidden-left{
    opacity:0;
    transform:translateX(-100px);
    transition:1s;
}

.hidden-right{
    opacity:0;
    transform:translateX(100px);
    transition:1s;
}

.show{
    opacity:1;
    transform:translateX(0);
}

/* ================= LUXURY GALLERY ================= */

.luxury-gallery{
    width:100%;
    padding:120px 8%;
    background:#111;
}

.gallery-title{
    text-align:center;
    margin-bottom:70px;
}

.gallery-title h1{
    font-size:60px;
    color:#ffd369;
    margin-bottom:20px;
}

.gallery-title p{
    color:#bbb;
    font-size:18px;
    line-height:1.8;
}

.gallery-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-auto-rows:250px;
    gap:25px;
}

/* CARD */

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:25px;
}

.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.7s;
}

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

/* OVERLAY */

.overlay{
    position:absolute;
    bottom:0;
    left:0;

    width:100%;
    padding:30px;

    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,0.8)
    );
}

.overlay h2{
    color:white;
    font-size:24px;
}

/* SIZE */

.gallery-card.big{
    grid-column:span 2;
    grid-row:span 2;
}

.gallery-card.wide{
    grid-column:span 2;
}

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

.popup{
    display:none;
    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.8);

    justify-content:center;
    align-items:center;

    z-index:9999;
}

.popup-content{
    width:90%;
    max-width:600px;

    background:#1a1a1a;

    padding:30px;
    border-radius:20px;

    position:relative;
}

.close{
    position:absolute;
    right:20px;
    top:10px;
    font-size:30px;
    cursor:pointer;
}

#namaPelanggan{
    width:100%;
    padding:12px;
    margin:20px 0;
    border:none;
    border-radius:10px;
}

.food{
    display:flex;
    justify-content:space-between;
    align-items:center;

    background:#2a2a2a;

    padding:15px;
    margin-bottom:15px;
    border-radius:10px;
}

.food button,
.pay-btn{
    border:none;
    padding:10px 20px;
    border-radius:10px;
    cursor:pointer;
}

.food button{
    background:#ffd369;
}

.pay-btn{
    width:100%;
    background:#2ecc71;
    margin-top:20px;
}

.waiting-box{
    display:none;
    margin-top:20px;
    text-align:center;
}

#timer{
    font-size:40px;
    margin-top:10px;
    color:#ffd369;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

.hero h1{
    font-size:45px;
}

.hero p{
    width:100%;
}

.row{
    flex-direction:column;
}

.gallery-title h1{
    font-size:40px;
}

.gallery-wrapper{
    grid-template-columns:1fr;
}

.gallery-card.big,
.gallery-card.wide{
    grid-column:span 1;
    grid-row:span 1;
}

}

/* ================= FOOTER ================= */

.footer{

    background:#0a0a0a;

    padding-top:100px;

    position:relative;

    overflow:hidden;
}

/* GARIS ATAS */

.footer::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:
    linear-gradient(
        90deg,
        #ff7b54,
        #ff416c,
        #7f5af0,
        #ffd369
    );
}

/* CONTAINER */

.footer-container{

    width:90%;
    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:50px;

    padding-bottom:60px;
}

/* BOX */

.footer-box h3{

    color:#ffd369;

    margin-bottom:25px;

    font-size:24px;
}

.footer-logo{

    font-size:38px;

    color:#ffd369;

    margin-bottom:20px;
}

.footer-box p{

    color:#bbb;

    line-height:2;

    font-size:15px;
}

/* LIST */

.footer-box ul{

    list-style:none;
}

.footer-box ul li{

    margin-bottom:15px;
}

.footer-box ul li a{

    color:#bbb;

    text-decoration:none;

    transition:0.4s;
}

.footer-box ul li a:hover{

    color:#ffd369;

    padding-left:8px;
}

/* SOCIAL */

.footer-social{

    margin-top:25px;

    display:flex;
    gap:15px;
}

.footer-social a{

    text-decoration:none;

    color:white;

    background:#1b1b1b;

    padding:10px 18px;

    border-radius:30px;

    transition:0.4s;
}

.footer-social a:hover{

    background:#ffd369;

    color:black;
}

/* BOTTOM */

.footer-bottom{

    border-top:1px solid rgba(255,255,255,0.1);

    text-align:center;

    padding:25px 10px;
}

.footer-bottom p{

    color:#888;

    font-size:14px;
}

/* RESPONSIVE */

@media(max-width:768px){

.footer{

    text-align:center;
}

.footer-social{

    justify-content:center;
}

}

/* ================= RESPONSIVE NAVBAR ================= */

@media(max-width:900px){

.navbar{

    gap:15px;

    flex-wrap:wrap;

    justify-content:center;
}

.navbar li a{

    font-size:14px;
}

.nav-btn{

    padding:10px 18px;
}

}

/* ================= CHATBOT ================= */

.chatbot-popup{

    position:fixed;

    bottom:30px;
    right:30px;

    width:380px;

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.3);

    z-index:9999;

    display:none;
}

/* BOX */

.chatbot-box{

    display:flex;

    flex-direction:column;

    height:550px;
}

/* HEADER */

.chatbot-header{

    background:#111;

    color:white;

    padding:20px;

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.chatbot-header span{

    cursor:pointer;

    font-size:22px;
}

/* BODY */

.chatbot-body{

    flex:1;

    padding:20px;

    overflow-y:auto;

    background:#f5f5f5;
}

/* MESSAGE */

.bot-message,
.user-message{

    padding:12px 18px;

    margin-bottom:15px;

    border-radius:15px;

    max-width:80%;

    line-height:1.6;
}

.bot-message{

    background:white;

    color:#333;
}

.user-message{

    background:#ffd369;

    margin-left:auto;

    color:black;
}

/* INPUT */

.chatbot-input{

    display:flex;

    border-top:1px solid #ddd;
}

.chatbot-input input{

    flex:1;

    padding:15px;

    border:none;

    outline:none;

    font-size:15px;
}

.chatbot-input button{

    border:none;

    background:#111;

    color:white;

    padding:0 25px;

    cursor:pointer;

    transition:0.3s;
}

.chatbot-input button:hover{

    background:#ffd369;

    color:black;
}

/* RESPONSIVE */

@media(max-width:500px){

.chatbot-popup{

    width:95%;

    right:10px;
    bottom:10px;
}

}