:root {
    --primary-color: #EB8861;
    --secondary-color: #8D5F48;
    --background-color: #3b3b3b;
    --container-bg-color: rgba(82, 82, 82, 0.65);
    --text-color: #f8ffe5;
    --accent-color: #ed4d82;
    --font-family: 'Roboto', sans-serif;
}

body {
    background: url("images/bgimgsion.jpg") no-repeat center center fixed;
    background-size: cover;
    background-color: var(--background-color);
    margin: 0;
    font-family: var(--font-family);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 100vh;
    box-sizing: border-box;
}

.container {
    background: var(--container-bg-color);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    color: var(--text-color);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 45px; /* Soft edges */
    margin: 20px 0;
}

.profile-name {
    margin: 10px 0;
    font-size: 24px;
    font-weight: bold;
}

.profile-description {
    margin: 10px 0;
    font-size: 16px;
}

.socials-heading {
    margin-top: 32px;
    color: var(--text-color);
    font-weight: bold;
    font-size: 20px;
}

.links {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.3s;
}

.link:hover {
    background: var(--secondary-color);
}

.link-icon {
    margin-right: 10px;
    width: 24px;
    height: 24px;
}

.footer {
    margin-top: 20px;
    font-size: 14px;
    color: var(--accent-color);
}
