/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

header {
    background: #343a40;
    color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #ff6f61;
}

main {
    padding: 100px 20px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

section#hero {
    text-align: center;
    padding: 100px 20px;
    background: #ff6f61;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

section#hero h1 {
    font-size: 3rem;
    margin: 0 0 10px;
}

section#hero p {
    font-size: 1.2rem;
    margin: 0;
}

section {
    margin-bottom: 50px;
}

section h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff6f61;
    display: inline-block;
    padding-bottom: 5px;
}

section#about, section#portfolio, section#blog, section#cv, section#contact {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.project {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.project img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.project h2 {
    margin: 0 0 10px;
    font-size: 1.5rem;
}

.project p {
    margin: 0;
}

.cv-download {
    text-align: center;
    margin-top: 20px;
}

.cv-download a {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    background: #ff6f61;
    color: #fff;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s;
}

.cv-download a:hover {
    background: #e65550;
}

.blog-post {
    margin-bottom: 30px;
}

.blog-post h2 {
    margin: 0 0 10px;
    font-size: 1.5rem;
}

.blog-post p {
    margin: 0;
    font-size: 1rem;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin: 10px 0 5px;
}

form input, form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

form button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: #ff6f61;
    color: #fff;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

form button:hover {
    background: #e65550;
}

footer {
    background: #343a40;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

footer .social-icons {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

footer .social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s;
}

footer .social-icons a:hover {
    color: #ff6f61;
}
