/*
Theme Name: Volopress Twenty Twenty-Five
Theme URI: https://volopress.fr
Description: Thème enfant simplifié de Twenty Twenty-Five pour Volopress
Author: Volopress
Author URI: https://volopress.fr
Template: twentytwentyfive
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: volopress-twentytwentyfive
*/

/* === Variables CSS (Theme Montagne) === */
:root {
    --volo-primary: #2563eb;
    --volo-primary-light: #60a5fa;
    --volo-primary-dark: #1e40af;
    --volo-text: #334155;
    --volo-text-light: #64748b;
    --volo-bg: #ffffff;
    --volo-bg-light: #f8fafc;
    --volo-border: #e2e8f0;
    --volo-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Réinitialisation */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Header avec image de fond */
.site-header {
    width: 100%;
    margin: auto;
    text-align: center;
}

.header-nobackground {
    margin: 0 auto;
    max-width: 1540px;
}

.header-nobackground img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    text-align: center;
    margin: auto;
}

.site-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--volo-text);
    margin: 0;
    text-align: center;
}

/* Navigation en dessous de l'image */
.main-navigation {
    background: #3498db12;
    border-bottom: 1px solid var(--volo-border);
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 20px 0.75rem;
    align-content: center;
    align-items: center;
}

.nav-menu li {
    margin: 0;
    /* display: flex; */
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
}

.nav-menu a {
    text-decoration: none;
    color: var(--volo-text);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0rem 1rem 0.5rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--volo-primary);
}

/* Contenu principal */
.site-main {
    max-width: 1600px;
    margin: 0.25rem auto;
    padding: 0 20px;
}

/* Footer */
.site-footer {
    width: 100%;
    background-color: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px;
    text-align: center;
}

.footer-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Masquer les éléments du thème parent */
.wp-block-template-part[data-area="header"],
.wp-block-template-part[data-area="footer"] {
    display: none !important;
}

hr {
    border: 0;
    border-top: 1px solid #ededed;
}

/* Responsive */
@media (max-width: 768px) {
    .site-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 0.5rem;
    }
}