/**
 * Böse89 — Custom Styles (additional)
 *
 * This file is for any additional custom CSS that extends
 * the main style.css. Edit this file for quick customizations
 * without modifying the main theme stylesheet.
 *
 * @package Bose89
 * @since   1.0.0
 */

/* Pagination */
.bose-pagination {
    margin-top: 3rem;
    text-align: center;
}

.bose-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.bose-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--bose-cream-70);
    border: 1px solid var(--bose-neon-green-15);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.bose-pagination .page-numbers:hover,
.bose-pagination .page-numbers.current {
    background: var(--bose-neon-green);
    color: var(--bose-black);
    border-color: var(--bose-neon-green);
}

/* Post navigation */
.post-navigation {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid var(--bose-neon-green-10);
    border-bottom: 1px solid var(--bose-neon-green-10);
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.post-navigation a {
    color: var(--bose-cream-70);
    font-size: var(--text-sm);
    transition: color 0.3s ease;
}

.post-navigation a:hover {
    color: var(--bose-neon-green);
}

/* Search form */
.search-form {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
}

.search-form .search-field {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(232, 228, 222, 0.15);
    color: var(--bose-cream);
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.8rem 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-form .search-field:focus {
    border-color: var(--bose-neon-green);
}

.search-form .search-submit {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--bose-black);
    background: var(--bose-neon-green);
    border: none;
    padding: 0.8rem 1.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form .search-submit:hover {
    background: var(--bose-hot-pink);
    color: var(--bose-cream);
}

/* WordPress Block Styles */
.wp-block-quote {
    border-left: 3px solid var(--bose-neon-green);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: rgba(232, 228, 222, 0.85);
}

.wp-block-code {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--bose-neon-green-10);
    padding: 1.5rem;
    overflow-x: auto;
    font-size: 0.9rem;
}

.wp-block-separator {
    border: none;
    height: 3px;
    background: linear-gradient(90deg, var(--bose-neon-green), var(--bose-turquoise), var(--bose-hot-pink));
    max-width: 200px;
    margin: 3rem auto;
}

.wp-block-gallery {
    gap: 0.5rem !important;
}

/* Comment form fields */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(232, 228, 222, 0.15);
    color: var(--bose-cream);
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.comment-form input:focus {
    border-color: var(--bose-neon-green);
}

.comment-form label {
    display: block;
    font-size: 0.75rem;
    color: rgba(232, 228, 222, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

/* Elementor compatibility */
.elementor-section {
    background-color: var(--bose-black);
}

.elementor-widget-heading .elementor-heading-title {
    font-family: var(--font-display);
    color: var(--bose-cream);
    letter-spacing: 0.1em;
}

.elementor-widget-text-editor {
    font-family: var(--font-body);
    color: rgba(232, 228, 222, 0.85);
}
