*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:
        linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
        url("images/poze/fundal.jpg");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

/* HEADER */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:80px;
    background:#050505;
    border-bottom:2px solid #1677ff;

    display:flex;
    align-items:center;
    padding:0 25px;
    z-index:1000;
}

.home{
    color:white;
    text-decoration:none;
    font-size:18px;
    margin-right:25px;
}

.home i{
    color:#1677ff;
    margin-right:8px;
}

.logo{
    margin-right:auto;
}

.logo img{
    height:80px;
}

.search{
    position:relative;
}

#rezultate{
    position:absolute;
    top:50px;
    left:0;
    width:100%;
    background:#111827;
    border:1px solid #1677ff;
    border-radius:12px;
    display:none;
    overflow:hidden;
    z-index:9999;
}

.rezultat{
    padding:12px 15px;
    color:white;
    cursor:pointer;
    border-bottom:1px solid rgba(255,255,255,.1);
    transition:.2s;
}

.rezultat:hover{
    background:#1677ff;
}

.search input{
    width:300px;
    height:42px;
    border:none;
    outline:none;
    padding:0 15px;
    border-radius:25px 0 0 25px;
    background:#111;
    color:white;
}

.search button{
    width:50px;
    border:none;
    background:#1677ff;
    color:white;
    border-radius:0 25px 25px 0;
    cursor:pointer;
}

/* CARD */

.comanda{
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:120px 20px;
}

.card{
    width:700px;
    background:#111827;
    border:1px solid #1677ff;
    border-radius:25px;
    padding:40px;
    text-align:center;

    box-shadow:0 0 30px rgba(22,119,255,.3);
}

.logo-card{
    width:250px;
    margin-bottom:20px;
}

.card h1{
    color:white;
    margin-bottom:15px;
}

.card p{
    color:#bdbdbd;
    margin-bottom:25px;
    line-height:1.6;
}

textarea{
    width:100%;
    height:220px;

    background:#0d1117;

    color:white;

    border:1px solid #333;

    border-radius:15px;

    padding:20px;

    resize:none;

    font-size:17px;

    outline:none;

    margin-bottom:25px;
}

.whatsapp{
    width:100%;
    height:60px;

    border:none;

    border-radius:15px;

    background:#25D366;

    color:white;

    font-size:20px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;
}

.whatsapp:hover{
    background:#1fa855;
}
/* TELEFON */

@media (max-width:768px){

header{
    height:70px;
    padding:0 10px;
}

.logo img{
    height:55px;
}

.search input{
    width:120px;
    height:35px;
    font-size:13px;
}

.search button{
    width:40px;
    height:35px;
}

.container{
    width:95%;
    padding:25px 18px;
    margin:30px auto;
}

.container img{
    width:180px;
}

.container h1{
    font-size:28px;
}

.container p{
    font-size:16px;
}

textarea{
    height:180px;
    font-size:16px;
    padding:15px;
}

.whatsapp{
    width:100%;
    padding:16px;
    font-size:18px;
}

.btn-acasa{
    padding:10px 18px;
    font-size:15px;
}

}