/* =========================================
   1. RESET & BAZĂ
   ========================================= */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   }

   html {
    scroll-behavior: smooth;
   }

   body {
    font-family: 'Lato', sans-serif;
    background: #1a0e00;
    color: #f5e6d3;
    line-height: 1.6;
   }

   a {
      color:#c8860a;
      text-decoration: none;
      transition: 0.3s;
   }

   a:hover {
      color: #f5e6d3;
   }

/* =========================================
   2. NAVIGAȚIE
   ========================================= */
   .main-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 40px;
      background: rgba(20, 10, 0, 0.95);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 2px solid #c8860a;
   }

   .logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: #f5e6d3;
   }
   
   .logo span {
      color: #c8860a;
   }

   nav ul {
      list-style: none;
      display: flex;
      gap: 30px;
   }

   nav ul li a {
      color: #f5e6d3;
      text-decoration: none;
      font-size: 0.95rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: 0.3s;
   }

   nav ul li a:hover {
      color: #c8860a;
   }

   .nav-container a[href*="pedir"] {
      background: #c8860a !important;
      color: #ffffff !important;
      padding: 8px 16px !important;
      border-radius: 3px !important;
   }

/* =========================================
   3. FOOTER
   ========================================= */
   .main-footer {
      background: #0d0700;
      padding: 30px;
      text-align: center;
      border-top: 2px solid #c8860a;
      color: rgba(245, 230, 211, 0.6);
      font-size: 0.9rem;
   }

   main-footer ul {
      list-style: none;
      display: flex;
      gap: 20px;
      justify-content: center;
      padding: 0;
      margin-bottom: 10px;
   }

   .main-footer ul li a {
      color: rgba(245, 230, 211, 0.6);
      text-decoration: none;
      font-size: 0.85rem;
      transition: 0.3s;
   }

   .main-footer ul li a:hover {
      color: #c8860a;
   }

   .main-footer .footer-links ul {
      list-style: none !important;
      display: flex;
      gap: 20px;
      justify-content: center;
      padding: 0 !important;
      margin: 0 0 15px 0 !important;
   }

   .main-footer .footer-links ul li {
      list-style: none !important;
   }

/* =========================================
   4. HERO
   ========================================= */
   .hero {
      height: 30vh;
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
      url('https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?w=1600') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
   }

   .hero-content {
      max-width: 800px;
      padding: 20px;
   }

   .hero-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      color: #ffffff;
      margin-bottom: 20px;
      text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
   }

   .hero-content p {
      font-size: 1.3rem;
      color: #f5e6d3;
      margin-bottom: 10px;
   }

   .btn-reserva {
      display: inline-block;
      padding: 15px 40px;
      background: #c8860a;
      color: #ffffff;
      text-decoration: none;
      border-radius: 3px;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      transition: 0.3s;
   }

   .btn-reserva:hover {
      background: #a06d08;
      transform: scale(1.05);
   }

/* =========================================
   5. MAIN CONTENT
   ========================================= */
   .main-content {
      padding: 60px 20px;
      max-width: 800px;
      margin: 20px auto;
      background: rgba(245, 230, 211, 0.05);
      border: 1px solid rgba(245, 230, 211, 0.02);
      border-radius: 10px;
   }

   .main-content h1 {
      color: #c8860a !important;
      text-align: center !important;
      font-family: 'Playfair Display', serif !important;
      margin-bottom: 30px !important;
   }

