/* ===== RESET DE BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #f1f1f1;
    background: #1e1e1e;
    position: relative;
    overflow-x: hidden;
}

/* Décoration de fond animée */
body::before,
body::after {
    content: "";
    position: fixed;
    border-radius: 50%;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

body::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #f39c12, transparent);
    top: -300px;
    right: -300px;
    animation: float 20s ease-in-out infinite;
}

body::after {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, #e67e22, transparent);
    bottom: -400px;
    left: -400px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

h1,
h2,
h3,
h4 {
    margin-bottom: 0.5em;
    font-weight: 600;
    color: #f39c12;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Décoration sous les titres */
h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
    margin: 10px auto 0;
    border-radius: 2px;
}

p {
    margin-bottom: 1em;
    color: #ddd;
}

section {
    height: 100vh;
    position: relative;
    z-index: 1;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    box-shadow: 0 6px 25px rgba(243, 156, 18, 0.6);
    transform: translateY(-5px);
}

.back-to-top:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}/* ===== HEADER ===== */
.header {
  background: linear-gradient(180deg, #1e1e1e 0%, #161616 100%);
  color: #fff;
  height: 90px;
  padding: 0 40px;
  position: static;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  position: relative;
}

/* Ligne décorative en haut du header */
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f39c12, #e67e22, #d35400, #e67e22, #f39c12);
  background-size: 200% 100%;
  animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    height: 100%;
    margin: auto;
}

/* Logo */
.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f39c12;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo img {
    width: 90px;
    vertical-align: middle;
}


/* Navigation */
.nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav ul li {
    margin: 0 20px;
}

.nav ul li a {
    position: relative;
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.05rem;
    font-weight: 500;
}

.nav ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: #f39c12;
    transition: width 0.3s ease-in-out;
}

.nav ul li a:hover {
    color: #fff;
}

.nav ul li a:hover::after {
    width: 100%;
}

