/* RESET CURSOR */
* {
    cursor: default !important;
}

/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #020617;
    color: #e2e8f0;
    line-height: 1.7;
}

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(2,6,23,0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    font-weight: bold;
    font-size: 1.2rem;
    color: #38bdf8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #e2e8f0;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #38bdf8;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 80px;
    background: url('../assets/images/papua.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(2,6,23,0.7), #020617);
}

.hero-content {
    position: relative;
    max-width: 700px;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    color: #94a3b8;
    margin-bottom: 30px;
}

/* BUTTON */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    padding: 12px 25px;
    background: #38bdf8;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #0ea5e9;
}

.btn-secondary {
    padding: 12px 25px;
    border: 1px solid #38bdf8;
    color: #38bdf8;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #38bdf8;
    color: white;
}

/* ================= IMAGE ================= */
.hero-image img {
    width: 100%;
    height: auto;
    filter: brightness(0.8);
}

/* ================= STORY ================= */
.story {
    padding: 100px 80px;
    max-width: 900px;
    margin: auto;
}

.story h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.story p {
    margin-bottom: 20px;
    color: #cbd5f5;
}

.highlight {
    color: #38bdf8;
    font-weight: 500;
}

/* ================= TIMELINE ================= */
.timeline-section {
    padding: 100px 80px;
}

.timeline-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.timeline {
    border-left: 2px solid #38bdf8;
    max-width: 800px;
    margin: auto;
    padding-left: 30px;
}

.item {
    margin-bottom: 40px;
    position: relative;
}

.item::before {
    content: '';
    position: absolute;
    left: -39px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: #38bdf8;
    border-radius: 50%;
}

.item h3 {
    margin-bottom: 10px;
    color: #38bdf8;
}

.item p {
    color: #cbd5f5;
}

/* ================= FOOTER ================= */
footer {
    text-align: center;
    padding: 40px 20px;
    background: #020617;
    border-top: 1px solid #1e293b;
}

/* ================= ANIMATION ================= */
.fade {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.fade.show {
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .hero {
        padding: 0 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .story {
        padding: 60px 20px;
    }

    .timeline-section {
        padding: 60px 20px;
    }
}

.hero h1 {
    white-space: normal;
    line-height: 1.3;
}

.logo {
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.logo span {
    color: #38bdf8;
}