/* =========================================
   6. SECȚIUNEA MENIU
   ========================================= */
   .menu-section {
      padding: 20px 20px;
      background: #120900;
      text-align: center;
   }

   .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      color: #f5e6d3;
      margin-bottom: 10px;
   }

   .section-subtitle {
      color: rgba(245, 230, 211, 0.6);
      font-size: 1.1rem;
      margin-bottom: 50px;
   }

   .menu-grid {
      display: flex;
      justify-content: center;
      gap: 25px;
      flex-wrap: wrap;
      max-width: 1100px;
      margin: 0 auto;
   }

   .menu-card {
      background: rgba(200, 134, 10, 0.08);
      border: 1px solid rgba(200, 134, 10, 0.4);
      padding: 35px 25px;
      border-radius: 10px;
      flex: 1;
      min-width: 200px;
      max-width: 250px;
      transition: all 0.3s ease;
   }

   .menu-card:hover {
      background: rgba(200, 134, 10, 0.15);
      border-color: #c8860a;
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(200, 134, 10, 0.2);
   }

   .menu-icon {
      font-size: 3rem;
      margin-bottom: 15px;
   }

   .menu-card h3 {
      font-family: 'Playfair Display', serif;
      color: #c8860a;
      font-size: 1.3rem;
      margin-bottom: 10px;
   }

   .menu-card p {
      color: rgba(245, 230, 211, 0.7);
      font-size: 0.9rem;
      margin-bottom: 15px;
   }

   .menu-precio {
      color: #c8860a;
      font-weight: bold;
      font-size: 1rem;
   }

   .carta-btn-container {
      margin-top: 40px;
   }

   .btn-carta {
      display: inline-block;
      padding: 15px 40px;
      background: transparent;
      border: 2px solid #c8860a;
      color: #c8860a;
      text-decoration: none;
      border-radius: 3px;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      transition: 0.3s;
   }

   .btn-carta:hover {
      background: #c8860a;
      color: #ffffff;
   }

/* =========================================
      7. NOSOTROS
   ========================================= */
   .nosotros-section {
    padding: 80px 20px;
    background: #1a0e00;
   }

   .nosotros-container {
      display: flex;
      gap: 60px;
      max-width: 1100px;
      margin: 0 auto;
      align-items: center;
      flex-wrap: wrap;
   }

   .nosotros-text {
      flex: 1;
      min-width: 280px;
   }

   .nosotros-text p {
      color: rgba(245, 230, 211, 0.7);
      font-size: 1rem;
      margin-bottom: 20px;
      line-height: 1.8;
   }

   .nosotros-datos {
      flex: 1;
      min-width: 280px;
      display: flex;
      flex-direction: column;
      gap: 20px;
   }

   .dato-card {
      background: rgba(200, 134, 10, 0.08);
      border: 1px solid rgba(200, 134, 10, 0.4);
      border-radius: 10px;
      padding: 25px 30px;
      display: flex;
      align-items: center;
      gap: 20px;
      transition: all 0.3s ease;
   }

   .dato-card:hover {
      border-color: #c8860a;
      background: rgba(200, 134, 10, 0.15);
   }

   .dato-numero {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      color: #c8860a;
      font-weight: bold;
   }

   .dato-texto {
      color: #f5e6d3;
      font-size: 1rem;
   }

/* =========================================
   8. CONTACTO
   ========================================= */
   .contacto-section {
      padding: 40px 20px;
      background: #120900;
      text-align: center;
   }

   .contacto-container {
      max-width: 1100px;
      margin: 0 auto;
   }
   
   .contacto-grid {
      display: flex;
      justify-content: center;
      gap: 25px;
      flex-wrap: wrap;
      margin-top: 40px;
   }

   .contacto-card {
      background: rgba(200, 134, 10, 0.08);
      border: 1px solid rgba(200, 134, 10, 0.4);
      padding: 35px 25px;
      border-radius: 10px;
      flex: 1;
      min-width: 200px;
      max-width: 250px;
      transition: all 0.3s ease;
   }

   .contacto-card:hover {
      border-color: #c8860a;
      background: rgba(200, 134, 10, 0.15);
      transform: translateY(-5px);
   }

   .contacto-card i {
      font-size: 2rem;
      color: #c8860a;
      margin-bottom: 15px;
      display: block;
   }

   .contacto-card h3 {
      font-family: 'Playfair Display', serif;
      color: #f5e6d3;
      font-size: 1.1rem;
      margin-bottom: 10px;
   }

   .contacto-card p {
      color: #ffffff;
      font-size: 0.9rem;
      line-height: 1.8;
   }

   .contacto-card a {
      color: #ffffff;
      text-decoration: none;
      font-size: 1rem;
      font-weight: bold;
      transition: 0.3s;
   }

   .contacto-card a:hover {
      color: #1a0e00;
   }