/* Button */
.btn {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    color: #1e1e1e;
    background: linear-gradient(45deg, #f39c12, #d35400);
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    color: #fff;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(25deg) translateX(-100%);
    transition: transform 0.5s ease;
}

.btn:hover::before {
    transform: rotate(25deg) translateX(100%);
}

/* Header info */
.header-info {
    text-align: right;
    margin-right: 20px;
    font-size: 1rem;
}

.header-info p {
    margin: 3px 0;
}

.header-info a {
    color: #f39c12;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.header-info a:hover {
    color: #e67e22;
    transform: translateY(-2px);
}

.header-info a:focus {
    outline: 2px solid #f39c12;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Menu burger pour mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: #f39c12;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive */
@media (max-width: 1024px) {
    .header {
        padding: 0 30px;
        height: 80px;
    }

    .logo {
        font-size: 1.5rem;
        gap: 12px;
    }

    .logo img {
        width: 70px;
    }

    .nav ul li {
        margin: 0 15px;
    }

    .nav ul li a {
        font-size: 1rem;
    }

    .header-info {
        font-size: 0.9rem;
        margin-right: 15px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 20px;
        height: 70px;
    }

    .logo {
        font-size: 1.3rem;
        gap: 10px;
    }

    .logo img {
        width: 55px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(180deg, #1e1e1e 0%, #161616 100%);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .nav.active {
        left: 0;
    }

    /* Backdrop blur effect when menu is open */
    .nav::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: -1;
    }

    .nav.active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav ul {
        flex-direction: column;
        padding: 40px 30px;
        gap: 0;
        animation: slideInFromLeft 0.5s ease-out;
    }

    @keyframes slideInFromLeft {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav ul li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        animation: fadeInUp 0.5s ease-out backwards;
    }

    .nav ul li:nth-child(1) { animation-delay: 0.1s; }
    .nav ul li:nth-child(2) { animation-delay: 0.15s; }
    .nav ul li:nth-child(3) { animation-delay: 0.2s; }
    .nav ul li:nth-child(4) { animation-delay: 0.25s; }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav ul li:last-child {
        border-bottom: none;
    }

    .nav ul li a {
        font-size: 1.2rem;
        display: block;
        padding: 18px 10px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .nav ul li a::before {
        content: "";
        position: absolute;
        left: -100%;
        top: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #f39c12, #e67e22);
        transition: left 0.3s ease;
    }

    .nav ul li a:hover::before,
    .nav ul li a:focus::before {
        left: 0;
    }

    .nav ul li a:hover {
        padding-left: 20px;
        color: #f39c12;
    }

    .header-info {
        display: none;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0 15px;
        height: 65px;
    }

    .logo {
        font-size: 1.1rem;
        gap: 8px;
    }

    .logo img {
        width: 50px;
    }

    .nav {
        top: 65px;
        height: calc(100vh - 65px);
    }

    .nav ul {
        padding: 30px 20px;
    }

    .nav ul li a {
        font-size: 1.1rem;
        padding: 16px 8px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .menu-toggle span {
        width: 25px;
    }
}

/* Contact info dans le menu mobile */
@media (max-width: 768px) {
    .mobile-contact {
        display: block;
        padding: 25px 30px;
        border-top: 2px solid rgba(243, 156, 18, 0.3);
        margin-top: 20px;
        text-align: center;
        animation: fadeInUp 0.5s ease-out 0.3s backwards;
    }

    .mobile-contact p {
        margin: 15px 0;
        font-size: 1rem;
    }

    .mobile-contact a {
        color: #f39c12;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        display: inline-block;
        padding: 8px 12px;
        border-radius: 8px;
    }

    .mobile-contact a:hover {
        background: rgba(243, 156, 18, 0.1);
        transform: scale(1.05);
    }
}

@media (min-width: 769px) {
    .mobile-contact {
        display: none;
    }
}
/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, #1e1e1e 0%, #0f0f0f 100%);
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
  position: relative;
  overflow: hidden;
}

/* Décoration du footer */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    transparent 0%,
    #f39c12 25%,
    #e67e22 50%,
    #d35400 75%,
    transparent 100%);
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Container */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Logo / Titre colonne */
.footer-col h2.logo {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #f39c12;
}

/* Titres des colonnes */
.footer-col h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #f39c12;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Paragraphes et adresses */
.footer-col p,
.footer-col address {
  color: #ddd;
  line-height: 1.8;
  font-style: normal;
}

.footer-col address a {
  position: relative;
  color: #bbb;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 4px 0;
}

.footer-col address a:hover {
  color: #f39c12;
  padding-left: 5px;
}

.footer-col address a:focus {
  outline: 2px solid #f39c12;
  outline-offset: 4px;
  border-radius: 4px;
}

/* Listes */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

/* Liens listes - hover avec soulignement animé */
.footer-col ul li a {
  position: relative;
  color: #bbb;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 4px 0;
}

.footer-col ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 2px;
  left: 0;
  background: linear-gradient(90deg, #f39c12, #e67e22);
  transition: width 0.3s ease-in-out;
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-col ul li a:hover::after {
  width: 100%;
}

.footer-col ul li a:focus {
  outline: 2px solid #f39c12;
  outline-offset: 4px;
  border-radius: 4px;
  color: #fff;
}

/* Réseaux sociaux - hover couleur uniquement */
.socials a {
  display: inline-block;
  margin: 8px 0;
  padding: 6px 12px;
  color: #bbb;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 6px;
  background: transparent;
  border: 1px solid transparent;
}

.socials a:hover {
  color: #f39c12;
  font-weight: bold;
  background: rgba(243, 156, 18, 0.1);
  border-color: #f39c12;
  transform: translateX(5px);
}

.socials a:focus {
  outline: 2px solid #f39c12;
  outline-offset: 2px;
  color: #f39c12;
}

/* Footer bas */
.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 20px;
  padding-top: 10px;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer {
    padding: 35px 20px 18px;
  }

  .footer-container {
    gap: 25px;
  }

  .footer-col h2.logo {
    font-size: 1.6rem;
  }

  .footer-col h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 20px 15px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h2.logo {
    font-size: 1.5rem;
  }

  .footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .footer-col p,
  .footer-col address {
    font-size: 0.95rem;
  }

  .footer-col ul li {
    margin: 10px 0;
  }

  .socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .socials a {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  .socials a:hover {
    transform: translateX(0) scale(1.05);
  }

  .footer-bottom {
    font-size: 0.85rem;
    margin-top: 25px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 25px 15px 12px;
  }

  .footer-container {
    gap: 25px;
  }

  .footer-col h2.logo {
    font-size: 1.3rem;
  }

  .footer-col h3 {
    font-size: 1rem;
  }

  .footer-col p,
  .footer-col address {
    font-size: 0.9rem;
  }

  .socials a {
    font-size: 0.9rem;
    padding: 8px 10px;
  }

  .footer-bottom {
    font-size: 0.8rem;
    padding-top: 15px;
  }
}
.hero {
    height: calc(100vh - 90px);
    position: relative;
    overflow: hidden;

    /* Centrage parfait */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Particules décoratives */
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.2), transparent);
    animation: particles 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

.hero::before {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero::after {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 15%;
    animation-delay: 7s;
}

@keyframes particles {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0.2;
    }
}

/* Carousel */
.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-bg .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-bg .slide.active {
    opacity: 1;
}

/* Overlay */
.hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.8);
    z-index: 1;
}

