/* =========================
GLOBAL STYLE
========================= */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
color: #f0f6fce5;
scroll-behavior: smooth;
}

body {
background-color: #0d1117;
line-height: 1.6;
}

nav {
background-color: #010409;
box-shadow: 0 2px 25px rgba(10, 132, 255, 0.3);
width: 100%;
padding: 30px 40px;
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0;
z-index: 10;
}

.title a {
font-size: 22px;
font-weight: 700;
color: #fff;
text-decoration: none;
}

ul {
display: flex;
gap: 25px;
list-style: none;
}

ul li a {
text-decoration: none;
font-size: 17px;
transition: 0.3s;
}

ul li a:hover {
color: rgba(10, 132, 255, 0.6);
}

.btn {
padding: 8px 20px;
border-radius: 8px;
font-weight: 600;
text-decoration: none;
}

.btn-profile {
background-color: #00d0ff5c;
}

.btn-profile:hover {
background-color: #00d0ffac;
color: #fff;
}


#wrapper {
width: 75%;
margin: 100px auto;
max-width: 1100px;
}

.project h2 {
margin-bottom: 20px;
border-bottom: 1px solid rgba(255, 255, 255, 0.4);
padding-bottom: 10px;
}

.pc {
background-color: #161d27;
border-radius: 15px;
display: flex;
align-items: center;
gap: 20px;
margin-bottom: 25px;
padding: 15px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pc:hover {
transform: scale(1.02);
box-shadow: 0 0 25px rgba(10, 132, 255, 0.3);
}

.image img {
width: 250px;
height: 150px;
object-fit: cover;
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.3);
}

.deskripsi h2 {
margin-bottom: 8px;
}

.deskripsi p {
margin-bottom: 15px;
text-align: justify;
color: #d0d0d0;
}

.btn-more {
border: 1px solid rgba(255, 255, 255, 0.3);
background-color: #06080b;
}

.btn-more:hover {
background-color: rgba(10, 132, 255, 0.2);
}

/* =========================
FOOTER
========================= */
footer {
text-align: center;
padding: 30px 0;
color: #999;
font-size: 14px;
}

/* 📱 Mobile */
@media (max-width: 768px) {
nav {
    flex-direction: column;
    align-items: flex-start;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: all 0.3s;
}

.nav-list {
    display: none;
    width: 100%;
    flex-direction: column;
    background: #010409;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
}

.nav-list.active {
    display: flex;
}

ul {
    flex-direction: column;
    width: 100%;
}

ul li {
    width: 100%;
    padding: 10px 20px;
}

.pc {
    flex-direction: column;
    text-align: center;
}

.image img {
    width: 100%;
    height: auto;
}

#wrapper {
    width: 90%;
}
}

/* 💻 Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
#wrapper {
    width: 85%;
}

.pc {
    gap: 15px;
}

.image img {
    width: 200px;
}
}
