/* Variabile CSS pentru coerență cu site-ul principal */
     :root {
  /* Paleta de culori inspirată din steagul Italiei + Accente */
  --green: #00843d;
  --white: #ffffff;
  --red: #cd212a;
  --gold: #d4af37;
  --dark: #333333;
  --light-bg: #f8ff9a22;
}

/* Setarea globală pentru fontul de bază (textul principal) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* Stiva de fonturi pentru corp. Asigură lizibilitate pe orice sistem. */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

b{
  font-family: "Italianno", cursive !important;
  font-size:1.8rem;
  font-weight: bold;
}

body {
  background-color: var(--light-bg);
  color: var(--dark);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Header și Navbar */
header {
  background-color: var(--white);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-icon img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo h1 {
  color: var(--dark);
  font-size: 2.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  /* FONTUL DECORATIV CURSIV PENTRU NUMELE RESTAURANTULUI */
  font-family: "Italianno", cursive;
}
h1 span{
  font-family: "Italianno", cursive !important;
  font-size: 6rem;
  font-weight: bold;
}
.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-links a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--green);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-links a:hover:after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

      .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }

      h1,
      h2,
      h3,
      h4 {
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 15px;
      }

      p {
        margin-bottom: 15px;
      }

      a {
        text-decoration: none;
        color: inherit;
      }

      ul {
        list-style: none;
      }

      img {
        max-width: 100%;
        height: auto;
      }

      /* Header și Navbar */
     
      .menu-toggle {
        display: none;
        font-size: 1.5rem;
        cursor: pointer;
      }

      /* 2. STILIZARE STRUCTURĂ CARUSEL */
      .slider-container {
        position: relative;
        width: 100vw;
        min-height: 100vh;
        overflow: hidden;
        margin-top: 80px;
      }

      .slider-wrapper {
        display: flex;
        height: 100%;
        transition: transform 0.6s ease-in-out;
        will-change: transform;
      }

      .meniu-fisa {
        min-width: 100vw;
        box-sizing: border-box;
        padding: 20px;
        overflow-y: auto;
        max-height: calc(100vh - 80px);
        background-color: var(--light);
      }

      /* 3. STILIZARE NAVIGAȚIE (SĂGEȚI) */
      .prev,
      .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        padding: 16px 12px;
        margin-top: -22px;
        color: var(--red);
        font-weight: bold;
        font-size: 30px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
        background-color: rgba(255, 255, 255, 0.8);
        border: none;
        z-index: 100;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
      }

      .next {
        right: 0;
        border-radius: 3px 0 0 3px;
      }

      .prev:hover,
      .next:hover {
        background-color: var(--red);
        color: var(--white);
      }

      /* 4. STILURI PENTRU CONȚINUTUL MENIULUI */
      .menu-container {
        max-width: 800px;
        margin: 30px auto;
        padding: 20px;
        background-color: var(--white);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        border-radius: 8px;
      }

      .header h2,
      h1 {
        color: var(--red);
        text-align: center;
        padding-bottom: 10px;
      }

      .header p {
        text-align: center;
        color: var(--dark);
      }

      .menu-section h2 {
        color: var(--red);
        border-bottom: 1px dashed #ccc;
        padding-bottom: 5px;
        margin-top: 30px;
        font-size: 1.4rem;
      }

      .section-icon {
        font-size: 0.8em;
        vertical-align: top;
      }

      .menu-item {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
      }

      .item-info {
        flex-grow: 1;
        padding-right: 20px;
      }

      .item-title {
        font-weight: bold;
        color: var(--red);
        font-size: 1.1rem;
      }

      .item-desc {
        font-size: 0.9rem;
        color: #555;
        margin-top: 5px;
        margin-bottom: 10px;
      }

      .item-nutrition,
      .item-allergens {
        font-size: 0.85rem;
        color: #777;
        margin-top: 5px;
        padding-left: 10px;
        border-left: 2px solid #f0f0f0;
      }

      .nutrition-label,
      .allergen-label {
        font-weight: bold;
        color: var(--dark);
      }

      .item-note {
        font-style: italic;
        color: #999;
        margin-top: 5px;
      }

      .item-price {
        font-weight: bold;
        color: var(--green);
        font-size: 1.2rem;
        white-space: nowrap;
        text-align: right;
      }

      /* STILIZARE ALERGENI DETALIAT (fisa25) */
      .allergen-legend-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
      }

      .allergen-legend-item {
        width: 48%;
        margin-bottom: 10px;
        padding: 5px;
        font-size: 0.9rem;
      }

      .allergen-legend-code {
        display: inline-block;
        background: var(--red);
        color: var(--white);
        width: 24px;
        height: 24px;
        text-align: center;
        line-height: 24px;
        border-radius: 50%;
        margin-right: 10px;
        font-weight: bold;
        font-size: 0.8rem;
      }

      .note-box {
        margin-top: 30px;
        padding: 15px;
        border: 1px solid #f9f9f9;
        background-color: rgba(212, 175, 55, 0.1);
        border-left: 5px solid var(--gold);
        font-size: 0.9em;
        text-align: center;
      }

     /* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: var(--white);
}

.footer-column h3:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--green);
  bottom: 0;
  left: 0;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--green);
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #aaa;
}

.copyright a {
  font-size: 1rem;
  color: var(--green);
  text-decoration: none;
} 

.copyright a:hover {
  color: var(--gold);
  text-decoration: underline;
}
      .social-links {
        display: flex;
        gap: 15px;
      }

      .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: var(--green);
        color: var(--white);
        border-radius: 50%;
        transition: var(--transition);
      }

      .social-link:hover {
        background-color: var(--gold);
        transform: translateY(-3px);
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .menu-toggle {
          display: block;
        }

        .nav-links {
          position: fixed;
          top: 80px;
          left: -100%;
          width: 100%;
          flex-direction: column;
          background-color: var(--white);
          text-align: center;
          transition: var(--transition);
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
          padding: 20px 0;
        }

        .nav-links.active {
          left: 0;
        }

        .nav-links li {
          margin: 15px 0;
        }

        .slider-container {
          margin-top: 80px;
        }

        .meniu-fisa {
          padding: 10px;
        }

        .menu-container {
          padding: 15px;
          box-shadow: none;
          border-radius: 0;
        }

        h1 {
          font-size: 1.8rem;
        }

        .menu-section h2 {
          font-size: 1.2rem;
          margin-top: 20px;
        }

        .menu-item {
          flex-direction: column;
          align-items: stretch;
          padding: 10px 0;
        }

        .item-info {
          padding-right: 0;
        }

        .item-title {
          font-size: 1rem;
        }

        .item-desc {
          font-size: 0.85rem;
          margin-bottom: 5px;
        }

        .item-price {
          order: -1;
          font-size: 1.1rem;
          text-align: left;
          margin-bottom: 5px;
        }

        .item-nutrition,
        .item-allergens {
          padding-left: 0;
          border-left: none;
          font-size: 0.8rem;
        }

        .allergen-legend-item {
          width: 100%;
        }

        .prev,
        .next {
          padding: 10px 8px;
          font-size: 24px;
          margin-top: -16px;
          background-color: rgba(255, 255, 255, 0.9);
        }
      }

      @media (max-width: 576px) {
        .footer-content {
          flex-direction: column;
        }

        .footer-column {
          flex: none;
          width: 100%;
        }
      }