/*
Theme Name: Pure
Author: Web Forge Pro
Premium: No
*/

/* =========================================
   PURE THEME (Soft & Petite)
   Architecture: Clean & Direct
   ========================================= */
   
:root {
    --primary-color: #4a4a4a;
    --primary-rgb: 74, 74, 74;
}

/* 1. BASE SUAVE (Gradiente Perla) */
body {
    /* Un degradado muy sutil de blanco a gris perla */
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%) !important;
    background-image: none !important;
    background-attachment: fixed !important;
    
    color: #4a4a4a !important; /* Gris oscuro suave para leer */
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

/* 2. LA TARJETA (Invisible en móvil) */
/* En Pure, el contenido flota libremente en móvil */
.public-wrapper::before {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* 3. AVATAR (Glow Suave) */
.profile-avatar {
    width: 85px !important; 
    height: 85px !important; 
    border-radius: 50%;
    margin-bottom: 15px;
    
    /* 🔥 GLOW: Sombra suave del color del usuario */
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.25);
    border: 2px solid #ffffff; /* Pequeño borde blanco para limpiar */
}

/* 4. TEXTOS */
.profile-title {
    font-size: 1.3rem;
    color: #333333 !important;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}
.profile-description {
    color: #888888 !important;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

/* 5. BOTONES (Soft Outline) */
.link-btn {
    background: #ffffff !important;
    
    /* Borde gris muy suave inicial */
    border: 1px solid #e5e7eb !important;
    color: #4a4a4a !important; /* Texto gris */
    
    padding: 12px 18px !important;
    border-radius: 50px; /* Muy redondos */
    font-weight: 500; 
    font-size: 0.9rem;
    
    /* Sombra casi imperceptible */
    box-shadow: 0 2px 5px rgba(0,0,0,0.02) !important;
    transition: all 0.3s ease;
}

/* Iconos en gris claro inicial */
.link-btn i, .link-favicon-icon {
    color: #cbd5e1 !important;
    transition: 0.3s;
}

/* HOVER: El botón se "enciende" */
.link-btn:hover {
    /* El borde se pinta del color del usuario */
    border-color: var(--primary-color) !important;
    
    /* El texto se pinta del color del usuario */
    color: var(--primary-color) !important;
    
    /* La sombra se convierte en un resplandor de color */
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2) !important;
    transform: translateY(-2px);
}

/* Al hover, el icono también coge color */
.link-btn:hover i, .link-btn:hover .link-favicon-icon {
    color: var(--primary-color) !important;
}

/* =========================================
   🖥️ VERSIÓN ESCRITORIO
   ========================================= */
@media (min-width: 768px) {
    .public-wrapper {
        margin-top: 40px;
        max-width: 480px;
    }

    /* En escritorio sí ponemos una tarjeta semitransparente detrás */
    .public-wrapper::before {
        background: rgba(255, 255, 255, 0.5) !important; /* Blanco al 50% */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 30px;
        border: 1px solid rgba(255,255,255,0.8) !important;
    }
    
    .profile-avatar { width: 100px !important; height: 100px !important; }
    
    /* Efecto "flotante" extra en botones */
    .link-btn:hover {
        transform: translateY(-3px) scale(1.02);
    }
}