/* Basic Reset */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'IBM Plex Sans', sans-serif; /* A font similar to the image */
    background-color: #f0f0f0; /* Light grey background for the whole page */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Make sure the body takes full viewport height */
}

/* Page Wrapper for the main card-like design */
.page-wrapper {
    width: 90%;
    max-width: 1200px; /* Adjust as needed for larger screens */
    background-color: #f8f8f8; /* Slightly off-white for the main content area */
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Subtle shadow */
    padding: 50px; /* Internal padding */
    display: flex;
    flex-direction: column;
}

/* Header Styling */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px; /* Space below header */
    padding-bottom: 20px; /* Padding for potential border if added */
    /* border-bottom: 1px solid #eee; /* Optional: uncomment for a subtle separator */
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header .logo .fa-moon {
    font-size: 20px;
    color: #333;
}



.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px; /* Space between nav items */
}

.main-nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: #333;
}

.social-icons {
    display: flex;
    gap: 15px; /* Space between social icons */
}

.social-icons a {
    color: #555;
    font-size: 25px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #333;
}

/* Hero Section Styling */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1; /* Allows this section to take available space */
    padding-bottom: 50px;
}

.hero-content {
    flex: 1; /* Takes up available space */
    padding-right: 50px; /* Space between text and illustration */
}

.hero-content h1  {
    font-size: 60px; /* Large font size for impact */
    font-weight: 600; /* Bolder font weight */
    color: #333;
    line-height: 1.2;
    margin: 0;
}



h3 {
    font-size: 25px; /* Large font size for impact */
    font-weight: 600; /* Bolder font weight */
    color: #333;
    line-height: 1.2;
    margin: 0;
}

.logo  {
    font-size: 25px; /* Large font size for impact */
    font-weight: 600; /* Bolder font weight */
    color: #333;
    line-height: 1.2;
    margin: 0;
}





.logo-subtext  {
    font-size: 15px; /* Large font size for impact */
    font-weight: 600; /* Bolder font weight */
    color: #333;
    line-height: 1.2;
    margin: 0;
}












.hero-illustration {
    flex-shrink: 0; /* Prevents illustration from shrinking */
    text-align: center;
}

.hero-illustration img {
    max-width: 300px; /* Adjust max width of illustration */
    height: auto;
    display: block; /* Removes extra space below image */
}

.illustration-caption {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
}







.download-btn {
    border: black solid 1px; /* Border for the button */
    transition: all 0.3s ease; /* Smooth transition for hover effects */

    padding: 10px 20px; /* Padding for the button */
    font-size: 16px; /* Font size for the button */ 
 
}
    


.skills-section{

    margin-top: 50px;
    padding: 20px;
    background-color: #f8f8f8; /* White background for the skills section */
    border-radius: 10px; /* Rounded corners for the skills section */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between items */


}














/* Responsive Adjustments */
@media (max-width: 900px) {
    .page-wrapper {
        padding: 30px;
        width: 95%;
    }

    .header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }

    .main-nav ul {
        gap: 25px;
    }

    .social-icons {
        margin-top: 10px;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-illustration img {
        max-width: 250px;
    }
}

@media (max-width: 600px) {
    .page-wrapper {
        padding: 20px;
    }

    .header .logo {
        flex-direction: column;
        gap: 10px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-illustration img {
        max-width: 200px;
    }
}

@media (max-width: 400px) {
    .header .logo .fa-moon {
        font-size: 18px;
    }
    .header .logo .circle-logo {
        width: 35px;
        height: 35px;
    }
    .main-nav ul li a {
        font-size: 15px;
    }
    .social-icons a {
        font-size: 16px;
    }
    .hero-content h1 {
        font-size: 28px;
    }
}




/* Skills Section */

.skills-category {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.skills-category h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #222;
}

.skills-category ul {
    list-style-type: disc;
    padding-left: 20px;
}

.skills-category ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
}



/* Projects Section */
.projects-section {
    margin-top: 50px;
}

.projects-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.project-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* Responsive Adjustments for Projects */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .projects-section h2 {
        font-size: 28px;
    }

    .project-card h3 {
        font-size: 18px;
    }

    .project-card p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .projects-section {
        margin-top: 40px;
    }

    .projects-section h2 {
        font-size: 24px;
    }

    .project-card {
        padding: 15px;
    }

    .project-card h3 {
        font-size: 16px;
    }

    .project-card p {
        font-size: 14px;
    }
}
