body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #161616;   /* MATCH NAV BAR */
    color: #e5e7eb;
}

html {
    scroll-behavior: smooth;
}


/* NAVBAR CONTAINER */
.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;  /* LEFT + RIGHT */
    background: #161616;
    padding: 0.75rem 1.5rem;
    position: sticky;
    top: 0;
}

/* LEFT SIDE NAME */
.top-nav-name a {
    color: #f1f5f9;
    text-decoration: none;
}

.top-nav-name a:hover {
    color: #ffffff;
}

/* RIGHT SIDE LINKS */
.nav-links {
    display: flex;
    gap: 1.5rem;   /* space between links */
}

.nav-links a {
    text-decoration: none;
    color: #e2e8f0;
}

.nav-links a:hover {
    color: white;
}


.home {
    height: 100vh; /* Full screen */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    font-size: 2rem;
    color: #f1f5f9;

}

/* About Section Wrapper */
.about-section {
    padding: 80px 20px;
    scroll-margin-top: 80px;
}

/* Title */
.section-title {
    font-size: 1.5rem;
    color: #f1f5f9;
    margin-bottom: 5px;
}

/* Divider Line */
.section-divider {
    width: 100%;
    border: 0;
    border-top: 1px solid #444;
    margin: 10px 0 50px;
}

/* Rounded Content Box */
.about-box {
    background: #1f1f1f;          /* soft dark card */
    padding: 20px;
    border-radius: 20px;
    max-width: 1500px; ;
    margin: 0 auto;                  /* centers the box */
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e5e7eb;
    text-align: left;
}

.about-box strong {
    color: #fbbf24; /* yellow highlight like the example */
}



/* skill section  */
.skills-section {
    padding: 80px 20px;
    min-height: 100vh;
}

.skills-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Top: 4 equal cards */
.top-row .skill-card {
    flex: 1;
    max-width: 260px;
}

/* Bottom: 3 equal cards */
.bottom-row .skill-card {
    flex: 1;
    max-width: 300px;
}

.skill-card {
    background: #1f1f1f;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
    color: #e5e7eb;
    transition: 0.2s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
}

.skill-card h3 {
    margin-bottom: 15px;
    color: #fbbf24;
    font-size: 1.3rem;
}

.skill-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-card li {
    margin: 8px 0;
    color: #cfcfcf;
}


/* Volunteering Section  */

.volunteering-section {
    padding: 80px 20px;
    min-height: 100vh;
}

.volunteering-box {
    background: #1f1f1f;          /* soft dark card */
    padding: 20px;
    border-radius: 20px;
    max-width: 1500px; ;
    margin: 0 auto;                  /* centers the box */
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e5e7eb;
    text-align: left;
}

/* Title inside card */
.volunteering-box h3 {
    color: #fbbf24;
    margin-bottom: 5px;
    font-size: 1.4rem;
}

/* Date */
.vol-date {
    color: #c5c5c5;
    margin-bottom: 20px;
}

/* Bullet list */
.volunteering-box ul {
    list-style: disc;
    padding-left: 20px;
}

.volunteering-box li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #e5e7eb;
}

.volunteering-work-title {
    margin: 0;
    font-size: 0.95rem;
    color: #a8b3c6; /* light grey-blue, adjust to your theme */
    font-style: italic;
}


/* work-experience */


.workexperience-section {
    padding: 80px 20px;
    min-height: 100vh;
}

.workexperience-box {
    background: #1f1f1f;          /* soft dark card */
    padding: 20px;
    border-radius: 20px;
    max-width: 1500px; ;
    margin: 0 auto;                  /* centers the box */
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e5e7eb;
    text-align: left;
    margin-bottom: 1.5rem;
}

/* Title inside card */
.workexperience-box h3 {
    color: #fbbf24;
    margin-bottom: 5px;
    font-size: 1.4rem;
}

/* Date */
.workexperience-date {
    color: #c5c5c5;
    margin-bottom: 20px;
}

/* Bullet list */
.workexperience-box ul {
    list-style: disc;
    padding-left: 20px;
}

.workexperience-box li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #e5e7eb;
}

.work-title {
    margin: 0;
    font-size: 0.95rem;
    color: #a8b3c6; /* light grey-blue, adjust to your theme */
    font-style: italic;
}



/* Projects section */
.projects-section {
    padding: 80px 20px;
}

/* Center only the coming soon text */
.coming-soon-box {
    margin-top: 2rem;
    text-align: center;
}

.coming-soon-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #facc15;
    opacity: 0.9;
}

/* Footer */

.footer {
    background: #111;
    padding: 10px 5px;
    text-align: center;
    margin-top: 80px;
    border-top: 1px solid #333;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 15px;
}

.footer-links a {
    color: #fbbf24; /* yellow highlight */
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copy {
    color: #777;
    font-size: 0.9rem;
}

/* Time */

.home-time {
    color: #c5c5c5;
    font-size: 1.4rem;
    margin-top: 10px;
}
