/* Reset some default browser styles */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    border: 0;
}

/* Set a background color and font family */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f0f0f0;
}


/* Header styles */
header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header ul {
    list-style-type: none;
}

header ul li {
    display: inline;
    margin-right: 20px;
}

header ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

/* Style for the header content */
.header-content {
    display: flex;
    align-items: center; /* Vertically align the logo and menu items */
    justify-content: space-between; /* Create space between the logo and menu items */
}

/* Style for the logo */
.logo {
    max-width: 250px; /* Default size for larger screens */
    height: auto;
    margin-left: 20px;
}

/* Style for the hidden menu list */
#menu-list {
    list-style-type: none;
    display: flex;
}

#menu-list li {
    margin-right: 20px;
}

/* Style for the menu icon button */
.menu-toggle {
    text-align: right; /* Align the button to the right */
    display: none; /* Hide the button by default */
}

.menu-toggle button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero section styles (optional) */
/* Customize the hero section as needed */

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

/* About Me section styles */
#about {
    background-color: #fff;
    padding: 20px;
    padding-bottom: 40px;
}

#about h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

#about p {
    font-size: 18px;
    line-height: 1.5;
}

/* Projects section styles */
#projects {
    background-color: #fff;
    padding: 20px;
    /* margin-bottom: 20px; */
}

#projects h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.project-card {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.project-card img {
    max-width: 100%;
    height: auto;
}

.project-card h3 {
    font-size: 20px;
    margin: 10px 0;
    font-weight: bold;
}

.project-logo {
    min-width: 100px;
    width: 10%;
    height: auto;
}

.project-short-description {
    /* font-size: 16px; */
    line-height: 1.5;
}

/* Blog section styles */
#blog {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
}

#blog h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

/* Contact section styles */
#contact {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
}

#contact a {
    text-decoration: none;
    color: #0078e7;
    font-weight: bold;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
    .logo {
        max-width: 150px; /* Adjust the width for smaller screens */
    }

    .project-logo {
        max-width: 150px;
    }

    /* Display the menu icon button */
    .menu-toggle {
        display: block;
        text-align: right; /* Keep the button aligned to the right */
    }

    /* Hide the menu items when the screen is smaller */
    #menu-list {
        display: none;
    }

    /* Style for the responsive menu icon */
    #menu-list.active {
        display: flex;
        flex-direction: column;
    }
}

/* Media query for big screens */
@media screen and (min-width: 769px) {
    .logo {
        max-width: 250px;
    }

    .project-logo {
        max-width: 700px;
        max-height: 700;
    }

    /* Hide the menu icon button */
    .menu-toggle {
        display: none;
    }

    /* Display the menu items */
    #menu-list {
        display: flex;
    }
}