@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');

:root {
    --accent: #F9B858;
    --accent-hover: #f7bf6c;
}

body {
    background-color: whitesmoke;
    font-family: 'Inter', 'Arial', sans-serif;
}

.container {
    max-width: 600px;
}

h1.username {
    text-align: center;
    font-family: 'Alata', 'Arial', sans-serif;
    letter-spacing: 2px;
    padding-top: 10px;
}

.photo-id {
    background-image: url('/linktree/assets/20250829.png');
    background-size: 105%;
    background-position: center;
    margin: 0 auto;
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    transition: 0.6s ease;
}

.qr-link {
    background-image: url('/linktree/assets/QR.png');
    background-size: cover;
    background-position: center;
    margin: 0 auto;
    width: 60%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* 💡 truco clave */
}

@media (min-width: 992px) {
    .qr-link {
        max-width: 300px;
    }
}

.photo-id:hover {
    scale: 103%;
}

.social-btn {
    font-family: 'Alata', 'Arial', sans-serif;
    letter-spacing: 2px;
    cursor: pointer;
    color: whitesmoke !important;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    padding: 16px;
    background-color: var(--accent);
    transition: 0.3s ease-in-out !important;
    border-radius: 15px !important;

}

.social-btn:hover {
    background-color: var(--accent-hover);
    transform: translate(0px, -1px);
    letter-spacing: 2.2px;

}

.fa-links a {
    color: var(--accent) !important;
    font-size: 20px;
    margin-right: 15px;
}

.fa-links a i {
    display: inline-block;
    transition: transform 0.25s ease, color 0.25s ease;
    vertical-align: middle;
}

.fa-links a:hover i {
    transform: rotate(-3deg) scale(1.1);
    color: var(--accent-hover);
}

/* Footer */

.footer3 {
    text-align: center !important;
    font-size: smaller !important;
    margin-top: 20px;
    margin-bottom: -20px;
    font-size: 12px !important;
}

.footer3 a {
    color: #E6976E;
    text-decoration: none;
}

.footer3:hover a {
    color: #E6976E;
    text-decoration: underline;
}

.QR-message p {
    font-size: smaller !important;
    margin: 0 auto;
}