/* 1. MOVE THESE TO THE TOP */
.bio-name {
    display: block; 
    width: 90%;
    text-align: left;
    font-family: 'Playfair Display', serif !important;
    font-size: 1rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    margin-bottom: 15px !important;
    letter-spacing: 0.1em !important;
    
}

.editorial-link:hover {
    color: #F2E6A1 !important;
    font-style: italic !important;
    transform: translateX(20px) !important;
}

/* 2. THE REST OF THE CODE FOLLOWS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(-45deg, #121212, #2c2c2c, #1a1a1a, #383838);
    background-size: 200% 200%;
    animation: gradientMove 10s ease infinite;
    color: #e6f1ff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Sidebar & Layout */
.sidebar {
    position: fixed;
    left: 0; top: 0;
    height: 100vh;
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
    border-right: 1px solid rgba(255,255,255,0.1);
    z-index: 10;
}

.sidebar-icon {
    width: 20px;
    height: auto;
    filter: invert(1);
    opacity: 0.7;
    margin-bottom: 20px;
    display: block;
}

.home-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    gap: 8vw;
    padding-left: 80px;
}

.content-left {
    flex: 0 0 550px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.profile-pic {
    display: block;
    width: 140px !important;
    height: 140px !important;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 0 20px 0;
    filter: grayscale(1);
    border: 1px solid rgba(255,255,255,0.2);
}

.bio-text {
    font-size: 11px;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 0.1em;
    line-height: 2;
    opacity: 0.7;
    max-width: 500px;
}

.giant-menu {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(4rem, 10vw, 8rem);
}

.editorial-link {
    font-size: inherit;
    font-family: inherit;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.02em;
    display: block;
    color: #e6f1ff;
    text-decoration: none;
    transition: 0.3s ease;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}