/* =========================
   RESET & BASE
========================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0f1115;
    color: #e5e7eb;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(
        rgba(255,255,255,0.02) 1px,
        transparent 1px
    );
    background-size: 100% 60px;
    pointer-events: none;
}


/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3, h4,
.logo,
.nav-menu a,
.hero-name {
    font-family: 'Michroma', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
    color: #e4e7eb;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    border-bottom: 1px solid #1b1f26;
    padding-bottom: 12px;
}

p {
    color: #9ca3af;
    font-size: 0.95rem;
}

a {
    color: #8b949e;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #ffffff;
}

/* =========================
   LAYOUT
========================= */
main {
    max-width: 1000px;
    margin: auto;
    padding: 60px 20px;
}

section {
    margin-bottom: 120px;
}

/* thin divider */
section::after {
    content: "";
    display: block;
    height: 1px;
    background: #161a21;
    margin-top: 60px;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    background: rgba(20, 23, 28, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #1f2937;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1000px;
    margin: auto;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Michroma', sans-serif;
    letter-spacing: 4px;
    font-size: 0.9rem;
    color: #9ca3af;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}


.nav-menu a,
.nav-link-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;

    font-family: inherit;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;

    color: #9ca3af;
    transition: 0.3s;
}
.nav-menu a:hover,
.nav-link-btn:hover {
    color: #60a5fa;
}



/* =========================
   PROFILE
========================= */
.profile-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.profile-img-square {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border: 1px solid #1f2937;
}

.profile-info {
    max-width: 600px;
}
.profile-desc {
    max-width: 500px;
    color: #9ca3af;
    line-height: 1.8;
    margin-top: 20px;
}

.profile-name {
    font-family: 'Michroma', sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.profile-name::after {
    content: " — BRIDGES NETWORK";
    display: block;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: #374151;
    margin-top: 10px;
}

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

.skills-section {
    padding: 100px 10%;
    border-bottom: 1px solid #1f2937;
}

.skills-section h2,
.contact-section h2 {
    font-family: 'Michroma', sans-serif;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skills-list span {
    border: 1px solid #1f2937;
    padding: 8px 14px;
    margin: 6px;
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9ca3af;
    transition: 0.3s;
}

.skills-list span:hover {
    border-color: #60a5fa;
    color: #60a5fa;
}

/* =========================
   CONTACT
========================= */
.contact-section {
    padding: 100px 10%;
}

.contact-section a {
    color: #9ca3af;
    text-decoration: none;
}

.contact-section a:hover {
    color: #60a5fa;
}

/* =========================
   BUTTON
========================= */
.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    border: 1px solid #374151;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn:hover {
    background: #1f2937;
    border-color: #60a5fa;
    color: #60a5fa;
}

/* =========================
   HERO
========================= */
.hero-section {
    min-height: 100vh; /* FULL SCREEN */
    display: flex;
    align-items: center;
    padding: 0 10%;
    border-bottom: 1px solid #1f2937;
}
.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-img {
    width: 180px;
    height: 180px;
    border-radius: 2px;
    border: 1px solid #1f242c;
}

.hero-name {
    font-size: 1.9rem;
    letter-spacing: 4px;
}

.hero-name::after {
    content: "  // NETWORK ACTIVE";
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: #6b7280;
}

.hero-desc {
    color: #7a828c;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .profile-wrapper,
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    section::after {
        margin-top: 40px;
    }
}
/* =========================
   UI INITIAL STATE
========================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(6px);

    transition: 
        opacity 0.8s ease,
        transform 0.8s ease,
        filter 0.8s ease;
}

/* saat muncul */
.reveal.show {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}