/* General Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', sans-serif;
}

/* Body Styles */
body {
    background-color: #f9f9fb;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Main Container */
.container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

/* Header Section */
header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.headshot img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0073e6;
}

.contact-info h1 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.2rem;
}

.contact-info p {
    font-size: 1rem;
    color: #555;
}

.contact-info a {
    color: #0073e6;
    text-decoration: none;
}

/* Section Styles */
section {
    margin-bottom: 2rem;
}

.bio {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
    border-left: 4px solid #0073e6;
}

h2 {
    font-size: 1.5rem;
    color: #0073e6;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.4rem;
}

h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.skill-group, .job {
    margin-bottom: 1rem;
}

.skill-group h3 {
    font-weight: bold;
    color: #0073e6;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li::before {
    content: "• ";
    color: #0073e6;
}

p {
    margin: 0.5rem 0;
}

/* Links */
a {
    color: #0073e6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* References Section */
.references {
    font-size: 1rem;
    color: #555;
}

/* Download Button */
.download-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff !important; /* Add !important to force white text */
    background-color: #007BFF;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}



.download-button:hover {
    background-color: #0056b3; /* Darker blue for hover */
    color: #f0f0f0; /* Slightly lighter white text for hover */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.7); /* Glow effect */
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        max-width: 600px;
        padding: 20px;
    }

    header {
        flex-direction: column;
        text-align: center;
    }

    .download-button {
        display: inline-block;
        margin-top: 10px;
        padding: 10px 20px;
        font-size: 16px;
        font-weight: bold;
        color: #ffffff !important; /* Add !important to force white text */
        background-color: #007BFF;
        text-decoration: none;
        border-radius: 5px;
        border: none;
        cursor: pointer;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease;
    }
    
    
    .download-button:hover {
        background-color: #0056b3;
        box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
        transform: translateY(-2px);
    }
}
