*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    background:#05070d;
}

/* HEADER */

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:80px;

    background:#050505;

    display:flex;
    align-items:center;

    padding:0 25px;

    z-index:1000;

    border-bottom:2px solid #0b7cff;

}

#menu-btn{

    background:none;

    border:none;

    color:white;

    font-size:35px;

    cursor:pointer;

}

.logo{

    margin-left:25px;

}

.logo img{

    height:80px;

}

.search{
    position: relative;
    display: flex;
    align-items: center;
    margin-left: auto;
}

#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:330px;

    height:45px;

    border-radius:30px 0 0 30px;

    border:1px solid #444;

    background:#111;

    color:white;

    padding:0 20px;

    outline:none;

}

.search button{

    width:55px;

    height:45px;

    border:none;

    border-radius:0 30px 30px 0;

    background:#1677ff;

    color:white;

    cursor:pointer;

    font-size:22px;

}

/* MENIU */

#side-menu{
    position:fixed;
    top:80px;
    left:-260px;
    width:260px;
    height:calc(100% - 80px);
    background:#111;
    transition:.3s;
    display:flex;
    flex-direction:column;
}

#side-menu.active{
    left:0;
}

#side-menu a{
    color:white;
    text-decoration:none;
    padding:18px;
    font-size:18px;
}

#side-menu a:hover{
    background:#222;
}

/* PRODUSE */

#produse{
    scroll-margin-top: 100px;
}

main{

    background:
    linear-gradient(rgba(5,7,13,.96),rgba(5,7,13,.96)),
    url("images/poze/fundal-produse.png");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    padding:60px 40px;

}

.produse{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{

    background:#0c111d;

    border:1px solid #1677ff;

    border-radius:20px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 0 20px rgba(0,100,255,.15);

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:0 0 30px rgba(22,119,255,.45);

}

.card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.card h2{
    padding:15px 15px 5px;
    font-size:22px;
    color: white;
}

.pret{
    padding:0 15px;
    font-size:22px;
    font-weight:bold;
    color:#0077ff;
}

.detalii{
    display:block;
    margin:20px 15px;
    text-align:center;
    text-decoration:none;
    background:#0077ff;
    color:white;
    padding:12px;
    border-radius:10px;
}
/* BANNER */

.banner{
    height:100vh;
    background:
        linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
        url("images/poze/fundal.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
    padding:0 8%;
    margin-bottom:60px;
}

.banner-text{
    color:white;
    max-width:650px;
}

.banner-text h3{
    font-size:32px;
    font-weight:400;
    margin-bottom:20px;
}

.banner-text h1{
    font-size:85px;
    margin-bottom:20px;
    color:white;
}

.banner-text span{
    color:#1677ff;
}

.banner-text p{
    font-size:28px;
    line-height:1.6;
    margin-bottom:40px;
}

.btn-banner{
    display:inline-block;
    background:#1677ff;
    color:white;
    text-decoration:none;
    padding:18px 40px;
    border-radius:40px;
    font-size:22px;
    font-weight:bold;
    transition:.3s;
}

.btn-banner:hover{
    background:#0b5ed7;
    transform:translateY(-5px);
}

/* TELEFON */

/* TELEFON */

@media (max-width:768px){

    header{
        height:70px;
        padding:0 10px;
    }

    .logo img{
        height:53px;
    }

    .search{
        margin-left:auto;
    }

    .search input{
        width:110px;
        height:34px;
        font-size:13px;
        padding:0 10px;
    }

    .search button{
        width:40px;
        height:34px;
        font-size:16px;
    }

    .produse{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .card img{
        height:140px;
    }

    .card h2{
        font-size:18px;
        padding:10px;
    }

    .pret{
        font-size:18px;
        padding:0 10px 10px;
    }

    .detalii{
        margin:10px;
        padding:10px;
        font-size:14px;
    }

    .banner{
        height:75vh;
        padding:0 20px;
    }

    .banner-text h3{
        font-size:18px;
    }

    .banner-text h1{
        font-size:42px;
    }

    .banner-text p{
        font-size:18px;
    }

    .btn-banner{
        padding:12px 25px;
        font-size:16px;
    }

}
.sociale{
    margin-top:auto;
    padding:20px;
    border-top:1px solid #2a2a2a;
}

.sociale a{
    display:flex;
    align-items:center;
    gap:10px;
    color:white;
    text-decoration:none;
    padding:14px 0;
    font-size:18px;
    transition:.3s;
}

.sociale a:hover{
    color:#1690ff;
    padding-left:8px;
}
.titlu-contact{
    color:#8ea2c0;
    font-size:17px;
    font-weight:bold;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
    padding-left:5px;
}
.sociale i{
    width:28px;
    font-size:22px;
    color:#1690ff;
}