/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* CSS Reset & Base Variables */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Cormorant Garamond', -apple-system, sans-serif;
    background-color: #000;
    color: rgba(255, 255, 255, 0.9);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.6;
    font-size: 1.2rem;
    padding: 2rem;
}

/* Layout */
.card {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
    animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header Section */
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .header {
        flex-direction: row;
        text-align: left;
        gap: 2.5rem;
    }
}

.profile-img {
    width: 100%;
    max-width: 180px;
    height: auto;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Social Links */
.socials {
    display: flex;
    gap: 1rem;
    list-style: none;
    justify-content: center;
}

@media (min-width: 768px) {
    .socials {
        justify-content: flex-start;
    }
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: opacity 0.3s;
}

.socials a:hover {
    opacity: 0.8;
}

.socials svg {
    width: 20px;
    height: 20px;
    fill: #000;
}

/* Bio Info */
.bio {
    font-size: 1.4rem;
}

.bio strong {
    font-weight: 700;
}

.bio p {
    margin-bottom: 1rem;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: #fff;
    color: #212121;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: box-shadow 0.3s;
}

.cta-button:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}