/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FONT */
@font-face {
    font-family: 'Nexa';
    src: url("../nexa/Nexa-Heavy.ttf");
}

/* BODY */
body {
    background-color: #0d0f0d;
    color: #d8e0d3;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

html, body {
    overflow-x: hidden;
}

/* HERO */
.hero {
    padding: 6rem 1rem;
}

h1 {
    font-family: 'Nexa', sans-serif;
    font-size: 4rem;
    color: #e8f5e3;
}

.subtitle {
    color: #8fa98b;
    margin-top: 1rem;
}

/* SECTION TITLES */
.section-title {
    font-family: 'Nexa';
    margin-bottom: 2rem;
    color: #a6dba0;
}

/* PROJECT CARDS */
.project-card {
    display: block;
    padding: 2rem;
    border-radius: 12px;
    background: #151a15;
    color: #d8e0d3;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(120, 255, 120, 0.2);
    border: 1px solid #4CAF50;
}

.project-card h3 {
    color: #c6f7c2;
    margin-bottom: 0.5rem;
}

.project-card.empty {
    opacity: 0.5;
    text-align: center;
}

/* ABOUT */
.about-text {
    max-width: 600px;
    margin: auto;
    color: #9fb59b;
}

/* LINKS */
a {
    color: #7CFF7C;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* BUTTON */
.btn-green {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    background: #1f2a1f;
    color: #7CFF7C;
    border: 1px solid #4CAF50;
    transition: 0.3s;
}

.btn-green:hover {
    background: #4CAF50;
    color: #0d0f0d;
}