/* General Styles */
body {
    margin: 0;
    font-family: 'Roboto Slab', serif;
    background: url('content/bg-clouds.jpg') no-repeat fixed top center/cover;
    color: #033;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
}

header, section {
    width: 80%;
    padding: 4em 2em;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0em;
}

h1 {
    font-size: 3em;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 2em;
}

/* About Me Section */
.about-me-section {
    text-align: center;
    background-color: #f5ffff;
}
.about-me-section img {
    width:80%;
}
.tagline {
    font-size: 1.25em;
    margin-top: 0em;
    color: #466;
}
.bio {
    max-width: 600px;
    margin: auto;
    color: #466;
}

/* Portfolio Section */
.portfolio-section {
    background-color: #eff5ff;
}
.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    align-items: center;
}
.portfolio-item {
    background-color: #fff;
    padding: 1em;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    width: 300px;
    text-align: center;
}
.portfolio-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Links */
.project-links a, .contact-section a {
    text-decoration: none;
    color: #0069da;
    transition: color 0.3s;
}
.project-links a:hover, .contact-section a:hover {
    color: #004997;
    text-decoration: underline;
}

/* Projects Section */
.projects-section {
    background-color: #f5ffff;
}
.project-links {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: auto;
    text-align: center;
}
.project-links li {
    margin: 1em 0;
}
.project-links span {
    color: #499;
}

/* Contact Section */
.contact-section {
    background-color: #eff5ff;
    text-align: center;
}
.contact-section a {
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    header, section {
        width: 100%;
        padding: 4em 0.5em;
    }
    .about-me-section img {
        width: 99%;
    }
    .portfolio-grid {
        flex-direction: column;
        align-items: center;
    }
}