/* Contenu */
.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
    position: relative;
}

.hero h1::before {
    content: "🍕";
    position: absolute;
    left: -60px;
    top: 0;
    font-size: 2.5rem;
    animation: rotate 3s ease-in-out infinite;
}

.hero h1::after {
    content: "🍽️";
    position: absolute;
    right: -60px;
    top: 0;
    font-size: 2.5rem;
    animation: rotate 3s ease-in-out infinite reverse;
}

@keyframes rotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(20deg);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 span {
    color: #f39c12;
    background: linear-gradient(45deg, #f39c12, #e67e22, #d35400);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero p {
    font-size: 1.2rem;
    color: #ccc;
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
}

.hero p::before {
    content: "⭐";
    margin-right: 10px;
}

.hero p::after {
    content: "⭐";
    margin-left: 10px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Section avec animation */
.cta {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary {
    background: #f39c12;
    color: #1e1e1e;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: "✨";
    position: absolute;
    left: -30px;
    transition: left 0.3s ease;
}

.btn-primary:hover::before {
    left: 10px;
}

.btn-primary:hover {
    background: #d98200;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #f39c12;
    border: 2px solid #f39c12;
}

.btn-secondary:hover {
    background: #f39c12;
    color: #1e1e1e;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        height: calc(100vh - 80px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h1::before,
    .hero h1::after {
        font-size: 2rem;
        left: -50px;
        right: -50px;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: calc(100vh - 70px);
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2rem;
        padding: 0 40px;
    }

    .hero h1::before {
        left: -5px;
        top: -35px;
        font-size: 1.5rem;
    }

    .hero h1::after {
        right: -5px;
        top: -35px;
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero::before {
        width: 150px;
        height: 150px;
    }

    .hero::after {
        width: 100px;
        height: 100px;
    }

    .cta {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 20px;
    }

    .cta .btn {
        width: 100%;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: calc(100vh - 65px);
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 1.6rem;
        padding: 0 30px;
    }

    .hero h1::before,
    .hero h1::after {
        font-size: 1.2rem;
        top: -30px;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero::before,
    .hero::after {
        width: 80px;
        height: 80px;
    }

    .cta {
        padding: 0 15px;
    }

    .cta .btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
}/* Overlay (fond) */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Contenu de la popup */
.popup-content {
    background: linear-gradient(135deg, #1a1a24 0%, #2a1a2a 100%);
    color: white;
    border-radius: 20px;
    padding: 50px 40px 40px 40px;
    width: 90%;
    max-height: 85vh;
    max-width: 1000px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(243, 156, 18, 0.3);
    overflow-y: auto;
    animation: appear 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

/* Décoration en haut de la popup */
.popup-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f39c12, #e67e22, #d35400);
    border-radius: 20px 20px 0 0;
}

/* Scrollbar personnalisée */
.popup-content::-webkit-scrollbar {
    width: 10px;
}

.popup-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.popup-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #f39c12, #e67e22);
    border-radius: 10px;
}

.popup-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #e67e22, #d35400);
}

@keyframes appear {
    from {
        transform: scale(0.8) translateY(-50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Titre de la popup */
.popup-content h1 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    position: relative;
    padding: 0 70px;
}

.popup-content h1::before {
    content: "🍕";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    animation: spin 4s linear infinite;
}

.popup-content h1::after {
    content: "🍕";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    animation: spin 4s linear infinite reverse;
}

@keyframes spin {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }
    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* Bouton fermer */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(243, 156, 18, 0.3);
    color: #f39c12;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.close-btn:hover {
    color: #fff;
    background: rgba(243, 156, 18, 0.8);
    border-color: #f39c12;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

.close-btn:active {
    transform: rotate(90deg) scale(0.95);
}

.pizza-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.pizza-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pizza-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #f39c12, #e67e22);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.pizza-item:hover {
    background: rgba(243, 156, 18, 0.08);
    transform: translateY(-3px) scale(1.01);
    border-color: rgba(243, 156, 18, 0.4);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.15);
}

.pizza-item:hover::before {
    transform: scaleY(1);
}

/* Nom visible et coloré */
.pizza-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f39c12;
    display: block;
    margin-bottom: 6px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

/* Description plus discrète, en ligne */
.pizza-desc {
    display: block;
    font-size: 0.9rem;
    color: #aaa;
    font-weight: 300;
    line-height: 1.4;
}

/* Conteneur texte (nom + desc) */
.pizza-info {
    flex: 1;
    padding-right: 20px;
}

/* Prix bien aligné à droite */
.pizza-price {
    font-weight: 800;
    color: #ffd166;
    min-width: 80px;
    text-align: center;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #ffd166, #f39c12);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 8px 16px;
    border-radius: 8px;
    border: 2px solid rgba(243, 156, 18, 0.3);
    position: relative;
    white-space: nowrap;
}

/* Responsive */
/* Responsive */
@media (max-width: 1024px) {
    .popup-content {
        padding: 45px 35px 35px 35px;
        width: 92%;
        max-width: 900px;
        max-height: 88vh;
    }

    .popup-content h1 {
        font-size: 2.3rem;
        padding: 0 65px;
    }

    .pizza-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .pizza-item {
        padding: 15px 18px;
    }
}

@media (max-width: 768px) {
    .popup-content {
        padding: 40px 20px 30px 20px;
        width: 95%;
        max-height: 90vh;
    }

    .popup-content h1 {
        font-size: 2rem;
        padding: 0 50px;
        margin-bottom: 30px;
    }

    .popup-content h1::before,
    .popup-content h1::after {
        font-size: 2rem;
    }

    .pizza-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .pizza-item {
        padding: 14px 16px;
    }

    .pizza-name {
        font-size: 1rem;
    }

    .pizza-desc {
        font-size: 0.85rem;
    }

    .pizza-price {
        font-size: 1rem;
        padding: 6px 12px;
        min-width: 65px;
    }

    .close-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
        top: 10px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .popup-overlay {
        backdrop-filter: blur(5px);
    }

    .popup-content {
        padding: 35px 15px 25px 15px;
        width: 98%;
        max-height: 92vh;
        border-radius: 15px;
    }

    .popup-content h1 {
        font-size: 1.6rem;
        padding: 0 40px;
        margin-bottom: 25px;
    }

    .popup-content h1::before,
    .popup-content h1::after {
        font-size: 1.5rem;
    }

    .pizza-list {
        gap: 8px;
    }

    .pizza-item {
        padding: 12px 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .pizza-info {
        padding-right: 0;
        width: 100%;
    }

    .pizza-name {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

    .pizza-desc {
        font-size: 0.8rem;
    }

    .pizza-price {
        font-size: 0.95rem;
        padding: 5px 10px;
        min-width: auto;
        align-self: flex-end;
    }

    .close-btn {
        width: 35px;
        height: 35px;
        font-size: 20px;
        top: 8px;
        right: 10px;
    }
}.restaurant {
    position: relative;
    overflow: hidden;
    min-height: auto;
    height: auto;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1a24 100%);
}

/* Arrière-plan avec icônes flottantes */
.restaurant-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.floating-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.08;
    animation: floatAround 20s infinite ease-in-out;
}

.icon-1 { top: 10%; left: 10%; animation-delay: 0s; }
.icon-2 { top: 20%; right: 15%; animation-delay: 2s; }
.icon-3 { bottom: 15%; left: 20%; animation-delay: 4s; }
.icon-4 { top: 60%; right: 10%; animation-delay: 6s; }
.icon-5 { bottom: 25%; right: 25%; animation-delay: 8s; }
.icon-6 { top: 40%; left: 15%; animation-delay: 10s; }

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg) scale(1.2);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) rotate(270deg) scale(1.1);
    }
}

