@font-face {
    font-family: "Awo";
    src: url(../fonts/Audiowide-Regular.woff2);
}
@font-face {
    font-family: "italicTitles";
    src: url(../fonts/Exo2-BlackItalic.woff2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Awo", sans-serif;
}

body {
    background-color: #0a0a0a;
    color: white;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    backdrop-filter: blur(10px);
    background-color: rgba(0,0,0,0.3);
    z-index: 100;
}

header a {
    text-decoration: none;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    transition: background 0.3s;
}

header a:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Hero Devlog */
.hero-devlog {
    min-height: 45vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 140px;
    background-image: url(../images/bg-desc.jpg);
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero-devlog h1 {
    font-family: "italicTitles";
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 10px;
}

.hero-devlog p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    opacity: 0.85;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.entry {
    background-color: #1a1a1a;
    border-left: 4px solid #AE56D7;
    padding: 20px 25px;
    border-radius: 10px;
    position: relative;
    animation: fadeInUp 0.4s ease both;
}

.entry h2 {
    margin-bottom: 5px;
    font-family: "italicTitles";
    font-size: 1.6rem;
}

.entry .date {
    font-size: 0.9rem;
    opacity: 0.7;
    display: block;
    margin-bottom: 10px;
}

.entry p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.entry ul a {color: #fff;}
.entry ul li {
    transition: transform 0.18s;
}

.entry ul li:hover {
    transform: translateX(5px);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

/* Responsive */
@media screen and (max-width: 480px) {
    header {
        padding: 12px 20px;
    }

    .entry {
        padding: 18px 20px;
    }
}
