* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: #fafae7;
    color: #2F241F;
    min-height: 100vh;
}

.navbar {
    background-color: #1E140F;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.2s ease;
}
.nav-logo-wrap:hover {
    transform: scale(1.02);
}
.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}
.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #dfdfdf;
    letter-spacing: 0.5px;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}
.nav-links a {
    color: #CDBEB5;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.25s ease;
}
.nav-links a:hover {
    color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.1);
}
.nav-links a.active {
    color: #1E140F !important;
    background-color: #D4AF37 !important;
    font-weight: 600;
}

/* ==================== KONTEN UTAMA ==================== */
.main-container {
    width: 88%;
    max-width: 1140px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* --- BOX PROFIL (PREMIUM LAYOUT) --- */
.profile-box {
    background-color: #ffffff;
    border-radius: 24px; /* Border radius lebih besar agar terkesan modern */
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(26, 17, 12, 0.04); /* Shadow super halus */
    border: 1px solid rgba(26, 17, 12, 0.03);
}

/* Aksen dekoratif minimalis di pojok box profil (menggantikan border tebal alay) */
.profile-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #D4AF37, #A8841B);
}

.profile-text {
    flex: 1;
}

.profile-text h2 {
    font-size: 2.2rem;
    color: #1A110C;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.profile-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5C524E;
    font-weight: 400;
}

.profile-image {
    position: relative;
    flex-shrink: 0;
}

.profile-image::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1px dashed rgba(212, 175, 55, 0.4);
    border-radius: 50%;
}

.profile-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #ffffff;
    box-shadow: 0 16px 32px rgba(26, 17, 12, 0.1);
    display: block;
    position: relative;
    z-index: 2;
}

.info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.info-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(26, 17, 12, 0.03);
    box-shadow: 0 10px 30px rgba(26, 17, 12, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(26, 17, 12, 0.06);
    border-color: rgba(212, 175, 55, 0.2);
}

.info-card h3 {
    font-size: 1.3rem;
    color: #1A110C;
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #D4AF37;
    border-radius: 50%;
}

.info-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6E635F;
}

@media (max-width: 900px) {
    .profile-box {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 30px;
        gap: 35px;
    }

    .profile-box::before {
        width: 100%;
        height: 4px;
    }

    .profile-text h2 {
        font-size: 1.8rem;
    }

    .profile-image img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 600px) {
    .nav-container {
        width: 92%;
    }
    
    .nav-links {
        display: none; /* Kamu bisa ganti ke hamburger menu nanti jika diperlukan */
    }
    
    .main-container {
        width: 92%;
        margin: 30px auto;
    }
}

.squad-section {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
    padding-bottom: 40px;
}
.squad-header {
    text-align: center;
    margin-bottom: 50px;
}
.squad-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1E140F;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.squad-header p {
    font-size: 1.05rem;
    color: #604d43;
    font-weight: 400;
}

.header-line {
    width: 80px;
    height: 4px;
    background-color: #D4AF37;
    margin: 15px auto 0;
    border-radius: 2px;
}
.squad-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.member-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 20, 15, 0.05);
    border: 1px solid rgba(30, 20, 15, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 20, 15, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}
.member-img-box {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
    background-color: #1E140F;
}
.member-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.member-card:hover .member-img-box img {
    transform: scale(1.06);
}
.member-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.member-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1E140F;
    margin-bottom: 6px;
}
.member-major {
    font-size: 0.95rem;
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}
.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    flex-grow: 1;
    align-content: flex-start;
}
.skill-badge {
    background-color: #f5f4dc;
    color: #2F241F;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(30, 20, 15, 0.05);
}
.portfolio-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #1E140F;
    color: #ffffff;
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.25s ease;
    border: 2px solid transparent;
}
.portfolio-btn i {
    font-size: 0.8rem;
    transition: transform 0.25s ease;
}
.portfolio-btn:hover {
    background-color: #D4AF37;
    color: #1E140F;
}
.portfolio-btn:hover i {
    transform: translate(2px, -2px);
}
@media (max-width: 400px) {
    .squad-container {
        grid-template-columns: 1fr;
    }
}