/* General body and font settings */
/* Style du header */
.menus .menu-card .price {
    display: block; /* ou inline-block si tu veux à côté du nom */
    font-size: 20px;
    font-weight: bold;
    color: #0E2642;
    margin-top: 5px;
    background-color: #fff5e1;
    padding: 4px 10px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.publication-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px;
    background: white;
}

.publication-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 26px;
    color: #333;
}

.no-publications {
    text-align: center;
    padding: 20px;
    background-color: #f0f0f0;
    font-style: italic;
}

.publication-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.publication-card {
    background: #f9f9f9;
    border: 1px solid #ccc;
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.publication-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.publication-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.publication-message {
    white-space: pre-line;
    font-size: 15px;
    margin-bottom: 10px;
    color: #444;
}

.publication-date {
    font-size: 13px;
    color: #888;
    text-align: right;
}



.facebook-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1000;
}

.facebook-icon img {
    width: 55px;
    height: 55px;
    border-radius: 5px;
    transition: transform 0.2s ease;
}


.facebook-icon:hover img {
    transform: scale(1.1);
}


.instagramm-icon {
    position: absolute;
    top: 15px;
    right: 80px;
    z-index: 1000;
}

.instagramm-icon img {
    padding: 3px;
	width: 50px;
    height: 50px;
    border-radius: 5px;
    transition: transform 0.2s ease;
}


.instagramm-icon:hover img {
    transform: scale(1.1);
}

.location-icon-container {
    position: absolute;
    top: 20px;
    right: 20px;
	border: 1px solid #f39c12;
}

.location-icon {
    font-size: 24px;
    background-color: #000;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
}

.location-icon:hover {
    background-color: #f39c12;
}

/* Modale */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.header-main {
	    width: 100%;
    display: flex;
    align-items: center;
}

.location-icon-container img, 
.location-icon-container svg {
    height: 40px; /* pour matcher avec les barres du menu */
    width: 40px;
}

.header-location {
    position: relative;
    z-index: 10;
    margin-left: 60px; /* espace pour le menu hamburger */
    margin-top: 0px;
    max-width: 80%;
    font-size: 16px;
    word-wrap: break-word;
}
#header {
    background-color: #0F1D2A;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Icône du menu hamburger */
#menuToggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 30px;
    height: 4px;
    background-color: white;
    border-radius: 5px;
}

/* Menu de navigation */
#navMenu ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

#navMenu ul li {
    font-size: 16px;
}

#navMenu ul li a {
    color: #3D519A;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

#navMenu ul li a:hover {
    color: #0F1D2A;
    background-color: white;
    padding: 5px;
    border-radius: 5px;
}


.contact-form {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #fdfdfd;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 28px;
    color: #333;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    flex: 1 0 100%;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.form-actions {
    text-align: center;
    margin-top: 1.5rem;
}

.form-actions button {
    background-color: #e63946;
    color: white;
    padding: 12px 30px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.form-actions button:hover {
    background-color: #d62828;
}

.success-message {
    text-align: center;
    font-weight: bold;
    color: green;
    margin-bottom: 2rem;
}


.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    gap: 20px;
    flex-wrap: wrap;
}


.header-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content {
    
	align-items: center;
	flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffcc00;
}

/* Header styles */
header {
    background-color: #0F1D2A;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 15px;
}

nav ul li a {
    color: #3D519A;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Main container styles */
.container {
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.container1 {
  display: flex;
  gap: 20px;
  padding: 20px;
}


/* Menu section styles */
.menus {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.menus .menu-card {
    background-color: #f5f5f5;  /* Couleur neutre de fond */
    padding: 10px;
    border-radius: 10px;
    width: 20%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);  /* Ombre douce */
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #ddd;  /* Bordure discrète */
}

.menus .menu-card:hover {
    transform: translateY(-10px);
    background-color: #e0e0e0;  /* Changement de fond au survol */
}

.menus .menu-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.menus .menu-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.menus .menu-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.menus .menu-card .price {
    font-size: 18px;
    font-weight: bold;
    color: #00aaff;  /* Couleur pour le prix */
}

/* Emplacement section styles */
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    background-color: #ffcc00;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

/* Footer styles */
  .footer {
    background-color: #222;
    color: white;
    padding: 30px 20px;
    text-align: center;
    margin-top: 50px;
  }

/* Additional styling for sections */
h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
}

ul li {
    font-size: 16px;
}

/* Styling for images in stories or content */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
}
button {
    background-color: #f5b300;  /* Jaune doré foncé pour plus de contraste */
    color: #3D519A;  /* Texte en blanc pour ressortir sur le fond plus foncé */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #d48f00;  /* Couleur plus foncée au survol pour le contraste */
	color: #3D519A
}

