@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

:root {
    --secondary-100: #f0f1ee;
    --secondary-300: #d0d4c5;
    --secondary-500: #7e856d;
    --secondary-700: #656b57;
    --secondary-900: #4a503e;
}



body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../assets/la-lepre-ceramica-background-h.webp");
    background-size: cover;
    background-position: center;
}

@media (max-width:719px) {
    .background {
       background-image: url("../assets/la-lepre-ceramica-background-v.webp");
    }
    
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-900);
    opacity: 0.8;
}

.foreground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    display: flex;
    align-items: center;

}

.content {
    width:100%;
    padding: 40px clamp(0.3125rem, -4.523rem + 21.4912vw, 15.625rem);
    text-align: center;
}

.logo {
    width: 300px;
    margin-bottom: 70px;
}

.coming-soon-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.75rem, 2.5706rem + 5.2419vw, 7.8125rem);
    font-weight: 300;
    line-height: 0.8;
    letter-spacing: -0.2vw;
    color: white;
    text-transform: uppercase;
    margin-block-start: 0.1em;
    margin-block-end: 0.1em;
}

.coming-soon-text.en {
    text-align: left;
    margin-bottom: clamp(0rem, 4.6875rem + -5vw, 3.125rem);
} 

.coming-soon-text.it {
    text-align: right;

} 

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    padding: 20px 30px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    border-width: 0.5px;
    border-style: solid;
    border-radius: 5px;
    font-family: 'Nunito Sans', sans-serif, serif;
    font-weight: lighter;
    transition: all .2s ease-out;
}

.whatsapp-link:hover {
    transform: translateY(-3px);
    background-color: var(--secondary-900);

}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    fill: white;
}
