body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1em 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5em 1em;
    display: block;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.header-logo {
    width: 40%;
}

header nav ul li a:hover,
header nav ul li a.active {
    background-color: #555;
}

.hero {
    background-color: #e0f7fa; /* Light blue/teal */
    padding: 4em 0;
    text-align: center;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.headshot {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1em;
    border: 5px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    color: #333;
}

.hero .tagline {
    color: #555;
    margin-bottom: 1.5em;
}

.hero-buttons a {
    display: inline-block;
    padding: 0.8em 1.5em;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 0.5em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.button.primary {
    background-color: #00bcd4; /* Cyan */
    color: #fff;
}

.button.secondary {
    background-color: #fff;
    color: #00bcd4;
    border: 1px solid #00bcd4;
}

.button.primary:hover {
    background-color: #008ba7;
}

.button.secondary:hover {
    background-color: #e0f7fa;
    color: #008ba7;
}

.about {
    padding: 4em 0;
    background-color: #fff;
}

.about h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 1em;
    text-align: center;
}

.about p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5em;
}

.skills {
    margin-top: 2em;
}

.skills h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 1em;
    text-align: center;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1em;
    text-align: center;
}

.skill {
    background-color: #f9f9f9;
    padding: 1em;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.skill i {
    font-size: 2em;
    color: #00bcd4;
    margin-bottom: 0.5em;
}

.skill span {
    display: block;
    color: #555;
}

.portfolio {
    padding: 4em 0;
    background-color: #f4f4f4;
    text-align: center;
}

.portfolio h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 1em;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 1.5em;
}

.project {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.project img {
 width: 50px;
 height: 50px;

}

.project h3 {
    padding: 1em;
    margin: 0;
    font-size: 1.2em;
    color: #333;
    text-align: center;
}

.project p {
    padding: 0 1em 1em;
    margin: 0;
    color: #555;
    text-align: center;
}

.portfolio .view-all a {
    color: #00bcd4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.portfolio .view-all a:hover {
    color: #008ba7;
}

.resume {
    padding: 4em 0;
    background-color: #fff;
    text-align: center;
}

.resume h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 1em;
}

.contact {
    padding: 4em 0;
    background-color: #e0f7fa;
    text-align: center;
}

.contact h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 1em;
}

.contact form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1em;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5em;
    color: #333;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.8em;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
}

.contact .social-links {
    margin-top: 2em;
}

.contact .social-links a {
    display: inline-block;
    margin: 0 1em;
    font-size: 1.5em;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact .social-links a:hover {
    color: #00bcd4;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1em 0;
    position: sticky;
    bottom: 0;
    width: 100%;
}

/* Placeholder Images - Replace these with your actual images */
/* You'll need to create 'placeholder-headshot.jpg', 'placeholder-project1.jpg', 'placeholder-project2.jpg' */




