<?php // style.css ?>
body {
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    background: #111;
    color: #fff;
}
nav {
    background: #222;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px 0;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}
nav a:hover {
    color: #f44336;
}
.hero {
    background-image: url('https://cdn.pixabay.com/photo/2020/06/23/14/33/grilled-chicken-5332174_960_720.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero h2 {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    font-size: 2.5rem;
    border-radius: 10px;
}
.content {
    padding: 40px 20px;
    text-align: center;
}
.content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.content p {
    max-width: 600px;
    margin: auto;
    font-size: 1.1rem;
}
.menu-section ul {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
}
.menu-section h4 {
    margin-top: 30px;
    color: #ff9800;
}
.btn {
    margin-top: 30px;
    padding: 15px 30px;
    background: #f44336;
    color: white;
    border: none;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
}
.btn:hover {
    background: #e53935;
}
footer {
    background: #000;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}
.btn-admin {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #2d2d2d;
    color: white;
    text-decoration: none;
    border-radius: 8px;
}
.btn-admin:hover {
    background-color: #444;
}
.commande-liens {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
    text-align: center;
}

.commande-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 150px;
}

.commande-item img {
    height: 30px !important;
    width: 30px !important;
    object-fit: contain !important;
    margin-bottom: 8px;
    border-radius: 5px;
}


.commande-item p {
    font-size: 1rem;
    font-weight: bold; /* Texte en gras */
    margin: 0;
}

.commande-item a {
    color: #f44336;
    text-decoration: none;
}

.commande-item a:hover {
    text-decoration: underline;
}

.numero-tel {
    margin-top: 40px;
    text-align: center;
    font-size: 1.2rem;
}

.numero-tel a {
    color: #f44336;
    text-decoration: none;
    font-weight: bold;
}

.numero-tel a:hover {
    text-decoration: underline;
}
.commande-item p {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
}
.zone-pub {
    width: 100%;
    height: 100px;
    background-color: #222;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin: 30px 0;
    border: 1px dashed #444;
}
.double-background {
    position: relative;
    background-image: url('galerie/pilipili6.png'), url('galerie/pilipili14.png');
    background-size: cover, contain;
    background-position: center center, bottom right;
    background-repeat: no-repeat, no-repeat;
    min-height: 500px;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) {
  header img.logo {
    height: 70px;
    left: 10px;
  }

  header h1 {
    font-size: 1.8rem;
  }

  header p {
    font-size: 0.9rem;
  }

  nav {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }

  .hero {
    height: 250px;
    padding: 10px;
  }

  .hero h2 {
    font-size: 1.5rem;
    padding: 15px;
  }

  .content h3 {
    font-size: 1.5rem;
  }

  .content p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}
