/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    position: relative;
    height: 250px;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Ensures content doesn't overflow */
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('uk.jpg') no-repeat center center;
    background-size: cover; /* Ensures the image covers the entire header */
    opacity: 0.5;
    z-index: 0; /* Places the image behind the content */
}

.header-content {
    position: relative;
    z-index: 1; /* Ensures the content is above the background image */
    padding: 40px 20px;
}

.header-content .profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    font-size: 1.2em;
    margin-top: 10px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px;
    width: 100%;
    position: relative;
    bottom: 0;
}

main {
    padding: 40px 20px;
}

/* Section Styles */
section {
    background-color: #fff;
    padding: 30px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

section h2 {
    color: #ff7e5f;
    margin-bottom: 20px;
    font-size: 2em;
}

section p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}

/* About Me Section */
section#about {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

section#about .about-img {
    width: 400px;
    height: auto;
    border-radius: 0;
    margin-bottom: 20px;
}

section#about p {
    margin-top: 20px;
}

section#about h3 {
    margin-top: 20px;
}

/* Resume Button */
.resume-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff7e5f;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}

.resume-btn:hover {
    background-color: #feb47b;
}

/* Skills Section Styles */
section#skills ul {
    list-style-type: none;
    padding: 0;
}

section#skills li {
    margin: 10px 0;
    font-size: 1.1em;
    background-color: transparent; /* No background color */
}

/* Certifications Section Styles */
section#certifications ul {
    list-style-type: disc;
    padding-left: 20px;
}

section#certifications li {
    margin: 10px 0;
    font-size: 1.1em;
}

/* Projects Section Styles */
section#projects {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.projects-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.project-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.project-card h3 {
    margin-top: 10px;
    font-size: 1.5em;
}

.project-card p {
    font-size: 1em;
    line-height: 1.6;
    margin: 10px 0;
}

.project-card a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff7e5f;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.project-card a:hover {
    background-color: #feb47b;
}

/* Contact Section Styles */
section#contact ul {
    list-style-type: none;
    padding: 0;
}

section#contact li {
    margin: 10px 0;
    font-size: 1.1em;
    display: flex;
    align-items: center;
}

section#contact a {
    color: #ff7e5f;
    text-decoration: none;
}

section#contact a:hover {
    text-decoration: underline;
}

/* Adding Social Media Icons */
section#contact ul li img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
