/* Color Variables */
:root {
    --green: hsl(75, 94%, 57%);
    --white: hsl(0, 0%, 100%);
    --greyA: hsl(0, 0%, 20%);
    --greyB: hsl(0, 0%, 12%);
    --greyC: hsl(0, 0%, 8%);
}

/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    list-style: none;
    text-decoration: none;
}

/* Body Styles */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--greyC);
}

/* Card Styles */
.card {
    background-color: var(--greyB);
    width: 350px;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Profile Image */
.card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Name & Location */
.card h2 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}

.card h4 {
    color: var(--green);
    font-size: 14px;
    font-weight: 600;
    margin: 5px 0;
}

/* Description */
.card p {
    color: var(--white);
    font-size: 14px;
    margin: 15px 0;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.social-links li a {
    display: block;
    padding: 12px;
    background-color: var(--greyA);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Hover Effect */
.social-links li a:hover {
    background-color: var(--green);
    color: var(--greyC);
}
