/* Core Reset */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: #000;
    font-family: 'Inter', sans-serif;
}

/* Full Screen Background */
/* THE FULL-SCREEN BACKGROUND ENGINE */
.executive-hero {
    height: 100vh; /* Takes up the whole screen height */
    width: 100%;
    /* YOUR DIRECT LINK */
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4)), 
                      url('https://robpayneiii.com/new-look/executive-photo/THE%20NEW-HOME-PLATE5.jpg');
    
    background-size: cover;      /* Makes sure the photo doesn't stretch or distort */
    background-position: center; /* Keeps your face/subject centered */
    background-attachment: fixed; /* Optional: keeps the photo still if you scroll */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Editorial Overlays */
.editorial-stamps {
    position: absolute;
    top: 3vh;
    width: 94%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}
.vol-stamp { font-size: 10px; color: #D4AF37; letter-spacing: 0.5vw; font-weight: 900; }
.est-stamp { font-size: 10px; color: #39FF14; letter-spacing: 1px; font-weight: 900; }

/* Artist Identity */
.artist-name {
    font-family: 'Bodoni Moda', serif;
    font-size: 8vw;
    color: #FFF;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
}
.phonetic-key {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.trillion-tag {
    color: #1B8366;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Floating Navigation Engine */
.floating-nav-container {
    position: absolute;
    bottom: 6vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px); /* Frost effect */
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.7);
    z-index: 1000;
}

/* Mobile Responsive Tweaks */
@media (max-width: 768px) {
    .artist-name { font-size: 12vw; }
    .floating-nav-container { 
        width: 85%; 
        padding: 10px; 
        border-radius: 20px; 
    }
}
