
/*
Theme Name: Voyager en Bulgarie
Theme URI: https://voyagerenbulgarie.fr
Author: TonNom
Author URI: https://tonsiteperso.fr
Description: Un thème WordPress pour visiter Sofia et explorer la Bulgarie.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: voyager-en-bulgarie
Tags: voyage, blog, culture, guide, Bulgarie
*/

body {
    font-family: 'Merriweather', serif;
    background-color: #F5F0E1;
    margin: 0;
    padding: 0;
    color: #223A5E;
}

header {
    background-color: #223A5E;
    color: #F5F0E1;
    padding: 20px;
    text-align: center;
}

nav {
    background-color: #7A8450;
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

nav a {
    color: #F5F0E1;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://source.unsplash.com/featured/?sofia,bulgaria') no-repeat center center;
    background-size: cover;
    height: 400px;
    color: white;
    text-shadow: 1px 1px 2px #000;
    font-size: 2em;
    font-family: 'Poppins', sans-serif;
}

.sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px;
    gap: 30px;
    background-color: #F5F0E1;
}

.section-card {
    background-color: #FFFFFF;
    border: 1px solid #DDD;
    border-radius: 8px;
    padding: 20px;
    width: 250px;
    text-align: center;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.section-card:hover {
    transform: translateY(-5px);
}

.section-card a {
    text-decoration: none;
    color: #223A5E;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2em;
}

footer {
    background-color: #223A5E;
    color: #F5F0E1;
    text-align: center;
    padding: 10px;
    font-size: 0.8em;
}
    