/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 50px;
    
    background: #1e1e1e;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav h1 {
    font-size: 24px;
    color: #C0C0C0; /* Deep Gold */
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #C0C0C0;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background: url('assets/hero-bg.jpg') no-repeat center center/cover;
}
.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #C0C0C0;
    margin-bottom: 20px;
    box-shadow: 0px 4px 10px rgba(201, 162, 39, 0.5);
}

.hero-content h2 {
    font-size: 42px;
    font-weight: bold;
}

.hero-content span {
    color: #C0C0C0;
}

.hero-content p {
    font-size: 20px;
    margin: 10px 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #C0C0C0;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
    box-shadow: 0px 4px 10px rgba(201, 162, 39, 0.5);
}

.btn:hover {
    background: #b08a23;
    transform: scale(1.05);
}

/* Sections */
section {
    padding: 80px 10%;
    text-align: center;
}

h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #C0C0C0;
    font-weight: bold;
}

/* Skills */
.skills-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.skills-list span {
    padding: 12px 24px;
    background: #1e1e1e;
    border: 2px solid #C0C0C0;
    color: #e0e0e0;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.skills-list span:hover {
    background: #C0C0C0;
    color: black;
}

/* Projects */
.projects-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.project {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    width: 280px;
    border: 2px solid #C0C0C0;
    transition: 0.3s;
}

.project h3 {
    color: #C0C0C0;
}

.project:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(201, 162, 39, 0.3);
}

/* Contact */
#contact a {
    color: #C0C0C0;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.project img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

#contact a:hover {
    color: #b08a23;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #1e1e1e;
    color: #e0e0e0;
}
