* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, system-ui, sans-serif;
}

body {
    background: #f9fafb;
    color: #111827;
}

/* NAVBAR */
.navbar {
    background: #ffffff;
    padding: 20px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.logo h2 {
    color: #2563eb;
}

.logo span {
    font-size: 13px;
    color: #6b7280;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: #2563eb;
}

/* SOSMED */
.sosmed {
    padding: 80px;
    text-align: center;
}

.sosmed h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.desc {
    color: #6b7280;
    margin-bottom: 60px;
}

.sosmed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.sosmed-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    text-decoration: none;
    color: #111827;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.sosmed-card:hover {
    transform: translateY(-10px);
}

.sosmed-card img {
    width: 60px;
    margin-bottom: 15px;
}

.sosmed-card h3 {
    margin-bottom: 6px;
}

.sosmed-card p {
    color: #2563eb;
    font-weight: 500;
}

/* FOOTER */
footer {
    margin-top: 80px;
    padding: 20px;
    background: #ffffff;
    color: #6b7280;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .navbar {
        padding: 20px 40px;
    }

    .sosmed {
        padding: 40px;
    }
}
