/* 1. SETUP & RESET */
:root {
    --bg: #050505;
    --gold-bright: #f5d76e; 
}

* { box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--gold-bright);
    font-family: 'Optima', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* 2. HEADER - Personal Branding Marika Bortolin */
header {
    text-align: center;
    margin-bottom: 50px;
}

.brand-name {
    font-size: 3rem; /* Nome grande e potente */
    letter-spacing: 15px;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0;
    line-height: 1;
    color: var(--gold-bright);
}

.sub-brand {
    font-size: 1.1rem; /* Studio Abigail sotto, più discreto */
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: 300;
    margin: 15px 0 30px 0;
    opacity: 0.8;
}

.advisor-title {
    font-size: 1.1rem;
    letter-spacing: 5px; 
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 25px;
    /* Usiamo esattamente la stessa variabile del nome */
    color: var(--gold-bright); 
    opacity: 1;
    /* Rimuoviamo ombre e filtri per avere il colore puro */
    text-shadow: none;
    filter: none; 
}

/* 3. GRIGLIA PORTALE - Foto Mezza Altezza */
.portal {
    display: flex;
    gap: 15px;
    width: 100%;
    max-width: 1100px;
    padding: 20px;
}

.portal-item {
    flex: 1;
    position: relative;
    height: 250px; 
    border: 1px solid rgba(245, 215, 110, 0.05);
    text-decoration: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.portal-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    filter: sepia(40%) brightness(150%); /* Seppia meno oscuro */
    transition: 0.9s cubic-bezier(0.2, 1, 0.3, 1);
}

.portal-item:hover img {
    opacity: 1;
    filter: sepia(0%) brightness(180%); /* Si anima a colori */
    transform: scale(1.02);
}

.portal-item span {
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.98); 
    width: 85%;
    padding: 15px 0;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-bright);
    font-weight: 500; 
    border: none;
    border-bottom: 0.7px solid var(--gold-bright); 
    transition: font-weight 0.4s ease, letter-spacing 0.4s ease, background-color 0.4s ease;
}

.portal-item:hover span {
    font-weight: 600;
    border-bottom: 1.2px solid var(--gold-bright); /* Si accende al passaggio */
    background-color: #000;
    letter-spacing: 5.5px;
}

/* 4. FOOTER - Discrezione e Protezione 2026 */
footer {
    margin-top: 60px;
    text-align: center;
    color: var(--gold-bright);
    font-size: 1rem;
    letter-spacing: 5px;
}

.defense-mark {
    display: block;
    margin-top: 15px;
    font-size: 0.6rem;
    opacity: 0.5;
    letter-spacing: 2px;
}

