@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Great+Vibes&display=swap');

/* ========= PALETA =========
 Fondo: #FFFFFF
 Rosa Principal: #E899B5
 Negro: #000000
 Detalle (brillo/hover): #FFCCE1
============================ */

body {
    font-family: 'Montserrat', sans-serif;
    background: #FFFFFF;
    color: #000000;
    margin: 0;
    padding: 0;
    overflow-y: scroll;
}

.profile_wrapper {
    padding: 20px;
    text-align: center;
}

.profile_head {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thumb {
    margin-top: 25px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid #E899B5; /* Rosa elegante */
    box-shadow: 0 0 15px rgba(232,153,181,0.6);
}

.profile_head h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 2.8rem;
    font-weight: 400;
    color: #E899B5;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.25);
    margin: 15px 0 10px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.profile_head_bio {
    margin-top: 10px;
}

.profile_head_bio p {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 600px;
    color: #333;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.5s forwards;
    opacity: 0;
}

.profile_links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.SocialLink {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    background-color: #FFF;
    padding: 14px 20px;
    border-radius: 10px;
    width: 100%;
    justify-content: center;
    max-width: 560px;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    border: 2px solid #E899B5;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(232,153,181,0.2);
}

.SocialLink:hover {
    background-color: #E899B5;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(232,153,181,0.35);
}

.asset-logo {
    width: 28px;
    height: 28px;
    background-size: cover;
    background-position: center;
    margin-right: 10px;
    border-radius: 50%;
    transition: transform 0.3s ease;
    border: 1px solid rgba(232,153,181,0.6);
}

.SocialLink:hover .asset-logo {
    transform: scale(1.2);
    border-color: #fff;
}

.SocialLink_body h3 {
    margin: 0;
    font-size: 16px;
}

/* CTA Reserva */
.SocialLink.vibrar {
    background-color: #E899B5;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(232,153,181,0.5);
    cursor: pointer;
    border: 2px solid #E899B5;
}

.SocialLink.vibrar:hover {
    background-color: #d67899;
    transform: scale(1.05);
}

.reserva-link .SocialLink_body h3 {
    font-size: 20px;
}

/* Toast */
.toast-welcome {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #E899B5;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, top 0.4s ease, visibility 0.4s;
    pointer-events: none;
    z-index: 9999;
    border: 1px solid #E899B5;
}

.toast-welcome.show {
    opacity: 1;
    visibility: visible;
    top: 20px;
    pointer-events: auto;
}

/* Animaciones */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes vibrar {
    0% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    50% { transform: translateX(2px); }
    75% { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}

.vibrar {
    animation: vibrar 0.2s linear infinite;
}
