/*
Theme Name: La Manada Records
Theme URI: https://lamanadarecords.com
Author: Tu Nombre
Description: Tema personalizado.
Version: 1.1
*/

/* --- VARIABLES GLOBALES CENTRALIZADAS --- */
:root {
    /* Fuentes */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Manrope', sans-serif;
    
    /* Colores Base y Gradientes */
    --primary-gradient: linear-gradient(90deg, #0000FF 0%, #8A2BE2 100%);
    --primary-color: #8A2BE2;
    --accent-color: #8A2BE2;
    
    /* Fondos */
    --bg-dark: #000000;
    --bg-white: #ffffff;
    --bg-light: #ffffff;
    --blog-bg: #f4f6f8;
    --card-bg: #ffffff;
    --footer-bg: #0d0d0d;
    
    /* Textos */
    --text-dark: #111111;
    --text-grey: #666666;
    --text-white: #ffffff;
    --footer-text: #b3b3b3;
    --footer-white: #ffffff;
    
    /* Dimensiones */
    --header-height: 90px;
}

/* Reseteo básico */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Contenedor Index por defecto */
.index-main-container {
    padding: 100px 20px;
    text-align: center;
    min-height: 50vh;
}