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

html {
    scroll-behavior: smooth;
}

body {
    background: #080c14;
    color: #e5e7eb;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
}

a {
    color: inherit;
}

.container {
    width: min(1100px, 90%);
    margin: auto;
}


/* NAVBAR */

.navbar {
    position: sticky;
    top: 0;

    z-index: 100;

    background: rgba(8, 12, 20, .9);

    backdrop-filter: blur(10px);

    border-bottom: 1px solid #1e293b;
}

.nav-container {
    height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.logo {
    font-size: 24px;

    font-weight: 800;

    text-decoration: none;

    color: #38bdf8;
}

.nav-links {
    display: flex;

    gap: 28px;
}

.nav-links a {
    color: #94a3b8;

    font-size: 14px;

    text-decoration: none;
}

.nav-links a:hover {
    color: #38bdf8;
}


/* HERO */

.hero {
    min-height: 90vh;

    display: flex;

    align-items: center;
}

.hero-label,
.section-label {
    color: #38bdf8;

    letter-spacing: 3px;

    font-size: 12px;

    font-weight: bold;
}

.hero h1 {
    margin-top: 15px;

    font-size: clamp(48px, 8vw, 86px);

    line-height: 1.05;
}

.hero h1 span {
    display: block;

    color: #38bdf8;
}

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

    margin-top: 30px;

    color: #94a3b8;

    font-size: 19px;
}

.tech-line {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 25px;
}

.tech-line span {
    color: #cbd5e1;

    border: 1px solid #334155;

    padding: 5px 10px;

    border-radius: 4px;

    font-size: 13px;
}

.hero-buttons {
    display: flex;

    gap: 15px;

    margin-top: 35px;
}

.button {
    padding: 11px 22px;

    border-radius: 5px;

    text-decoration: none;

    background: #38bdf8;

    color: #020617;

    font-weight: bold;
}

.button.secondary {
    background: transparent;

    border: 1px solid #334155;

    color: #e5e7eb;
}


/* SECTIONS */

.section {
    padding: 110px 0;
}

.dark-section {
    background: #0d1422;

    border-top: 1px solid #1e293b;

    border-bottom: 1px solid #1e293b;
}

.section h2 {
    font-size: 42px;

    margin: 10px 0 40px;
}


/* ABOUT */

.about-grid {
    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 70px;
}

.text {
    max-width: 700px;

    color: #94a3b8;

    font-size: 17px;

    margin-bottom: 20px;
}

.about-stats {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.about-stats div {
    padding: 20px;

    border-left: 2px solid #38bdf8;

    background: #0f172a;
}

.about-stats strong {
    display: block;

    font-size: 25px;

    color: #38bdf8;
}

.about-stats span {
    color: #64748b;

    font-size: 13px;
}


/* SKILLS */

.skills-grid {
    display: grid;

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

    gap: 18px;
}

.skill-card {
    padding: 25px;

    background: #111827;

    border: 1px solid #1e293b;

    border-radius: 6px;
}

.skill-card h3 {
    margin-bottom: 10px;
}

.skill-card p {
    color: #64748b;
}


/* PROJECTS */

.projects-grid {
    display: grid;

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

    gap: 20px;
}

.project-card {
    padding: 30px;

    background: #0d1422;

    border: 1px solid #1e293b;

    border-radius: 6px;

    transition: .2s;
}

.project-card:hover {
    transform: translateY(-5px);

    border-color: #38bdf8;
}

.project-number {
    color: #38bdf8;

    font-size: 13px;

    margin-bottom: 25px;
}

.project-card h3 {
    font-size: 22px;

    margin-bottom: 15px;
}

.project-card p {
    color: #64748b;

    margin-bottom: 25px;
}

.project-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 6px;
}

.project-tags span {
    background: #1e293b;

    padding: 4px 8px;

    font-size: 11px;

    border-radius: 3px;

    color: #cbd5e1;
}


/* EXPERIENCE */

.experience-card {
    padding: 35px;

    margin-bottom: 25px;

    border-left: 3px solid #38bdf8;

    background: #111827;

    display: grid;

    grid-template-columns: 1fr auto;

    gap: 20px;
}

.experience-card h3 {
    font-size: 24px;
}

.company {
    color: #38bdf8;
}

.date {
    color: #64748b;
}

.experience-card ul {
    grid-column: 1 / -1;

    padding-left: 20px;

    color: #94a3b8;
}


/* EDUCATION */

.education {
    display: flex;

    flex-direction: column;

    gap: 25px;
}

.education > div {
    padding: 30px;

    border: 1px solid #1e293b;

    background: #0d1422;
}

.education h3 {
    font-size: 22px;
}

.education p {
    color: #94a3b8;
}

.education span {
    color: #64748b;

    font-size: 13px;
}


/* CONTACT */

.contact-section {
    padding: 120px 0;

    text-align: center;

    background: #0f172a;
}

.contact-section h2 {
    font-size: 50px;

    margin: 15px 0;
}

.contact-section p {
    color: #64748b;
}

.contact-links {
    display: flex;

    justify-content: center;

    gap: 30px;

    margin-top: 30px;
}

.contact-links a {
    color: #38bdf8;

    text-decoration: none;
}


/* FOOTER */

footer {
    padding: 35px 0;

    border-top: 1px solid #1e293b;

    color: #475569;

    font-size: 13px;
}

footer .container {
    display: flex;

    justify-content: space-between;
}


/* MOBILE */

@media (max-width: 750px) {

    .nav-links {
        display: none;
    }

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

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

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

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

    .contact-links {
        flex-direction: column;
    }

    footer .container {
        flex-direction: column;

        gap: 10px;
    }

}