/* ==========================================
   DCGCollection
   BASE.CSS
========================================== */

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* BODY */

body{

    font-family:Arial, Helvetica, sans-serif;
    background:#f7f7f7;
    color:#222;
    line-height:1.6;

}

/* LINK */

a{

    text-decoration:none;
    color:inherit;

}

/* IMMAGINI */

img{

    display:block;
    max-width:100%;
    height:auto;

}

/* HEADER */

header{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px;
    background:#fff;
    border-bottom:1px solid #eee;
    position:sticky;
    top:0;
    z-index:1000;

}

/* LOGO */

.logo{

    display:flex;
    align-items:center;
    flex-shrink:0;

}

.logo img{

    height:60px;
    width:auto;

}

/* NAV */

nav{

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

}

nav ul{

    display:flex;
    list-style:none;
    gap:20px;

}

nav li{

    list-style:none;

}

nav a{

    font-weight:600;
    transition:.2s;

}

nav a:hover{

    color:#8c5cff;

}

/* MENU MOBILE */

.menu-toggle{

    display:none;
    background:none;
    border:none;
    font-size:32px;
    cursor:pointer;

}
