/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@300;400;600&display=swap');

:root {
    --gold: #ffc107;
    --dark-bg: #0a0a0a;
    --card-bg: #141414;
}

body {
    background-color: var(--dark-bg);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
}

/* Developer Card Styling */
.dev-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 193, 7, 0.1);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
}

.dev-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.15);
}

.dev-img-wrapper {
    position: relative;
    padding: 20px;
    text-align: center;
}

.dev-img-wrapper img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%; /* Membuat foto melingkar agar lebih elegan */
    border: 4px solid var(--gold);
    padding: 5px;
    background: var(--card-bg);
}

.gelar-sampesuvu {
    display: block;
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 5px;
    font-weight: 600;
}

.dev-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0;
}

.dev-position {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.dev-role-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.1);
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    border: 1px solid var(--gold);
    margin-top: 10px;
}

.social-links .btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    border-radius: 50%;
    margin: 0 5px;
    transition: 0.3s;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.social-links .btn:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    transform: scale(1.1);
}

/* Background Ornament agar tidak kosong */
.bg-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.05) 0%, transparent 70%);
    z-index: -1;
}