/* =========================
   RESET
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #0a0a0a;
    color: #f1f1f1;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 7%;

    background: rgba(10, 10, 10, 0.85);
    border-bottom: 1px solid #222;

    backdrop-filter: blur(10px);

    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 3px;
}

.navbar nav {
    display: flex;
    gap: 35px;
}

.navbar nav a {
    font-size: 14px;
    color: #aaa;

    transition: color 0.2s ease;
}

.navbar nav a:hover {
    color: #fff;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 120px 7% 80px;

    background:
        radial-gradient(
            circle at 70% 40%,
            #202020 0%,
            #0a0a0a 45%
        );
}

.hero-content {
    max-width: 900px;
}

.eyebrow {
    color: #888;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(48px, 7vw, 96px);

    line-height: 0.95;

    letter-spacing: -4px;

    margin-bottom: 35px;
}

.hero h1 span {
    color: #777;
}

.hero-description {
    max-width: 600px;

    color: #aaa;

    font-size: 18px;

    margin-bottom: 40px;
}


/* =========================
   BUTTONS
========================= */

.hero-buttons {
    display: flex;
    gap: 15px;

    flex-wrap: wrap;
}

.button {
    display: inline-block;

    padding: 14px 25px;

    border: 1px solid #444;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;

    transition:
        background 0.2s ease,
        border 0.2s ease;
}

.button.primary {
    background: #fff;
    color: #000;

    border-color: #fff;
}

.button.primary:hover {
    background: #ccc;
    border-color: #ccc;
}

.button.secondary {
    color: #fff;
}

.button.secondary:hover {
    background: #222;
    border-color: #666;
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 140px 7%;
    max-width: 1400px;
    margin: auto;
}

.section-heading {
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: clamp(36px, 5vw, 64px);

    letter-spacing: -2px;
}


/* =========================
   PROJECT
========================= */

.project-card {
    display: grid;

    grid-template-columns: 1.2fr 1fr;

    min-height: 500px;

    border: 1px solid #292929;

    background: #111;
}

.project-image {
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #202020,
            #080808
        );
}

.project-placeholder {
    text-align: center;

    font-size: 40px;
    font-weight: 900;

    line-height: 1;

    letter-spacing: -2px;

    color: #444;
}

.project-info {
    padding: 60px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-type {
    color: #777;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 20px;
}

.project-info h3 {
    font-size: 42px;

    line-height: 1.1;

    margin-bottom: 25px;
}

.project-info p {
    color: #aaa;

    margin-bottom: 30px;
}

.tags {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 35px;
}

.tags span {
    padding: 7px 12px;

    border: 1px solid #333;

    color: #999;

    font-size: 11px;
}

.project-link {
    font-weight: 700;

    font-size: 13px;

    letter-spacing: 1px;
}

.project-link:hover {
    text-decoration: underline;
}


/* =========================
   SKILLS
========================= */

.skills-section {
    border-top: 1px solid #222;
}

.skills-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid #292929;
    border-left: 1px solid #292929;
}

.skill {
    padding: 45px;

    border-right: 1px solid #292929;
    border-bottom: 1px solid #292929;
}

.skill h3 {
    font-size: 24px;

    margin-bottom: 12px;
}

.skill p {
    color: #888;
}


/* =========================
   ABOUT
========================= */

.about-section {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    border-top: 1px solid #222;
}

.about-content {
    max-width: 600px;
}

.about-content p {
    color: #aaa;

    font-size: 20px;

    margin-bottom: 25px;
}


/* =========================
   CONTENT
========================= */

.content-section {
    border-top: 1px solid #222;
}

.content-description {
    max-width: 600px;

    color: #aaa;

    font-size: 20px;

    margin-bottom: 35px;
}


/* =========================
   CONTACT
========================= */

.contact-section {
    border-top: 1px solid #222;

    text-align: center;

    max-width: none;
}

.contact-section h2 {
    font-size: clamp(45px, 7vw, 90px);

    letter-spacing: -4px;

    margin-bottom: 50px;
}

.contact-links {
    display: flex;

    justify-content: center;

    gap: 35px;
}

.contact-links a {
    color: #aaa;

    border-bottom: 1px solid #444;

    padding-bottom: 5px;
}

.contact-links a:hover {
    color: #fff;
}


/* =========================
   FOOTER
========================= */

footer {
    border-top: 1px solid #222;

    padding: 30px 7%;

    display: flex;
    justify-content: space-between;

    color: #555;

    font-size: 12px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    .navbar {
        padding: 0 5%;
    }

    .navbar nav {
        display: none;
    }

    .hero {
        padding-left: 5%;
        padding-right: 5%;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .section {
        padding: 100px 5%;
    }

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

    .project-image {
        min-height: 300px;
    }

    .project-info {
        padding: 35px;
    }

    .project-info h3 {
        font-size: 32px;
    }

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

    .about-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    footer {
        flex-direction: column;
        gap: 10px;
    }
}