.restaurant .container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    width: 100%;
}

/* Header de la section */
.restaurant-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
    }
}

.restaurant-header h2 {
    font-size: 3rem;
    margin: 10px 0;
}

.stars {
    font-size: 1.5rem;
    animation: shimmerStars 3s ease-in-out infinite;
}

@keyframes shimmerStars {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Cartes de fonctionnalités */
.restaurant-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(243, 156, 18, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #f39c12;
    box-shadow: 0 20px 40px rgba(243, 156, 18, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card.highlight {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.15), rgba(230, 126, 34, 0.1));
    border-color: #f39c12;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #f39c12;
    margin-bottom: 10px;
}

.feature-card p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Bouton spécial avec glow */
.btn-glow {
    position: relative;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
    margin-top: 10px;
}

.btn-glow::before {
    content: "✨";
    position: absolute;
    left: 15px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

.btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(243, 156, 18, 0.6);
}

/* Informations du restaurant */
.restaurant-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.info-item:hover {
    color: #f39c12;
    transform: translateY(-3px);
}

.info-icon {
    font-size: 1.5rem;
    animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* Schedule details */
.schedule-item {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.08), rgba(230, 126, 34, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(243, 156, 18, 0.2);
    min-width: 400px;
}

.schedule-item:hover {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.12), rgba(230, 126, 34, 0.08));
    border-color: rgba(243, 156, 18, 0.4);
}

