/* Importazione Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');

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

body {
    background-color: #F5F5F5;
    font-family: 'Roboto Mono', monospace;
    color: #000;
    text-align: center;
    -webkit-font-smoothing: antialiased;
}

/* RESET LINK - Via il blu e le sottolineature */
a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.6;
}

/* TOP NAVIGATION */
.top-nav {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    font-weight: 700;
    font-size: 14px;
}

.login {
    color: #FF4500;
}

/* HERO SECTION - CENTRATURA E SOVRAPPOSIZIONE */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 10px;
}

/* Seleziona il link specifico per dargli lo stile SDR* */
a[href="some.html"] {
    color: #FF4500;
    text-decoration: underline;
    text-underline-offset: 5px; /* La stacca un po' dal testo per farla respirare */
    text-decoration-thickness: 2px;
    font-weight: 700;
    text-transform: uppercase;
}
.profile-pic {
    z-index: 2; /* Sopra il testo */
}

.profile-pic img {
    width: 140px;
    height: auto;
    filter: grayscale(100%);
    display: block;
    /* Margine negativo per far toccare la foto alla scritta */
    margin-bottom: 20px; 
}

.vertical-title {
    z-index: 1; /* Sotto la foto */
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: clamp(80px, 20vw, 120px);
    color: #FF4500;
    font-weight: 700;
    /* Lettere attaccatissime e compatte */
    letter-spacing: 40px; 
    line-height: 0.8;
    margin: 0 auto;
}

.brand-name {
    font-weight: 700;
    font-size: 14px;
    margin-top: 10px;
    letter-spacing: 1px;
}

/* MENU PRINCIPALE */
.main-menu {
    margin: 50px 0;
}

.row {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-weight: 700;
    margin: 10px 0;
    font-size: 18px;
}

.red-link, .red-icon {
    color: #FF4500;
}

.eg {
    font-weight: 400;
    color: #888;
}

/* FOOTER E SOCIAL */
.social-links a {
    display: block;
    color: #FF4500;
    font-weight: 700;
    margin: 5px 0;
    font-size: 14px;
}

.email {
    display: block;
    color: #FF4500;
    font-weight: 700;
    margin: 30px 0;
    text-decoration: underline;
}

.copy {
    font-size: 10px;
    margin-top: 40px;
    padding-bottom: 50px;
    letter-spacing: 1px;
    opacity: 0.6;
}

/* --- VERSIONE DESKTOP --- */
@media (min-width: 1024px) {
    .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: 100vh;
        max-width: 1200px;
        margin: 0 auto;
        align-items: center;
    }

    .hero {
        margin-top: 0;
    }

    .main-menu, .socials {
        text-align: left;
        padding-left: 80px;
    }

    .row {
        justify-content: flex-start;
        font-size: 28px;
    }
}