/* Reset e stili base */
html, body {
    background-color: #1e1e1e;
    min-height: 100vh;
    margin: 0;
    padding: 10px;
    display: flex;
    flex-direction: column;
    color: white;
    font-family: Satoshi-Light, sans-serif;
    overflow: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

a {
    text-decoration: none;
}

/* Contenuto principale */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 20px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -60%);
    z-index: 5;
}

.Logo {
    font-family: Afacad-Bold;
    font-size: 300px;
    color: white;
    line-height: 1;
    margin: 0;
    font-weight: bold;
}

/* Footer */
.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 30px 20px;
    color: white;
    position: relative;
    gap: 30px;
    align-items: flex-end;
    margin-bottom: 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.name {
    font-family: Silkscreen-Regular;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.7);
}

.button-navbar {
    font-family: Satoshi-Bold;
    font-size: 18px;
    color: #1e1e1e;
    background-color: #ffffff;
    width: 100px;
    height: 34px;
    display: flex;
    align-items: center;     
    justify-content: center;
    border-radius: 100px;
    padding: 0; 
    font-weight: bold;
}

.about {
    padding-top: 10px;
    font-family: Satoshi-Light;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    width: 50%;
    line-height: 1.5;
}

.footer-time-text {
    font-family: Silkscreen-Regular;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    text-align: start;
    white-space: nowrap;
}

.footer-text{
    font-family: Silkscreen-Regular;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.7);
}

.nav-links {
    display: flex;
    gap: 14px;
}

/* Definizione dei font */
@font-face {
    font-family: Silkscreen-Regular;
    src: url(./Assets/Font/Silkscreen/Silkscreen-Regular.ttf);
}

@font-face {
    font-family: Satoshi-Bold;
    src: url(./Assets/Font/Satoshi/Satoshi-Bold.otf);
}

@font-face {
    font-family: Satoshi-Medium;
    src: url(./Assets/Font/Satoshi/Satoshi-Medium.otf);
}

@font-face {
    font-family: Satoshi-Light;
    src: url(./Assets/Font/Satoshi/Satoshi-Light.otf);
}

@font-face {
    font-family: Afacad-Bold;
    src: url(./Assets/Font/Afacad/Afacad-Bold.ttf);
}

/* Media Queries per dispositivi mobili */
@media (max-width: 768px) {
        html, body {
            background-color: #1e1e1e;
            min-height: 100vh;
            margin: 0;
            padding: 0px;
            display: flex;
            flex-direction: column;
            color: white;
            font-family: Satoshi-Light, sans-serif;
            overflow: hidden;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
    }

    .Logo {
        font-size: 150px;
    }

    .footer {
        padding: 20px;
    }

    .about {
        width: 100%;
    }

    .footer-time-text {
        text-align: left;
        white-space: normal;
    }

    .footer-time-text {
        display: none;
    }
    
    .name{
        display: none;
    }

    .nav-links{
        width: 100%;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        
    }
}

@media (max-width: 480px) {
    .Logo {
        font-size: 100px;
    }

    .name {
        font-size: 18px;
    }


    .about {
        font-size: 14px;
    }

    .footer-time-text {
        display: none;
    }
}

/* Stili aggiuntivi per layout molto piccoli */
@media (max-width: 320px) {
    .Logo {
        font-size: 80px;
    }

    .nav-links {
        flex-direction: column;
        gap: 8px;
    }

    
}