.schedule-details {
    width: 100%;
}

.schedule-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f39c12;
    margin: 0 0 15px 0;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid #f39c12;
    transition: all 0.3s ease;
}

.schedule-row:hover {
    background: rgba(243, 156, 18, 0.1);
    transform: translateX(5px);
}

.schedule-row.closed {
    border-left-color: #e74c3c;
    opacity: 0.7;
}

.schedule-row.closed:hover {
    background: rgba(231, 76, 60, 0.1);
}

.schedule-day {
    font-weight: 600;
    color: #f39c12;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.schedule-row.closed .schedule-day {
    color: #e74c3c;
}

.schedule-hours {
    color: #ddd;
    font-size: 0.9rem;
    font-weight: 500;
}

.schedule-row.closed .schedule-hours {
    color: #e74c3c;
    font-style: italic;
}

/* Contact link */
.contact-link {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 6px;
}

.contact-link:hover {
    color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
    transform: scale(1.05);
}

.contact-link:focus {
    outline: 2px solid #f39c12;
    outline-offset: 2px;
}

/* Address item */
.address-item {
    max-width: 250px;
    text-align: center;
}

/* Responsive */
/* Responsive */
@media (max-width: 1024px) {
    .restaurant {
        padding: 70px 30px;
    }

    .restaurant-header h2 {
        font-size: 2.5rem;
    }

    .restaurant-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .feature-card {
        padding: 25px;
    }

    .card-icon {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .restaurant {
        padding: 60px 20px;
    }

    .restaurant-header {
        margin-bottom: 40px;
    }

    .restaurant-header h2 {
        font-size: 2rem;
    }

    .restaurant-header .badge {
        font-size: 0.85rem;
        padding: 6px 16px;
    }

    .restaurant-header .stars {
        font-size: 1.2rem;
    }

    .restaurant-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 20px;
    }

    .card-icon {
        font-size: 3rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .restaurant-info {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
        padding: 25px;
    }

    .schedule-item {
        min-width: auto;
        width: 100%;
        padding: 20px;
    }

    .schedule-title {
        font-size: 1.2rem;
    }

    .schedule-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 10px 15px;
    }

    .schedule-day,
    .schedule-hours {
        font-size: 0.9rem;
    }

    .info-item {
        justify-content: center;
        text-align: center;
        padding: 12px 20px;
    }

    .info-icon {
        font-size: 1.8rem;
    }

    .address-item {
        max-width: 100%;
    }

    .floating-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .restaurant {
        padding: 50px 15px;
    }

    .restaurant-header h2 {
        font-size: 1.6rem;
    }

    .restaurant-header .badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .restaurant-content {
        gap: 15px;
    }

    .feature-card {
        padding: 18px;
    }

    .card-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .restaurant-info {
        padding: 20px;
        gap: 15px;
    }

    .schedule-item {
        padding: 18px;
    }

    .schedule-title {
        font-size: 1.1rem;
    }

    .schedule-row {
        padding: 8px 12px;
    }

    .info-item {
        padding: 10px 15px;
    }

    .floating-icon {
        font-size: 2rem;
    }
}

#popup-restaurant p {
    margin-bottom: 0;
}

#popup-restaurant h3 {
    margin-top: 1em;
}

#popup-restaurant ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1em 0;
    column-count: 2;
    column-gap: 2em;
}

#popup-restaurant li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    margin-bottom: 8px;
    break-inside: avoid;
    transition: all 0.3s ease;
}

#popup-restaurant li:hover {
    background: rgba(243, 156, 18, 0.08);
    border-color: rgba(243, 156, 18, 0.3);
    transform: translateX(5px);
}

