*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#050505;
    color:white;
    font-family:Poppins,sans-serif;
    overflow-x:hidden;
}

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#000;
    position:sticky;
    top:0;
    z-index:999;
    border-bottom:1px solid #b68a2f;
}

.logo h1{
    font-family:Cinzel;
    font-size:38px;
    color:#d4af37;
}

.logo p{
    color:#d4af37;
}

nav a{
    text-decoration:none;
    color:white;
    margin-left:25px;
    transition:.4s;
}

nav a:hover{
    color:#d4af37;
}

section{
    padding:70px 8%;
}

.banner img{
    width:100%;
    border-radius:12px;
    box-shadow:0 0 25px rgba(212,175,55,.4);
}

h2{
    font-family:Cinzel;
    font-size:42px;
    color:#d4af37;
    text-align:center;
    margin-bottom:35px;
}

.texto{
    max-width:900px;
    margin:auto;
    text-align:center;
    font-size:20px;
    line-height:1.9;
}

/* ===========================
   IMAGENS
=========================== */

#narguile img,
#combos img,
#cardapio img{
    width:100%;
    max-width:900px;
    display:block;
    margin:40px auto;
    border-radius:15px;
    box-shadow:0 0 30px rgba(212,175,55,.35);
}

/* ===========================
   COMBOS
=========================== */

#combos{
    text-align:center;
}

.descricao{
    max-width:800px;
    margin:auto;
    font-size:20px;
    color:#ddd;
    line-height:1.8;
    margin-bottom:30px;
}

/* ===========================
   HORÁRIO
=========================== */

.horario{
    text-align:center;
}

.horario h3{
    font-size:30px;
    margin-bottom:15px;
    color:#fff;
}

.horario p{
    font-size:28px;
    color:#d4af37;
    font-weight:bold;
}

/* ===========================
   INSTAGRAM
=========================== */

.instagram{
    text-align:center;
}

.botao{
    display:inline-block;
    margin-top:30px;
    padding:18px 45px;
    background:#d4af37;
    color:#000;
    font-weight:bold;
    font-size:18px;
    border-radius:40px;
    text-decoration:none;
    transition:.4s;
}

.botao:hover{
    background:white;
    transform:scale(1.05);
}

/* ===========================
   RODAPÉ
=========================== */

footer{
    padding:30px;
    background:#000;
    text-align:center;
    border-top:1px solid #b68a2f;
    color:#999;
}

/* ===========================
   RESPONSIVO
=========================== */

@media (max-width:768px){

    header{
        flex-direction:column;
    }

    nav{
        margin-top:15px;
        text-align:center;
    }

    nav a{
        display:inline-block;
        margin:10px;
    }

    .logo h1{
        font-size:30px;
    }

    h2{
        font-size:30px;
    }

    .texto{
        font-size:18px;
    }

    .descricao{
        font-size:18px;
    }

    .horario h3{
        font-size:24px;
    }

    .horario p{
        font-size:22px;
    }

    .botao{
        width:100%;
        max-width:320px;
        padding:16px;
        font-size:16px;
    }
}