/*
Theme Name: Warmazono Music Library
Theme URI: https://example.com/warmazono
Author: Warmazono
Version: 1.0.1
Description: Tema personalizado tipo biblioteca musical con diseño oscuro, cuadrícula e Infinite Scroll.
Text Domain: textdomain
*/

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #0d0d0d;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-top: 20px; /* Separación de seguridad superior */
}

/* Header Styles */
.site-header {
    background-color: #121212;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 100;
    width: 100%;
    margin-bottom: 25px; /* Espacio garantizado entre el header y el contenido */
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
}

.brand-icon {
    font-size: 28px;
    color: #35b9aa;
}

.brand-name {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 12px;
    color: #888888;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav .current-menu-item a {
    color: #35b9aa;
}

/* Espaciado del Contenido Principal para evitar superposición */
.site-main,
.single-content {
    margin-top: 20px !important;
    padding-top: 10px !important;
    clear: both;
}

/* Color Cyan y Negrita para los hipervínculos del contenido de la entrada */
.entry-body a {
    color: #00ffff !important;
    font-weight: bold !important;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.entry-body a:hover {
    color: #80ffff !important;
}

/* Post Cards Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.post-card {
    background: #151515;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    border-color: #35b9aa;
}

/* Infinite Scroll Pagination Hidden Elements */
.pagination-wrapper {
    margin-top: 30px;
    text-align: center;
}
