*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', sans-serif;
}
:root{
    --light-color: #EEEEEE;
    --prim_clr: #3A4750;
    --sec-clr: #D72323;
    --hover-clr: #D72323;
}

a{
    text-decoration: none;
}


/* Barra di Navigazione */
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: var(--prim_clr);
    z-index: 1;
}
nav{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav .name{
    margin-left: 10%;
    color: var(--sec-clr);
    font-size: clamp(25px, 5vw, 35px);
}
nav .name #T{
    color: var(--light-color);
}
nav .name #rainer{
    font-size: /* clamp(0.75rem, 2.5vw, 1.75rem) */0.5em;
    color: var(--light-color);
}
nav .logo img{
    position: fixed;
    top: 5px;
    left: 50%;
    transform: translate(-50%, 0%);
    height: 90px;
}
nav ul{
    height: 100%;
    margin-right: 10%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
}
nav ul li{
    height: 100%;
    padding: 0 20px;
    margin-top: 10px;
}
nav ul li a{
    line-height: 80px;
    align-self: center;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--light-color);
    font-size: clamp(10px, 3vw, 20px);
    font-weight: 800;
    display: block;
    height: 100%;
    transition: 0.3s;
}
nav ul li a:hover{
    color: var(--hover-clr);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Coming Soon */
.container{
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--light-color);
}

.comingsoon{
    font-size: clamp(7rem, 20vw, 15rem);
    font-family: Impact, sans-serif;
    text-align: center;
    background-image: url(images/karsten-winegeart-0Wra5YYVQJE-unsplash.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    filter: drop-shadow(1px 2px 1px black);
    margin-top: 50px;
}

.contatta{
    text-align: center;
    line-height: 3rem;
    width: 250px;
    height: 50px;
    padding: clamp(1px, 1%, 0.25em) clamp(15px, 2%, 5em);
    background-color: var(--hover-clr);
    opacity: 0.85;
    border: 1px solid var(--hover-clr);
    color: var(--light-color); 
    border-radius: 0.35em;
    margin-top: 50px;
	box-shadow: 0 0 20px 0 rgba(0,0,0,.3);
	transition: all 0.25s ease-in;
    position: relative;
}

.cont_text,
.icon {
    display: block;
    height: 100%;
    text-align: center;
    position: absolute;
    top: 0;
}

.cont_text {
    width: 72%;
    line-height: 3rem;
    font-size: 1rem;
    text-transform: uppercase;
    left: 0;
    transition: all 0.25s ease-in;
    
    &:after {
        content: '';
        background-color: var(--prim_clr);
        opacity: 0.5;
        width: 2px;
        height: 70%;
        position: absolute;
        top: 15%;
        right: -1px;
    }
}

.icon {
    width: 28%;
    right: 0;
    transition: all 0.25s ease-in;
    
    .fa-solid {
        font-size: 1.5rem;
        vertical-align: middle;
        transition: all 0.25s ease-in, height 0.25s ease;
    }
    
    .fa-envelope-open-text {
        height: 1.5rem;
    }
    
/*     .fa-envelope-circle-check {
        display: none;
    } */
}

.contatta:hover {
    
    .cont_text {
        left: -72%;
        opacity: 0;
    }
    
    .icon {
        width: 100%;
        
        .fa-solid {
            font-size: 2rem;
        }
    }
}

.contatta:hover{
    
    .icon .fa-envelope-open-text {
        height: 2rem;
    }
}

/* @media screen and (max-width: 774px){
    .comingsoon{
        font-size: 20vw;
    }
} */

/* piè di pagina */
footer{
    position: fixed;
    bottom: 0;
    left: 0;
    height: 100px;
    width: 100%;
    background-color: var(--prim_clr);
    color: var(--light-color);
    align-items: center;
    text-align: center;
    font-size: 14px;
    position: relative;
}
footer .logo_foot{
    height: 90px;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translate(-50%, 0%);
}
footer p{
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, 0%);
}
footer p #DG{
    color: var(--sec-clr);
    font-weight: 600;
}
footer p span{
    font-weight: 400;
}
footer p a{
    color: var(--light-color);
    text-decoration: none;
}
footer p a:hover{
    color: var(--sec-clr);
}