/* --- GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth; /* Membuat transisi antar tombol halus */
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #F8F8F8;
    overflow-x: hidden;
}

/* --- NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #2D4331; /* Hijau Tua sesuai gambar */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    color: #FFF;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: #FFF;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover { color: #F39C12; }

.nav-btn {
    background-color: #F39C12;
    padding: 8px 18px;
    border-radius: 20px;
    color: #2D4331 !important;
}

/* --- HERO SECTION --- */
.hero {
    background-color: #2D4331;
    min-height: 100vh;
    padding: 60px 5%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-image-box {
    position: relative;
    width: 40%;
}

.main-profile-img {
    width: 100%;
    max-width: 350px;
    border: 2px solid rgba(255,255,255,0.3);
    filter: sepia(0.2) contrast(1.1);
}

.star-sticker {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 80px;
    z-index: 10;
}

.hero-text-stack {
    width: 60%;
    text-align: right;
}

.hero-text-stack h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 7.5vw;
    line-height: 0.85;
    margin: 0;
}

.text-solid { color: #FFF; }
.text-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px #D4A017;
}

.hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 40px;
}

.description {
    color: #FFF;
    font-size: 0.85rem;
    max-width: 450px;
    opacity: 0.8;
}

.scroll-circle {
    width: 100px;
    height: 100px;
    background-color: #F39C12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    font-size: 0.7rem;
    color: #2D4331;
    text-decoration: none;
    line-height: 1.2;
    transition: 0.3s;
}

.scroll-circle:hover { transform: scale(1.1); }

/* --- ABOUT SECTION --- */
.about {
    padding: 100px 5%;
    background-color: #FFF;
}

.section-tag {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #2D4331;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-left { width: 45%; }
.greeting {
    font-family: 'Archivo Black', sans-serif;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 25px;
}




.about-right {
    width: 50%;
    position: relative;
    display: flex;
    justify-content: center;
}

.name-bg-stack {
    display: flex;
    flex-direction: column;
}

.name-outline {
    font-family: 'Archivo Black', sans-serif;
    font-size: 6rem;
    color: transparent;
    -webkit-text-stroke: 1px #DDD;
    line-height: 0.9;
}

.about-img {
    position: absolute;
    width: 260px;
    border: 8px solid #2D4331;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 15px 15px 0 #F39C12;
}

/* --- EDU & EXP SECTION --- */
.edu-exp {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    background-color: #2D4331;
    padding: 80px 5%;
    gap: 60px;
    color: #FFF;
}

.side-title {
    color: #F39C12;
    font-family: 'Archivo Black', sans-serif;
    margin-bottom: 30px;
}

.time-item {
    margin-bottom: 20px;
    font-size: 1rem;
}

.time-item span { color: #F39C12; margin-right: 10px; }

.exp-card {
    background-color: #F39C12;
    color: #2D4331;
    padding: 40px;
    margin-top: 50px;
}

.exp-card h4 { font-family: 'Archivo Black', sans-serif; margin-bottom: 20px; }
.exp-card ul { list-style: square; padding-left: 20px; }
.exp-card li { margin-bottom: 10px; font-weight: 500; }

.social-hobby-column {
    background-color: #FFF;
    padding: 40px;
    color: #2D4331;
}

.social-icons { display: flex; gap: 15px; margin: 20px 0 40px; }
.s-icon {
    width: 45px;
    height: 45px;
    border: 2px solid #2D4331;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #2D4331;
    font-weight: 800;
    font-size: 0.7rem;
    transition: 0.3s;
}
.s-icon:hover { background: #2D4331; color: #FFF; }

.hobby-grid { display: flex; gap: 25px; margin-top: 20px; }
.h-item { text-align: center; font-size: 1.5rem; line-height: 1.2; }
.h-item span { font-size: 0.6rem; font-weight: 800; text-transform: uppercase; }

/* --- SKILL SECTION --- */
.skill { padding: 80px 5%; background-color: #2D4331; color: #FFF; }
.skill-layout { display: flex; gap: 50px; align-items: flex-start; }
.skill-orange-box {
    background-color: #F39C12;
    padding: 35px;
    width: 40%;
    color: #2D4331;
    font-weight: 600;
}
.skill-orange-box li { margin-bottom: 15px; }
.skill-text { width: 55%; line-height: 1.7; opacity: 0.9; }

/* --- FOOTER --- */
/* --- FOOTER STYLES --- */
.footer-section {
    background-color: #ffffff; /* Latar belakang bersih */
    padding: 80px 5% 40px 5%;
    border-top: 5px solid #2d4331; /* Garis pembatas hijau tua */
    position: relative;
    overflow: hidden;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Membuat teks sejajar di bagian bawah */
    max-width: 1200px;
    margin: 0 auto;
}

/* Styling Nama Outline (Kiri) */
.brand-outline {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem); /* Ukuran fleksibel sesuai layar */
    color: transparent;
    -webkit-text-stroke: 2px #2d4331; /* Garis tepi hijau tua */
    margin: 0;
    line-height: 0.8;
    letter-spacing: -2px;
}

/* Styling Alamat (Kanan) */
.footer-address {
    text-align: right;
    color: #2d4331;
    font-family: 'Outfit', sans-serif;
}

.address-label {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.address-text {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.9;
}

.address-icon {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #f39c12; /* Warna oranye aksen */
}

/* Garis dekoratif paling bawah */
.footer-bottom-bar {
    height: 10px;
    background-color: #2d4331;
    margin-top: 50px;
    width: 100%;
}

/* Responsif untuk layar HP */
@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .brand-outline {
        -webkit-text-stroke: 1.5px #2d4331;
    }

    .footer-address {
        text-align: center;
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hero-container, .about-content, .edu-exp, .skill-layout {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    .hero-image-box, .hero-text-stack, .about-left, .about-right, .skill-orange-box, .skill-text {
        width: 100%;
        text-align: center;
    }
    .hero-text-stack h1 { font-size: 15vw; }
    .about-img { position: relative; transform: none; top: 0; left: 0; margin-top: 20px; }
    .footer-name-outline { font-size: 12vw; }
}