/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure body is at least full viewport height */
}
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}.logo {
    font-weight: 700;
    font-size: 1.5em;
    color: #fff;
    text-decoration: none;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover,
nav a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Main Content Styles */
main {
    flex: 1; /* Allow main to take up available space */
    padding: 40px 0;
    display: flex;
    flex-direction: column;
}

#content-area {
    transition: opacity 0.5s ease;
    flex: 1; /* Allow content area to expand to fill main */
}

section { /* Regular section styling */
    padding: 40px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

section h2 {
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

/* Hero Section Styles */
#love {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("hero-image.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 20px;
}.love-content {
    max-width: 800px;
    margin: 0 auto;
}

#love h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#love h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Skills Section Styles */.skill-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}.skill {
    width: 45%;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
    background-color: #f9f9f9;
}

/* Projects Section Styles */
#projects.project {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
    background-color: #f9f9f9;
}

#projects.project h3 {
    color: #3498db;
    margin-bottom: 10px;
}

#projects.project p {
    margin-bottom: 0;
}

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

/* Download Resume Button */
#download-cv {
    background-color: #3498db;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

#download-cv:hover {
    background-color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .skill-list {
        flex-direction: column;
    }

  .skill {
        width: 100%;
        margin-bottom: 20px;
    }
}