:root {
    --accent: #f6c514;
    --accent-2: #ffb400;
    --dark: #0b0b0b;
    --muted: #6b6b6b;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark);
    background: #f4f4f4;
    overflow-x: hidden
}

/* Navbar */
.topbar {
    background: transparent;
    padding: 16px 24px;
    transition: all .25s ease
}

.topbar.scrolled {
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06)
}

.brand img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin-right: 10px
}
.KKp{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin-right: 10px
}
.nav-img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px
    fit-content;
}
.nav-link {
    font-weight: 600
}

/* HERO */
.hero {
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="800"><defs><pattern id="g" width="80" height="80" patternUnits="userSpaceOnUse"><g fill="%23efefef"><polygon points="0,0 40,0 20,34"/><polygon points="40,0 80,0 60,34"/><polygon points="20,34 60,34 40,68"/></g></pattern></defs><rect width="100%" height="100%" fill="url(%23g)" opacity="0.65"/></svg>');
    background-size: cover;
    padding: 80px 16px
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800
}

@media(min-width:992px) {
    .hero h1 {
        font-size: 64px
    }
}

.typed {
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 16px
}

.typed .caret {
    display: inline-block;
    width: 2px;
    height: 1.05em;
    background: var(--dark);
    animation: blink 1s infinite
}

@keyframes blink {
    50% {
        opacity: 0
    }
}

.btn-accent {
    background: linear-gradient(180deg, var(--accent), var(--accent-2));
    color: #111;
    padding: 12px 26px;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(246, 197, 20, 0.22)
}

/* Social side */
.social-vertical {
    position: fixed;
    left: 18px;
    top: 40%;
    transform: translateY(-50%);
    z-index: 1000
}

.social-vertical a {
    display: block;
    background: #fff;
    width: 46px;
    height: 46px;
    margin: 6px 0;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #111
}

section {
    padding: 80px 0
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px
}

.muted {
    color: var(--muted)
}

.project-card {
    cursor: pointer;
    transition: transform .28s cubic-bezier(.2, .9, .2, 1), box-shadow .28s cubic-bezier(.2, .9, .2, 1), filter .25s ease;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.03);
    filter: brightness(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 30px rgba(246, 197, 20, 0.22);
}

.project-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.12);
    filter: brightness(1.05);
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 26px rgba(0, 0, 0, 0.08)
}

.card-img-top {
    height: 200px;
    object-fit: cover
}

footer {
    padding: 30px 0;
    background: #fafafa;
    text-align: center
}