/*
Theme Name: Tuberculture
Theme URI: https://tuberculture.fr
Description: Thème WordPress classique pour Tuberculture
Author: Tuberculture
Author URI: https://tuberculture.fr
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: tuberculture
Tags: custom-theme, responsive, bootstrap
*/

/* Styles globaux */
*,
*::before,
*::after {
	font-family: "Nunito", sans-serif !important;
}

body,
html {
	font-family: "Nunito", sans-serif !important;
	font-weight: 400;
}

body {
	background-color: #F2F2F2;
	color: #0D0D0D;
}

/* Variables CSS pour les couleurs */
:root {
	--color-primary: #F22233;
	--color-secondary: #0B8C68;
	--color-alert: #D91E1E;
	--color-text: #0D0D0D;
	--color-background: #F2F2F2;
}

/* Styles du header */
.site-header {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	background-color: #fff;
	padding: 2rem 0 1rem;
}

.site-branding {
	margin-bottom: 1.5rem;
}

.site-header .site-logo-link {
	display: block;
	flex-shrink: 0;
}

.site-title-wrapper {
	text-align: left;
}

.site-header .site-logo {
	width: 200px;
	height: auto;
	max-width: 200px;
	display: block;
}

.site-header .site-title {
	margin: 0 0 0.5rem;
	line-height: 1.2;
	font-size: 2rem;
	font-weight: 700;
	text-align: left;
}

.site-header .site-title a {
	color: var(--color-text);
	text-decoration: none;
	transition: color 0.3s ease;
}

.site-header .site-title a:hover {
	color: var(--color-primary);
}

.site-header .site-tagline {
	margin: 0;
	opacity: 0.8;
	font-size: 1rem;
	color: var(--color-text);
}

/* Navigation */
.main-navigation {
	margin-top: 1rem;
}

.main-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	align-items: center;
	justify-content: center;
}

.main-navigation a {
	text-decoration: none;
	color: var(--color-text);
	font-weight: 500;
	transition: color 0.3s ease;
}

.main-navigation a:hover {
	color: var(--color-primary);
}

/* Contenu principal */
.site-main {
	padding: 2rem 0;
}

/* Footer */
.site-footer {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	background-color: #fff;
	padding: 2rem 0;
	margin-top: 2rem;
}

