/* ============================================
   VARIABLES DE PERSONALIZACIÓN
   Edita estos valores para cambiar colores y estilos
   ============================================ */

:root {
    /* Color de fondo */
    --bg-color: #19495b;
    
    /* Color del texto principal */
    --text-color: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.9);
    
    /* Color de los botones */
    --button-bg: rgba(255, 255, 255, 0.15);
    --button-hover-bg: rgba(255, 255, 255, 0.25);
    --button-border: rgba(255, 255, 255, 0.3);
    
    /* Tamaño de la foto de perfil */
    --profile-img-size: 150px;
    
    /* Ancho máximo del contenedor */
    --container-max-width: 680px;
    
    /* Espaciados */
    --spacing-small: 15px;
    --spacing-medium: 25px;
    --spacing-large: 40px;
}

/* ============================================
   ESTILOS GENERALES
   ============================================ */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-color);
    min-height: 100vh;
    padding: 20px;
    color: var(--text-color);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--spacing-large) 20px;
}

/* ============================================
   SECCIÓN DE LOGO
   ============================================ */

.logo-section {
    text-align: center;
    margin-bottom: var(--spacing-large);
}

/* Estilos para el logo - Responsive */
.logo-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.02);
}

/* ============================================
   ICONOS DE REDES SOCIALES
   ============================================ */

/* ============================================
   BOTONES DE ENLACES
   ============================================ */

.links-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-small);
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 30px;
    background: var(--button-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--button-border);
    border-radius: 15px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.link-button i {
    font-size: 1.5rem;
}

/* Estilos para SVG icons personalizados */
.link-button .brand-icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}

.link-button:hover {
    background: var(--button-hover-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.link-button:active {
    transform: translateY(0);
}

/* Colores específicos para cada botón (opcional) */
.link-button.website:hover {
    background: #4285f4;
    border-color: #4285f4;
}

.link-button.spotify:hover {
    background: #1db954;
    border-color: #1db954;
}

.link-button.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.link-button.apple-music:hover {
    background: #fa243c;
    border-color: #fa243c;
}

.link-button.tidal:hover {
    background: #000000;
    border-color: #000000;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    text-align: center;
    margin-top: var(--spacing-large);
    padding-top: var(--spacing-medium);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    :root {
        --spacing-large: 30px;
    }
    
    .logo-img {
        max-width: 400px;
    }
    
    .link-button {
        font-size: 1rem;
        padding: 16px 25px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 20px 10px;
    }
    
    .logo-img {
        max-width: 300px;
    }
    
    .link-button {
        padding: 14px 20px;
    }
}