/* ============================================
   FONT — style (Source Sans Pro)
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

/* ============================================
   GLOBAL STYLES
   ============================================ */
body {
    margin: 0;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: white;
    background: #111;
}

a {
    color: white;
    text-decoration: none;
}

/* ============================================
   FIXED FULL-WIDTH BLACK NAVIGATION BAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    height: 65px;
    width: 100%;
    background: black;
    display: flex;
    align-items: center;
    padding-left: 25px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.navbar a {
    color: white;
    margin-right: 25px;
    font-size: 20px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 4px;
    transition: 0.2s;
}

.navbar a:hover {
    background: #333;
}

.navbar a.active {
    border: 2px solid white;
}

/* ============================================
   FULLSCREEN BANNER
   ============================================ */
.banner-wrapper {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   CENTERED BANNER TEXT — enlarged
   ============================================ */
.banner-text {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 4px 18px rgba(0,0,0,0.8);
}

.banner-text h1 {
    font-size: 80px;
    margin: 0;
    font-weight: 700;
}

.banner-text h2 {
    font-size: 38px;
    margin-top: 15px;
    font-weight: 300;
}

/* ============================================
   MAIN CONTENT — centered black content box
   ============================================ */
.container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px 30px;
    background: #000;
    text-align: center;
    border-radius: 8px;
    margin-top: 120px; /* spacing below fixed navbar */
    font-size: 22px;
}

/* ============================================
   PROFILE IMAGE — larger, centered with name overlay
   ============================================ */
/* .profile-name-overlay {
    position: relative;
    display: inline-block;
    margin: 0 auto;
} */
.profile-name-overlay {
    width: fit-content;
    margin: 0 auto;
}

.profile {
    width: 480px;       /* large image */
    height: 320px;
    object-fit: cover;
    border-radius: 6px;
}

/* Name overlay on image */
.profile-name {
    position: absolute;
    bottom: 12px;
    left: 16px;
    font-size: 40px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
    margin: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    text-decoration: none;
    color: white;
    border-radius: 6px;
    margin-top: 20px;
}

.btn:hover {
    background: #005fcc;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    text-align: center;
    margin: 60px 0 20px;
    color: #bbb;
}