/* Pour les items avec description, plus d'espace */
#popup-restaurant li[data-desc] {
    padding: 14px 16px;
    flex-direction: column;
    gap: 6px;
}

/* Nom de l'item */
#popup-restaurant li {
    position: relative;
}

/* Prix affiché à droite sur la même ligne */
#popup-restaurant li::after {
    content: attr(data-volume) attr(data-price);
    color: #ffd166;
    font-weight: bold;
    font-size: 17px;
    margin-left: auto;
    padding-left: 16px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Description affichée en dessous du nom */
#popup-restaurant li[data-desc]::before {
    content: attr(data-desc);
    font-size: 13px;
    color: #aaa;
    font-weight: 300;
    display: block;
    width: 100%;
    line-height: 1.4;
}

#accompagnement-note {
    font-size: 14px;
    font-style: italic;
    color: #ccc;
    margin-top: 0.3em;
}

.horaire-note {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.2), rgba(230, 126, 34, 0.2));
    border-left: 4px solid #f39c12;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #ffd166;
    text-align: center;
    margin-bottom: 1.5em;
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.15);
}

.menu-nav {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin: 1em 0;
}

.menu-nav button {
    padding: 8px 12px;
    background: #f39c12;
    border: none;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.menu-nav button:hover {
    opacity: 0.8;
}

/* ===== STYLES RESPONSIVE POUR POPUP RESTAURANT ===== */

/* Tablettes */
@media (max-width: 1024px) {
    #popup-restaurant ul {
        column-count: 2;
        column-gap: 1.5em;
    }

    #popup-restaurant li {
        font-size: 15px;
        padding: 10px 14px;
    }

    #popup-restaurant li::after {
        font-size: 16px;
        padding-left: 12px;
    }

    #popup-restaurant li[data-desc]::before {
        font-size: 12px;
    }
}

/* Tablettes small et smartphones landscape */
@media (max-width: 768px) {
    #popup-restaurant ul {
        column-count: 1;
        column-gap: 0;
    }

    #popup-restaurant li {
        font-size: 15px;
        padding: 12px 14px;
        margin-bottom: 6px;
    }

    #popup-restaurant li::after {
        font-size: 16px;
        padding-left: 10px;
    }

    #popup-restaurant li[data-desc] {
        padding: 12px 14px;
    }

    #popup-restaurant li[data-desc]::before {
        font-size: 12px;
        margin-top: 4px;
    }

    #popup-restaurant h3 {
        font-size: 1.3rem;
        margin-top: 1.2em;
        color: #f39c12;
    }

    .menu-nav {
        flex-wrap: wrap;
        gap: 0.8em;
    }

    .menu-nav button {
        padding: 10px 16px;
        font-size: 14px;
        flex: 1;
        min-width: 100px;
    }

    .horaire-note {
        font-size: 14px;
        padding: 10px 14px;
    }

    .accompagnement-note {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* Smartphones */
@media (max-width: 480px) {
    #popup-restaurant ul {
        column-count: 1;
        margin: 0 0 0.8em 0;
    }

    #popup-restaurant li {
        font-size: 14px;
        padding: 10px 12px;
        margin-bottom: 5px;
        flex-wrap: nowrap;
    }

    #popup-restaurant li::after {
        font-size: 15px;
        padding-left: 8px;
        min-width: 60px;
        text-align: right;
    }

    #popup-restaurant li[data-desc] {
        padding: 10px 12px;
        flex-wrap: wrap;
    }

    #popup-restaurant li[data-desc]::before {
        font-size: 11px;
        margin-top: 3px;
        line-height: 1.3;
    }

    #popup-restaurant li[data-desc]::after {
        width: 100%;
        text-align: right;
        margin-top: 4px;
        padding-left: 0;
        border-top: 1px dotted rgba(255, 255, 255, 0.2);
        padding-top: 6px;
    }

    #popup-restaurant h3 {
        font-size: 1.2rem;
        margin-top: 1em;
        margin-bottom: 0.5em;
    }

    .menu-nav {
        flex-direction: column;
        gap: 0.6em;
    }

    .menu-nav button {
        padding: 12px 20px;
        font-size: 15px;
        width: 100%;
    }

    .horaire-note {
        font-size: 13px;
        padding: 10px 12px;
        margin-bottom: 1.2em;
    }

    .accompagnement-note {
        font-size: 12px;
        line-height: 1.4;
        margin-top: 0.5em;
    }

    #popup-restaurant hr {
        margin: 1em 0;
    }
}

