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

body {
    background-color: #1e202e; /* Dark Navy Background */
    color: #ffffff;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* MAIN CONTAINER */
.main-container {
    flex: 1; /* Pushes footer to bottom */
    width: 100%;
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center; /* This forces the "Box" to be in the middle of the screen */
}

/* --- HEADER STYLES (CENTERED) --- */
.profile-header {
    text-align: center; /* Forces Name/Photo to center */
    margin-bottom: 3rem;
}

.image-container {
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem auto; /* Centers the image block */
}

.profile-pic {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover; /* Ensures zoomed-in look without distortion */
    object-position: top center; /* Focuses on face if image is tall */
    border: 3px solid rgba(255, 255, 255, 0.15);
    background-color: #2a2d3e;
}

.name {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.subtitle {
    font-size: 1.1rem;
    color: #5c8bd6; /* Blue accent color */
    font-weight: 500;
}

/* --- CONTENT BOX (LEFT ALIGNED TEXT) --- */
.content-box {
    width: 100%;
    max-width: 550px; /* Limits width like a card */
    text-align: left; /* KEY: Forces the text inside to read Left-to-Right */
}

.text-block {
    margin-bottom: 2.5rem;
}

.text-block p {
    color: #d1d5db; /* Light Grey text */
    font-size: 1rem;
    line-height: 1.6; /* Good spacing between lines */
    margin-bottom: 0.8rem;
}

/* --- FOOTER (MUTED) --- */
.footer-bar {
    /* Muted Dark Slate - Professional and not distracting */
    background-color: #2d3748; 
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.icon-container {
    display: flex;
    gap: 2rem;
}

/* ICON STYLES */
.icon-btn {
    color: #ffffff; /* WHITE icons for high contrast */
    opacity: 0.7;   /* Slightly transparent */
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    opacity: 1; /* Full white on hover */
    transform: translateY(-2px);
}