/* =========================================
   9. NUESTRA CARTA
   ========================================= */
   .carta-section {
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
   }

   .carta-categoria {
      font-family: 'Playfair Display', serif;
      color: #c8860a;
      font-size: 1.8rem;
      margin: 40px 0 20px;
      border-bottom: 1px solid rgba(200, 134, 10, 0.3);
      padding-bottom: 10px;
   }

   .carta-grid {
      display: flex;
      flex-direction: column;
      gap: 10px;
   }

   .carta-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 20px;
      background: rgba(200, 134, 10, 0.05);
      border-radius: 8px;
      border: 1px solid rgba(200, 134, 10, 0.2);
      transition: 0.3s;
   }

   .carta-item:hover {
      background: rgba(200, 134, 10, 0.12);
      border-color: #c8860a;
   }

   .carta-nombre {
      color: #f5e6d3;
      font-size: 1rem;
   }

   .carta-precio {
      color: #c8860a;
      font-weight: bold;
      font-size: 1rem;
   }

   .page-header h1,
   .item-page h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      color: #c8860a;
      text-align: center;
      margin: 40px 0;
      border-bottom: 2px solid rgba(200, 134, 10, 0.3);
      padding-bottom: 20px;
   }

/* =========================================
   10. CARTA - TABELE
   ========================================= */
   .item-page table {
      width: 100%;
      max-width: 800px;
      margin: 0 auto 30px;
      border-collapse: collapse;
   }

   .item-page table tr {
      border-bottom: 1px solid rgba(200, 134, 10, 0.15);
   }

   .item-page table tr:hover {
      background: rgba(200, 134, 10, 0.05);
   }

   .item-page table td {
      padding: 12px 15px;
      color: #f5e6d3;
      font-size: 0.95;
   }

   .item-page table td:last-child {
      text-align: roght;
      color: #c8860a;
      font-weight: bold;
      white-space: nowrap;
      width: 100px;
   }

   .item-page h2 {
      font-family: 'Playfair Display', serif;
      color: #c8860a;
      font-size: 1.8rem;
      margin: 40px 0 15px;
      border-bottom: 1px solid rgba(200, 134, 10, 0.3);
      padding-bottom: 10px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
   }

   .carta-iva {
      text-align: center;
      color: rgba(245, 230, 211, 0.6);
      font-size: 0.85rem;
      margin-top: 30px;
      padding-top: 20px;
      border-top: 1px solid rgba(200, 134, 10, 0.2);
   }

   .item-page h1,
   .page-header h1 {
      text-align: center !important;
      color: #c8860a !important;
      font-family: 'Playfair Display', serif !important;
   }

/* =========================================
   11. BUTON VOLVER
   ========================================= */
   .btn-volver-container {
      padding: 20px 40px;
   }

   .btn-volver {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #c8860a;
      text-decoration: none;
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      transition: 0.3s;
   }

   .btn-volver:hover {
      color: #f5e6d3;
   }

/* =========================================
   12. MEDIA
   ========================================= */
   @media (max-width: 768px) {
   .main-nav {
      flex-direction: column !important;
      align-items: center !important;
      padding: 10px !important;
   }

   .logo {
      text-align: center !important;
      margin-bottom: 8px !important;
   }

   .nav-container {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      width: 100% !important;
      gap: 10px !important;
   }

   nav ul {
      flex-direction: row !important;
      justify-content: center !important;
      gap: 8px !important;
   }

   .nav-container a[href*="pedir"] {
      display: block !important;
      width: 80% !important;
      text-align: center !important;
      margin: 0 auto !important;
      font-size: 0.6rem !important;
      padding: 6px 10px !important;
   }

   .hero {
      height: 55vh !important;
   }

   .cc-trigger {
      width: 20px !important;
      height: 20px !important;
   }
}
