/* WATERMARK - YUGATA LABS @yugata.labs */
/* ROOT VARIABLES – Mint Pastel Brutalism */
:root {
    --primary: #9fffd0;
    --primary-light: #d8ffef;
    --text: #111;
    --bg: #ffffff;
    --border-thick: 4px;
    --shadow-offset: 7px;
}

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

body {
    font-family: "Space Grotesk", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* ========================= */
/* NAVBAR */
/* ========================= */
.navbar {
    width: 100%;
    padding: 20px 30px;
    background: var(--primary-light);
    border-bottom: var(--border-thick) solid #000;
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.8rem;
    text-decoration: none;
    color: #000;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: 0.2s;
}

.nav-links li a:hover {
    border-bottom: 3px solid #000;
}

/* Hamburger (mobile) */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 4px;
    background: #000;
}

/* ========================= */
/* HERO SECTION */
/* ========================= */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    border-bottom: var(--border-thick) solid #000;
}

.hero-left {
    padding: 80px 50px;
    background: var(--primary);
    border-right: var(--border-thick) solid #000;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.profile-pic {
    width: 320px;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    border: var(--border-thick) solid #000;
    background: var(--primary-light);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 #000;
    transition: 0.25s;
}

.profile-pic:hover {
    transform: translate(4px, 4px);
    box-shadow: calc(var(--shadow-offset) - 3px) calc(var(--shadow-offset) - 3px) 0 #000;
}

/* HERO TEXT */
.hero-name {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-title {
    font-size: 1.6rem;
    margin: 10px 0 20px;
    font-weight: 600;
}

.hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ========================= */
/* WATERMARK - YUGATA LABS @yugata.labs */
/* UNIFIED BRUTAL COMPONENTS */
/* ========================= */
.brutal-hover {
    transition: 0.2s ease;
}

.brutal-hover:hover {
    transform: translate(4px, 4px);
    box-shadow: calc(var(--shadow-offset) - 3px) calc(var(--shadow-offset) - 3px) 0 #000 !important;
}

/* SOCIAL BUTTONS */
.btn-social {
    font-weight: 700;
    padding: 12px 20px;
    border: var(--border-thick) solid #000;
    background: var(--bg);
    text-decoration: none;
    color: #000;
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 #000;
    display: inline-block;
    transition: 0.2s;
}

.btn-social:hover {
    transform: translate(4px, 4px);
}

/* PRIMARY BUTTON */
.btn-primary {
    background: var(--primary-light);
    padding: 12px 25px;
    border: var(--border-thick) solid #000;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    color: #000;
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 #000;
    display: inline-block;
    transition: 0.2s;
}

.btn-primary:hover {
    transform: translate(4px, 4px);
}

/* ========================= */
/* SECTIONS */
/* ========================= */
.section {
    padding: 100px 40px;
    border-bottom: var(--border-thick) solid #000;
}

.section-alt {
    background: var(--primary-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    border-bottom: var(--border-thick) solid #000;
    display: inline-block;
    padding: 0 10px 10px;
}

/* ABOUT */
.about-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* ========================= */
/* SKILLS */
/* ========================= */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.skill-card {
    padding: 20px;
    font-weight: 700;
    border: var(--border-thick) solid #000;
    background: var(--bg);
    text-align: center;
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 #000;
    margin-bottom: 30px;
    transition: 0.2s;
}

.skill-card:hover {
    transform: translate(4px, 4px);
}

/* ========================= */
/* EXPERIENCE & EDUCATION */
/* ========================= */
.timeline-item {
    border: var(--border-thick) solid #000;
    background: var(--bg);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 #000;
    transition: 0.2s;
}

.timeline-item:hover {
    transform: translate(4px, 4px);
}

.company {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* CONTACT */
.big-btn {
    margin-top: 30px;
    display: inline-block;
}

/* ========================= */
/* FOOTER */
/* ========================= */
.footer {
    padding: 40px;
    background: var(--primary-light);
    text-align: center;
    font-weight: 700;
    border-top: var(--border-thick) solid #000;
}

/* ========================= */
/* RESPONSIVE DESIGN */
/* ========================= */

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        padding: 50px 30px;
        border-right: none;
        border-bottom: var(--border-thick) solid #000;
    }

    .hero-right {
        padding: 40px 20px;
    }

    .profile-pic {
        width: 260px;
        height: 300px;
        box-shadow: 5px 5px 0 #000;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        top: 80px;
        width: 100%;
        background: var(--primary-light);
        flex-direction: column;
        padding: 20px 20px 30px;
        border-top: var(--border-thick) solid #000;
        display: none;
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        padding: 10px 0;
        width: 100%;
        display: block;
        text-align: center;
        border-bottom: none;
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
        margin-right: 10px;
    }

    .navbar {
        padding: 18px 20px;
    }
}

@media (max-width: 500px) {
    .hero-name {
        font-size: 2.6rem;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .section {
        padding: 80px 25px;
    }

    .profile-pic {
        width: 220px;
        height: 260px;
        box-shadow: 4px 4px 0 #000;
    }
}

/* WATERMARK - YUGATA LABS @yugata.labs */