@font-face {
    font-family: 'Poppins';
    src: url('./fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('./fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('./fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

body {
    font-family: 'Poppins', -apple-system, sans-serif;
    min-height: 100vh;
    background: #F6F0E8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #2b2b2b;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.profile-section {
    margin-bottom: 32px;
}

.profile-image {
    margin-bottom: 16px;
}

.profile-image img {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    object-fit: cover;
    max-width: 100%;
    outline: 6px solid rgba(255, 255, 255, 0.15);
    outline-offset: -6px;

}

.name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 6px;
    line-height: 1.4;
}

.description {
    font-size: 0.9rem;
    margin-bottom: 6px;
    font-weight: 400;
}

.license {
    font-size: 0.8rem;
    font-style: italic;
    font-weight: 400;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    background: white;
    color: black;
    min-height: 64px;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.button-icon {
    width: 24px;
    height: 24px;
}

.social-link-wrapper {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.social-link-block {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link-block:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link-block .w-embed {
    width: 25px;
    height: 25px;
}

.social-link-block svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .container {
        max-width: 500px;
    }

    .contact-buttons {
        max-width: 400px;
    }

    .button {
        padding: 18px 32px;
        font-size: 1.125rem;
        min-height: 56px;
    }

    .button-icon {
        width: 22px;
        height: 22px;
    }

    .social-link-wrapper {
        gap: 14px;
        margin-top: 28px;
    }

    .social-link-block {
        width: 45px;
        height: 45px;
    }

    .social-link-block .w-embed {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 400px;
        padding: 30px 15px;
    }

    .profile-image img {
        width: 100px;
        height: 100px;
    }

    .name {
        font-size: 1.75rem;
    }

    .tagline {
        font-size: 0.85rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .license {
        font-size: 0.75rem;
        margin-bottom: 28px;
    }

    .contact-buttons {
        max-width: 350px;
        gap: 14px;
    }

    .button {
        padding: 16px 24px;
        font-size: 1rem;
        min-height: 52px;
    }

    .button-icon {
        width: 20px;
        height: 20px;
    }

    .social-link-wrapper {
        gap: 12px;
        margin-top: 24px;
    }

    .social-link-block {
        width: 40px;
        height: 40px;
    }

    .social-link-block .w-embed {
        width: 20px;
        height: 20px;
    }
}

.copyright {
    margin-top: 40px;
    padding-top: 24px;
    font-size: 0.65rem;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    font-weight: 400;
}