/* developer.css */
:root {
    --pink: #D95D8A;
    --bg-pink: #FFF9FB;
    --dark: #333;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-pink);
    color: var(--dark);
}

/* Header Styling */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: white;
    border-bottom: 1px solid #FEEAEE;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
}

.logo img {
    width: 35px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

nav ul li a.active {
    color: var(--pink);
    font-weight: 700;
}

/* Section Content */
.dev-section {
    padding: 80px 20px;
    text-align: center;
}

.dev-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin: 0;
}

.dev-subtitle {
    color: var(--pink);
    margin-bottom: 50px;
    font-weight: 500;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.dev-card {
    background: white;
    padding: 50px 30px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
}

/* Foto Oval */
.img-oval {
    width: 140px;
    height: 80px;
    margin: 0 auto 30px;
    background: #fdfdfd;
    border: 1px solid #FEEAEE;
    border-radius: 100px / 60px;
    /* Membuat bentuk oval */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-oval img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.dev-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin: 10px 0;
}

.role {
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

/* Buttons Media Sosial */
.social-btns {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-ig,
.btn-git {
    text-decoration: none;
    font-size: 0.8rem;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid #FEEAEE;
    transition: 0.3s;
}

.btn-ig {
    color: var(--pink);
    background: #FFF5F7;
}

.btn-git {
    color: #555;
    background: #f9f9f9;
}

.btn-ig:hover {
    background: var(--pink);
    color: white;
}