/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@100..900&family=Poppins:wght@400;700&family=Roboto:wght@400;700&display=swap');

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: black;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


/* Header Styles */
header {
    background-color: #fde0ca;
    padding: 1rem 2rem;
    border-bottom: 2px solid #FFFDF2;
    border: solid black 1px;
    border-radius: 0 0 20px 20px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 70px;
}

.navigation a {
    text-decoration: none;
    margin: 0 1.5rem;
    font-family: "Big Shoulders Display", sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: black;
}

.navigation a:hover {
    color: lightcoral;
    text-decoration: underline;
}

.contact-btn {
    padding: 0.5rem 1rem;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.contact-btn:hover {
    background-color: #0056b3;
}

/* Projects Section */
.projects {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.section-title {
    font-family: "Big Shoulders Display", sans-serif;
    font-size: 2.5rem;
    color: #fde0ca;
    text-align: center;
    margin-bottom: 2rem;
}

.project-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fce1e4;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    gap: 2rem;
}

.project-card.ongoing {
    background-color: #ddedea;
}

.project-image {
    width: 50%;
    height: 50%;
    object-fit: cover;
    border-radius: 10px;
}

.project-details {
    max-width: 600px;
}

.project-title {
    font-family: "Big Shoulders Display", sans-serif;
    font-size: 1.8rem;
    color: black;
    margin-bottom: 0.5rem;
}

.project-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: black;
    line-height: 1.6;
}





/* Footer */
.footer {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    background-color: #111;
    color: #fff;
}

.footer-left,
.footer-right {
    width: 45%;
}

.footer-left h3,
.footer-right h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #f0db4f;
}

.footer-left .social-links a {
    color: #fff;
    margin-right: 15px;
    font-size: 20px;
    transition: color 0.3s;
}

.social-links {
    display: flex;
    gap: 10px;
}

.footer-left .social-links a:hover {
    color: #f0db4f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-card {
        flex-direction: column;
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .navigation {
        margin-top: 1rem;
    }

    .navigation a {
        margin: 0.5rem 0;
    }

    .contact-btn {
        margin-top: 1rem;
    }

    .project-image {
        width: 100%;
        height: auto;
    }
}