/* Très petits smartphones */
@media (max-width: 360px) {
    #popup-restaurant li {
        font-size: 13px;
        padding: 8px 10px;
    }

    #popup-restaurant li::after {
        font-size: 14px;
        min-width: 55px;
    }

    #popup-restaurant li[data-desc]::before {
        font-size: 11px;
    }

    #popup-restaurant h3 {
        font-size: 1.1rem;
    }

    .menu-nav button {
        padding: 10px 16px;
        font-size: 14px;
    }
}
.epicerie {
    position: relative;
    overflow: hidden;
    min-height: auto;
    height: auto;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1a241a 0%, #1a2d1a 100%);
}

/* Arrière-plan avec icônes flottantes */
.epicerie-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.epicerie .floating-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.08;
    animation: floatAround 20s infinite ease-in-out;
}

.epicerie .icon-1 { top: 10%; left: 10%; animation-delay: 0s; }
.epicerie .icon-2 { top: 20%; right: 15%; animation-delay: 2s; }
.epicerie .icon-3 { bottom: 15%; left: 20%; animation-delay: 4s; }
.epicerie .icon-4 { top: 60%; right: 10%; animation-delay: 6s; }
.epicerie .icon-5 { bottom: 25%; right: 25%; animation-delay: 8s; }
.epicerie .icon-6 { top: 40%; left: 15%; animation-delay: 10s; }

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg) scale(1.2);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) rotate(270deg) scale(1.1);
    }
}

.epicerie .container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    width: 100%;
}

/* Header de la section */
.epicerie-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.epicerie .badge {
    display: inline-block;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    animation: pulseGreen 2s ease-in-out infinite;
}

@keyframes pulseGreen {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
    }
}

.epicerie-header h2 {
    font-size: 3rem;
    margin: 10px 0;
    background: linear-gradient(45deg, #4caf50, #66bb6a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.epicerie .stars {
    font-size: 1.5rem;
    animation: shimmerStars 3s ease-in-out infinite;
}

@keyframes shimmerStars {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Cartes de fonctionnalités */
.epicerie-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.epicerie .feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(76, 175, 80, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.epicerie .feature-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.epicerie .feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #4caf50;
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.3);
}

.epicerie .feature-card:hover::before {
    opacity: 1;
}

.epicerie .feature-card.highlight {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(102, 187, 106, 0.1));
    border-color: #4caf50;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.epicerie .card-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounceGreen 2s ease-in-out infinite;
}

@keyframes bounceGreen {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.epicerie .feature-card h3 {
    font-size: 1.5rem;
    color: #4caf50;
    margin-bottom: 10px;
}

.epicerie .feature-card p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Informations de l'épicerie */
.epicerie-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.epicerie .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Schedule details for epicerie */
.epicerie .schedule-item {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(102, 187, 106, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(76, 175, 80, 0.2);
    min-width: 400px;
}

.epicerie .schedule-item:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.12), rgba(102, 187, 106, 0.08));
    border-color: rgba(76, 175, 80, 0.4);
    color: #4caf50;
    transform: translateY(-3px);
}

.epicerie .schedule-details {
    width: 100%;
}

.epicerie .schedule-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4caf50;
    margin: 0 0 15px 0;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.epicerie .schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.epicerie .schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid #4caf50;
    transition: all 0.3s ease;
}

.epicerie .schedule-row:hover {
    background: rgba(76, 175, 80, 0.1);
    transform: translateX(5px);
}

.epicerie .schedule-row.closed {
    border-left-color: #e74c3c;
    opacity: 0.7;
}

.epicerie .schedule-row.closed:hover {
    background: rgba(231, 76, 60, 0.1);
}

.epicerie .schedule-row.partial {
    border-left-color: #ff9800;
    opacity: 0.85;
}

.epicerie .schedule-row.partial:hover {
    background: rgba(255, 152, 0, 0.1);
}

.epicerie .schedule-day {
    font-weight: 600;
    color: #4caf50;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.epicerie .schedule-row.closed .schedule-day {
    color: #e74c3c;
}

.epicerie .schedule-row.partial .schedule-day {
    color: #ff9800;
}

.epicerie .schedule-hours {
    color: #ddd;
    font-size: 0.9rem;
    font-weight: 500;
}

.epicerie .schedule-row.closed .schedule-hours {
    color: #e74c3c;
    font-style: italic;
}

