/* General Body Styles */
body {
    font-family: 'Inter', sans-serif; /* You might need to import a similar font from Google Fonts */
    margin: 0;
    padding: 0;
    background-color: #1a1a1a; /* Dark background */
    color: #e0e0e0; /* Light text color */
    line-height: 1.6;
    scroll-behavior: smooth; /* Smooth scrolling for navigation links */
}

/* Global Reset/Box-sizing */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Header and Navigation */
header {
    background-color: #2a2a2a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00bcd4; /* Accent color, similar to Niky's blue */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #00bcd4; /* Accent color on hover */
}

/* Main Content Sections */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    padding: 4rem 0;
    border-bottom: 1px solid #3a3a3a; /* Subtle separator */
}

section:last-of-type {
    border-bottom: none;
}

h1, h2, h3 {
    color: #00bcd4; /* Accent color for headings */
    text-align: center;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

/* Hero Section */
#hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh; /* Takes up most of the viewport height */
    text-align: center;
}

#hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
}

.button {
    display: inline-block;
    background-color: #00bcd4;
    color: #1a1a1a;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.button:hover {
    background-color: #0097a7; /* Darker accent on hover */
    transform: translateY(-2px);
}

/* About Section */
#about p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.skills ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.skills ul li {
    background-color: #3a3a3a;
    color: #e0e0e0;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    border-radius: 5px;
    font-size: 0.9rem;
}

/* Projects Section */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-card h3 {
    margin-top: 0;
    color: #e0e0e0; /* Project titles can be light gray */
    text-align: left;
}

.project-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.project-card a {
    color: #00bcd4;
    text-decoration: none;
    margin-right: 1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.project-card a:hover {
    color: #0097a7;
}

/* Contact Section */
.contact-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-links a {
    background-color: #00bcd4;
    color: #1a1a1a;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-links a:hover {
    background-color: #0097a7;
    transform: translateY(-2px);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    background-color: #2a2a2a;
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* Responsive Design (Basic) */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 0 1rem;
    }

    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 0.5rem 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .contact-links {
        flex-direction: column;
        align-items: center;
    }
}