/* Style des liens qui ressemblent à des boutons */
a.button-link {
    display: inline-block;
    background-color: #f5b300;
    color: #3D519A;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}


a.button-link:hover {
    background-color: #d48f00;
}


/* Header styles */
header {
    justify-items:  center;
	background-color: #0F1D2A;
    color: white;
    padding: 20px;
    
}

/* Conteneur pour le texte d'info dans l'en-tête */
.header-info {
    margin-bottom: 20px;
}

/* Style pour le numéro de téléphone */

/* Style pour l'info de l'événement */
.event-info {
    font-size: 18px;
    font-weight: normal;
    color: white;
}

/* Style pour le titre principal */
header h1 {
    margin: 0;
    font-size: 36px;
    color: white;
}
.phone-number-bubble {
    background-color: #ffcc00;
    color: #3D519A;
    padding: 12px 20px;
    margin-top: 0px;
	border-radius: 50px;
    display: inline-block;
    font-size: 18px;
/*    margin-bottom: 20px;*/
}

.phone-number-bubble span {
    font-size: 22px;
    font-weight: bold;
}

.panier {
  flex: 1;
  padding-left: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.valider {
  background-color: #28a745;
  margin-top: 10px;
}

.quantite {
  float: right;
  background: #007bff;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8em;
}





.bouton {
    display:grid;
    padding: 10px;
    background-color: #3498db;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s;
}

.bouton:hover {
    background-color: #2980b9;
}


.produits {
  flex: 4;
  border-right: 1px solid #ccc;
  padding-right: 20px;
}


.produits1 {
	flex: 4;
	border-right: 1px solid #ccc;
	padding-right: 20px;
    margin: 20px;
	
}
   /* Splash screen */
    #splash {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100vh;
      background: #0E1C29;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    #splash img {
      max-width: 80%;
      max-height: 80%;
      animation: fadeOut 2s ease-in-out forwards;
      animation-delay: 2s;
    }

    @keyframes fadeOut {
      to {
        opacity: 0;
        transform: scale(1.1);
      }
    }

    body {
      margin: 0;
      font-family: Arial, sans-serif;
    }

    #content {
/*      display: none;*/
      padding: 20px;
    }

.jaune1{
	background: #0F1D2A;height: 50px
}
  .hero {
    background-image: url('../images/imagePresentation.jpg');
    background-size: cover;
    background-position: center;
/*    padding: 120px 20px;*/
    color: white;
    text-align: center;
  }

  .hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .hero a.btn {
    padding: 12px 25px;
    background-color: #e74c3c;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
  }

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.feature {
  flex: 1 1 300px;
  background-color: #fff8dc; /* jaune pâle */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  max-width: 400px;
}

  .feature i {
    font-size: 40px;
    margin-bottom: 15px;
    color: #e67e22;
  }

  .menus {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .menu-card {
    border: 1px solid #ddd;
    padding: 15px;
    width: 300px;
  }

  .menu-card img {
    max-width: 100%;
    height: auto;
  }

  .footer {
    background-color: #222;
    color: white;
    padding: 30px 20px;
    text-align: center;
    margin-top: 50px;
  }

/* ---------------- RESPONSIVE ---------------- */

/* Pour les écrans jusqu'à 1024px (tablettes et petits laptops) */
@media (max-width: 1024px) {
  .menus .menu-card {
    width: 45%;
  }

  .container1 {
    flex-direction: column;
  }

  .produits, .produits1, .panier {
    
    border-right: none;
    padding-right: 0;
  }

	.header-logo img {
    height: 144px;
	width: auto;
	margin-top: 20 !important;
}
}

/* Pour les écrans jusqu'à 768px (mobiles) */
@media (min-width: 768px) {

	.header-logo img {
    height: 144px;
	width: auto;
	margin-top: 20 !important;
}
}

@media (max-width: 768px) {
	 .header-location {
        margin-left: 50px; /* libère la zone du hamburger */
        margin-top: -8px;
        font-size: 14px;
        max-width: 70%;
    }

   #header {
    background-color: #0F1D2A;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: flex-start; /* Aligne à gauche */
    align-items: center;
    position: relative;
}

.phone-number-bubble {
    background-color: #ffcc00;
    color: #3D519A;
    padding: 12px 20px;
    margin-top: 65px;
	border-radius: 50px;
    display: inline-block;
    font-size: 18px;
/*    margin-bottom: 20px;*/
}

	.menu-toggle {
  position: fixed;
  top: 15px;
  left: 15px;
  width: 40px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px;
}

.bar {
  width: 100%;
  height: 5px; /* plus épais */
  background-color: #FFD700; /* doré */
  border-radius: 3px;
  transition: all 0.3s ease;
}
	#menuToggle {
        display: flex;
    }

    /* Menu caché par défaut sur mobile */
    #navMenu {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background-color: #0F1D2A;
        padding: 20px;
        z-index: 10;
        flex-direction: column;
        gap: 15px;
    }

    /* Afficher le menu quand il a la classe 'open' */
    #navMenu.open {
        display: flex;
    }

    /* Liste verticale sur mobile */
    #navMenu ul li {
        display: block;
        text-align: center;
    }
		
	nav ul li {
    display: block;
    margin: 10px 0;
    text-align: center;
  }

 .header-main {
/*        flex-direction: column;*/
        align-items: center;
        text-align: center;
		padding: 0px;
    
    }

    .header-logo {
        margin-bottom: 10px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        padding: 0;
    }

    nav ul li {
        display: inline-block;
    }	
	
	
  .menus .menu-card {
    width: 100%;
  }

  .phone-number-bubble {
    font-size: 16px;
    padding: 10px 15px;
  }

  .phone-number-bubble span {
    font-size: 20px;
  }

  header h1 {
    font-size: 28px;
  }
}

