/* General Styles */
html {
    box-sizing: border-box;
    font-size: 16px;
    /* Base font size */
}

*,
*:before,
*:after {
    box-sizing: inherit;
    color: #000000;
    /* All text is black */
}

/* Headings */
h1 {
    font-size: 2em;
    /* Larger font size for h1 */
    font-weight: bold;
}

h2 {
    font-size: 1.5em;
    /* Smaller font size for h2 */
    font-weight: bold;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

a {
    color: #0056b3;
    /* Slightly darker blue for links */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.center {
    text-align: center;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Navigation */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    margin-bottom: 5px;
}

.nav-logo img {
    width: auto;
    height: 60px;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px 15px;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-links ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    padding: 0 10px;
}

.nav-links a {
    font-size: 1rem;
    background: #e0e0e0;
    /* Neumorphic style */
    border-radius: 10px;
    padding: 10px 20px;
    box-shadow:
        8px 8px 15px #a3a3a3,
        /* Dark shadow */
        -8px -8px 15px #ffffff;
    /* Light shadow */
    transition: box-shadow 0.3s ease;
}

.nav-links a:hover {
    box-shadow:
        3px 3px 5px #a3a3a3,
        /* Smaller dark shadow */
        -3px -3px 5px #ffffff;
    /* Smaller light shadow */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links ul {
        flex-direction: column;
        position: absolute;
        right: 20px;
        top: 60px;
        background-color: #fff;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        padding: 10px 20px;
        display: none;
    }

    .nav-links li {
        padding: 10px 0;
    }

    .nav-links ul.active {
        display: flex;
    }

    /* Adjusting project list for smaller screens */
    .project-list {
        grid-template-columns: 1fr;
        /* This makes each project take a full row */
    }

    .project-list {
        grid-template-columns: 1fr;
        /* This makes each project take a full row */
    }
}

/* Banner Section */
.banner {
    background: linear-gradient(rgba(255, 255, 255, 0.805), rgba(255, 255, 255, 0.811)), url('assets/images/banner.png') no-repeat center center/cover;
    padding: 100px 0 100px;
    text-align: center;
    margin-top: 20px;
}

.banner--content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Skills Section */
.skill--content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: transparent;
}

.skill--content ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.skill--content li {
    background-color: #e9ecef;
    padding: 15px;
    border-radius: 4px;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Portfolio Section */
#portfolio {
    /* padding: 10px; */
}

.portfolio--content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.technology-section {
    background-color: #e9e9e9;
    margin-bottom: 30px;
    border-radius: 10px;
    padding: 10px;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.project {
    background-color: #fff;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.project img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
    object-fit: cover;
}

/* Contact Section */
#contact {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Footer */
.site-footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
}