@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: #121212;
}

.background-container {
    width: 100%;
    height: 100%;
    background-color: #121212;
    background-image: url('immagine.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    left: 0;
}

.content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
}

.left-section {
    flex: 1;
}

.main-title {
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 4vw;
    color: #ffffff;
    letter-spacing: 0.15em;
    line-height: 1.2;
}

.right-section {
    text-align: right;
    margin-right: 2%;
}

.coming-soon {
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 1.2vw;
    color: #ffffff;
    letter-spacing: 0.25em;
    margin-bottom: 0.8vw;
}

.website {
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-weight: 400;
    font-size: 1.2vw;
    color: #ffffff;
    letter-spacing: 0.15em;
}

.bottom-section {
    position: absolute;
    bottom: 6%;
    left: 8%;
}

.logo-text {
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 2.5vw;
    color: #ffffff;
    letter-spacing: 0.1em;
}

/* Mobile - mantiene stesso layout */
@media (max-width: 768px) {
    .main-title {
        font-size: 7vw;
    }
    
    .coming-soon {
        font-size: 2.5vw;
        margin-bottom: 1.5vw;
    }
    
    .website {
        font-size: 2.5vw;
    }
    
    .logo-text {
        font-size: 5vw;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 8vw;
    }
    
    .coming-soon {
        font-size: 3vw;
        margin-bottom: 2vw;
    }
    
    .website {
        font-size: 3vw;
    }
    
    .logo-text {
        font-size: 6vw;
    }
}