body {
    font-family: Arial, sans-serif;
    background-color: palegoldenrod;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: palegoldenrod !important;
}


.navbar-brand{
    color: black !important;
}
.nav-link {
    color: black !important;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 1);
}
.navbar {
    padding: 10px 0;
}


.navbar-nav {
    text-align: center;
}

.navbar-nav .nav-item {
    margin: 0 15px;
}

.navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 500;
}


/* Ajustement mobile */
@media (max-width: 991px) {
    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .navbar-collapse {
        text-align: center;
    }

    .col-md-4{
        align-items: center;
        align-content: center;
    }

}


.container {
    margin-top: 20px;
    padding: 20px;
    background: lightgoldenrodyellow;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo{
    ;

}

h1, h2 {
    color: black;
}
h3{
    color: red;
    text-align: center;
}

.btn-primary {
    background-color: goldenrod;
    border: none;
}

.btn-primary:hover {
    background-color: darkgoldenrod;
}
.btn-outline-primary{
    border-color: goldenrod;
    color: goldenrod;
}
.btn-outline-primary:hover{
    background-color: darkgoldenrod;
    border-color: darkgoldenrod;
}

form {
    margin-top: 20px;
}

.hero {
    background: url('') center/cover;
    padding: 40px 0;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
}

blockquote {
    font-style: italic;
    margin: 20px auto;
    width: 70%;
    color: #555;
}




/* MENU LATERAL */
.sidebar {
    width: 250px;
    height: 100vh;
    background-color: palegoldenrod;
    padding: 20px;
    position: fixed;
    right: -260px; /* Caché par défaut */
    top: 0;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 99;
}

.sidebar.open {
    right: 0; /* Fait apparaître le menu */
}

.sidebar h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color:lightslategrey;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 15px 0;
}

.sidebar ul li a {
    text-decoration: none;
    color: lightslategray;
    font-size: 18px;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: 0.3s;
}

.sidebar ul li a:hover {
    background-color: goldenrod;
    color: lightgoldenrodyellow;
}

/* Bouton d'ouverture du menu */
.menu-btn {
    position: fixed;
    right: 20px;
    top: 20px;
    background: lightslategrey;
    color: lightgoldenrodyellow;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 100; /* Assure qu'il est toujours visible */
}



/* CONTENU PRINCIPAL */
.content {
    padding: 20px;
}

.test{
    background-color: palegoldenrod;
}

.col-md-4{
    align-items: center;
    align-content: center;
}

