img {
    border: 0;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    color: #333;
    background: url(../img/symphony.png);
}

body {
    max-width: 968px;
    margin: 0 auto;
}

blockquote, q, address, hr, code, samp, dl, ol, ul, form, table, fieldset, menu, img {
    margin-bottom: 1.625em;
}

h1, h3, p, blockquote, pre {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

h1 {
    font-size: 1.125em;
}

h1 {
    font-size: 1em;
}

h3 {
    font-size: 0.875em;
}

blockquote {
    font-size: 1.3125em;
}

pre {
    font-size: 0.8125em;
    line-height: 1.6;
}

/* ... Autres styles ... */

* grids container - wrap your grids within */
.grids {
    overflow: hidden;
    margin-right: auto;
    margin-left: auto;
}
/* grids */

.g1of2, .g1of3, .g1of4, .g1of5, .g2of3, .g2of5, .g3of4, .g3of5, .g4of5 {
    float: left;
    display: inline;
}
.g1of2 {
    width: 50%;
}
.g1of3 {
    width: 33.33%;
}
.g1of4 {
    width: 25%;
}
.g1of5 {
    width: 20%;
}
.g2of3 {
    width: 66.66%;
}
.g2of5 {
    width: 40%;
}
.g3of4 {
    width: 75%;
}
.g3of5 {
    width: 60%;
}
.g4of5 {
    width: 80%;
}
.desc table {
    font-family: Arial;
    font-size: 12px;
}

.table {
  display: table;   /* Allow the centering to work */
  margin: 0 auto;
}

hr {
    border: 0;
    border-bottom: 1px dashed #ccc;
    background: #999;
}
.pitou {
width:300px;-webkit-border-radius: 20px;-moz-border-radius: 20px;border-radius: 20px;background-color:#EDEDED;-webkit-box-shadow: #B3B3B3 7px 7px 7px;-moz-box-shadow: #B3B3B3 7px 7px 7px; box-shadow: #B3B3B3 7px 7px 7px;
}


/* Utilisation de Grid Layout pour le contenu */
#wrapper {
    padding: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 968px;
    margin: 0 auto;
}

/* Menu Hamburger pour les écrans mobiles */
/* Reset some default styles */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Main container styles */
#main-container {
    max-width:  968px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
#header-container {
    text-align: center;
    padding: 10px 0;
}

#logo {
    max-width: 100%;
}

/* Navbar styles */
.navbar {
    background: linear-gradient(to right, #653945, #2C171C);
    border-radius: 10px;
    overflow: hidden;
    margin-top: -40px; 
}

#primary_nav_wrap ul {
    list-style: none;
    padding: 0px;
    margin-top: 20px;
    
    display: flex;
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
}

#primary_nav_wrap li {
    flex: 1;
    text-align: center;
}

#primary_nav_wrap a {
    display: block;
    padding: 0px 0;
    color: #fff;
    text-decoration: none;
}

/* Mobile menu icon */
#menu-icon {
    display: none;
    cursor: pointer;
    color: #fff;
    padding: 10px;
}




/* Media query pour mobile menu */
@media (max-width: 480px) {
    #menu-icon {
        display: block;
        color: #fff !important;
        padding: 10px;
    }

    .navbar #primary_nav_wrap ul {
	z-index: 999;
        display: none;
        flex-direction: column; /* Pour empiler les éléments */
        top: 60px;
        left: 0;
        background: linear-gradient(to right, #653945, #2C171C);
        border-radius: 10px;
        width: 100%;
    }

    .navbar #primary_nav_wrap ul.active {
        display: block;
    }

    .navbar #primary_nav_wrap ul li {
        text-align: left;
        padding: 3px 20px;
	padding-right: 100px;
        display:block; /* Chaque élément sur une ligne distincte */
    }
}



/* Main container styles */
#main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
#header-container {
    text-align: center;
    padding: 20px 0;
}

#logo {
    max-width: 100%;
}






/* Styles pour le menu de navigation */
#primary_nav_wrap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#primary_nav_wrap ul li {
  float: left;
  position: relative;
}

#primary_nav_wrap ul li a {
  padding: 10px 20px;
  display: block;
}

/* Styles pour le sous-menu */
#primary_nav_wrap ul ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
}

#primary_nav_wrap ul li:hover > ul.sub-menu {
  display: block;
}


/* Styles pour la barre de pied de page */
#footer {
    background: linear-gradient(to right, #653945, #2C171C);
    border-radius: 10px;
    color: #fff;
    text-align: center;
    padding: 0px 0;
    margin-top: 20px;
    width: 100%; /* La barre de pied de page prendra toute la largeur */
}

#footer_nav_wrap ul {
    list-style: none;
    padding: 0px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer_nav_wrap li {
    flex: 1;
    text-align: center;
}

#footer_nav_wrap a {
    display: block;
    padding: 0px 0;
    color: #fff;
    text-decoration: none;
}

/* Mobile menu icon pour la barre de pied de page */
#footer-menu-icon {
    display: none;
    cursor: pointer;
    color: #fff;
    padding: 10px;
}

    #footer-cr {
	text-align: center;
    } 

@media (max-width: 768px) {
    #footer-menu-container ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        left: 0;
        background: linear-gradient(to right, #653945, #2C171C);
        border-radius: 10px;
        width: 100%;
    }

    #footer-menu-container ul.active {
        display: block;
    }

    #footer-menu-container ul li {
        text-align: left;
        padding: 0px 20px;
    }

    #footer-menu-icon {
        display: block;
    }
}


