/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #ccc; /* Light grey text */
    background-color: #000; /* Black background */
}

/* Container */
.container {
    width: 85%;
    margin: 0 auto;
    max-width: 1200px;
}
h2{
    color: navajowhite;
}
/* Header Styles */
header {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
    color: #ffd700; /* Gold text */
    position: relative;
}

header h1 {
    margin: 0;
    font-size: 30px;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 25px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .line {
    background-color: #ffd700;
    height: 3px;
    width: 30px;
    margin: 3px 0;
    border-radius: 3px;
}

/* Navigation Menu */
#nav-menu {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: #111;
    color: #ccc;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    flex-direction: column;
    align-items: center;
}

#nav-menu.hidden {
    display: none; /* Ensure the menu is hidden by default */
}

#nav-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

#nav-menu ul li {
    margin: 20px 0;
}

#nav-menu ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 24px;
    font-weight: 600;
    display: block;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#nav-menu ul li a:hover {
    background-color: #ffd700; /* Gold background on hover */
    color: #000; /* Black text on hover */
}

/* About Section */
#about {
    padding: 50px 0;
    background-color: #111; /* Very dark grey for section background */
    text-align: center;
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 300px; /* Adjust as needed */
    border-radius: 50%;
    border: 5px solid #ffd700; /* Gold border */
}

.about-text {
    flex: 2;
    color: #ccc; /* Light grey text */
}

.about-text h2 {
    margin-bottom: 20px;
    color: #ffd700; /* Gold color for headings */
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
}

#projects {
    padding: 50px 0;
    background-color: #111;
    text-align: center;
}

.project {
    background-color: #222;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    color: #ccc;
    transition: transform 0.3s ease;
    position: relative;
}

.project-img {
    width: 100%;
    max-width: 400px; 
    border-radius: 5px;
    margin-bottom: 10px;
}

.project:hover {
    transform: scale(1.05);
}

.project h3 {
    color: #ffd700; 
}

.project p {
    font-size: 16px;
    line-height: 1.5;
}

.view-project-btn {
    text-decoration: none;
    color: #ffd700;
    font-weight: 600;
    border: 2px solid #ffd700;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.view-project-btn:hover {
    background-color: #ffd700;
    color: #000;
}

/* Skills Section */
#skills {
    padding: 50px 0;
    background-color: #111;
    text-align: center;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.skill {
    background-color: #222;
    padding: 15px 25px;
    border-radius: 10px;
    color: #ffd700; /* Gold color for skill items */
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.skill:hover {
    background-color: #ffd700;
    color: #000;
}

/* What I Am Good At Section */
#good-at {
    padding: 50px 0;
    background-color: #111;
    text-align: center;
}

.good-at-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.good-at {
    background-color: #222;
    padding: 15px 25px;
    border-radius: 10px;
    color: #ffd700; /* Gold color for good at items */
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.good-at:hover {
    background-color: #ffd700;
    color: #000;
}

/* Contact Section */
#contact {
    padding: 50px 0;
    background-color: #111;
    text-align: center;
}

#contact p {
    font-size: 18px;
    line-height: 1.6;
}

#contact a {
    color: #ffd700;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

/* Footer Styles */
footer {
    background-color: #111;
    color: #ccc;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
}

.social-media {
    margin: 10px 0;
}

.social-icon {
    color: #ffd700;
    font-size: 24px;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ccc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
    
    .hamburger {
        display: flex;
    }
    
    #nav-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
}