.epicerie .schedule-row.partial .schedule-hours {
    color: #ff9800;
}

.epicerie .info-item:hover {
    color: #4caf50;
    transform: translateY(-3px);
    background: rgba(76, 175, 80, 0.1);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
}

.epicerie .info-icon {
    font-size: 2rem;
    animation: wiggleGreen 3s ease-in-out infinite;
}

@keyframes wiggleGreen {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.epicerie .info-item strong {
    color: #4caf50;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .epicerie {
        padding: 70px 30px;
    }

    .epicerie-header h2 {
        font-size: 2.5rem;
    }

    .epicerie-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .epicerie .feature-card {
        padding: 25px;
    }

    .epicerie .card-icon {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .epicerie {
        padding: 60px 20px;
    }

    .epicerie-header {
        margin-bottom: 40px;
    }

    .epicerie-header h2 {
        font-size: 2rem;
    }

    .epicerie-header .badge {
        font-size: 0.85rem;
        padding: 6px 16px;
    }

    .epicerie-header .stars {
        font-size: 1.2rem;
    }

    .epicerie-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .epicerie .feature-card {
        padding: 20px;
    }

    .epicerie .card-icon {
        font-size: 3rem;
    }

    .epicerie .feature-card h3 {
        font-size: 1.3rem;
    }

    .epicerie .feature-card p {
        font-size: 0.9rem;
    }

    .epicerie-info {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
        padding: 25px;
    }

    .epicerie .schedule-item {
        min-width: auto;
        width: 100%;
        padding: 20px;
    }

    .epicerie .schedule-title {
        font-size: 1.2rem;
    }

    .epicerie .schedule-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 10px 15px;
    }

    .epicerie .schedule-day,
    .epicerie .schedule-hours {
        font-size: 0.9rem;
    }

    .epicerie .info-item {
        justify-content: center;
        text-align: center;
        padding: 12px 20px;
    }

    .epicerie .info-icon {
        font-size: 1.8rem;
    }

    .epicerie .floating-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .epicerie {
        padding: 50px 15px;
    }

    .epicerie-header h2 {
        font-size: 1.6rem;
    }

    .epicerie-header .badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .epicerie-content {
        gap: 15px;
    }

    .epicerie .feature-card {
        padding: 18px;
    }

    .epicerie .card-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .epicerie .feature-card h3 {
        font-size: 1.2rem;
    }

    .epicerie .feature-card p {
        font-size: 0.85rem;
    }

    .epicerie-info {
        padding: 20px;
        gap: 15px;
    }

    .epicerie .schedule-item {
        padding: 18px;
    }

    .epicerie .schedule-title {
        font-size: 1.1rem;
    }

    .epicerie .schedule-row {
        padding: 8px 12px;
    }

    .epicerie .info-item {
        padding: 10px 15px;
    }

    .epicerie .floating-icon {
        font-size: 2rem;
    }
}
/* ===== BANDEROLES D'ANNONCE ===== */
.announce-banners {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.announce-banner {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    width: 100%;
    padding: 1rem 1.5rem;
    box-shadow: 0 3px 15px rgba(211, 84, 0, 0.35);
    animation: announceSlideDown 0.5s ease-out;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

@keyframes announceSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.announce-banner .announce-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: #fff;
    position: relative;
}

.announce-banner .announce-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
    animation: announcePulse 2.5s ease-in-out infinite;
}

.announce-banner .announce-text {
    flex: 1;
}

.announce-banner .announce-text h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.announce-banner .announce-text p {
    margin: 0.3rem 0 0;
    font-size: 0.95rem;
    opacity: 0.95;
}

.announce-banner .announce-close {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.announce-banner .announce-close:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.1);
}

@keyframes announcePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .announce-banners {
        top: 80px;
    }
}

@media (max-width: 768px) {
    .announce-banners {
        top: 70px;
    }

    .announce-banner {
        padding: 0.9rem 1rem;
    }

    .announce-banner .announce-content {
        gap: 1rem;
    }

    .announce-banner .announce-icon {
        font-size: 1.8rem;
    }

    .announce-banner .announce-text h2 {
        font-size: 1.05rem;
    }

    .announce-banner .announce-text p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .announce-banner .announce-icon {
        font-size: 1.5rem;
    }

    .announce-banner .announce-text h2 {
        font-size: 0.95rem;
    }

    .announce-banner .announce-text p {
        font-size: 0.8rem;
    }
}
