/* Mediodía Menu Styles - Mobile First */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #1A472A;
  color: #FFFFFF;
  line-height: 1.6;
  min-height: 100vh;
}

.menu-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  background-color: #1A472A;
  position: relative;
}

/* Background texture effect */
.menu-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(102, 204, 153, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(102, 204, 153, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.menu-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.logo {
  height: 7rem;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.menu-title {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.title-accent {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #66CC99;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.3rem;
  letter-spacing: 0.15em;
}

.title-main {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  color: #FFFFFF;
  display: block;
  font-weight: 600;
}

.menu-content {
  position: relative;
  z-index: 1;
  background-color: rgba(26, 71, 42, 0.85);
  border-radius: 12px;
  padding: 1.5rem 1.2rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(102, 204, 153, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Menu Items */
.menu-item {
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(102, 204, 153, 0.25);
  transition: all 0.2s ease;
}

.menu-item:hover {
  transform: translateY(-1px);
}

.menu-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.item-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
  line-height: 1.3;
  text-align: center;
}

.delivery-only {
  font-size: 0.75rem;
  color: #66CC99;
  font-weight: 400;
  font-style: italic;
  background: rgba(102, 204, 153, 0.1);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  margin-left: 0.3rem;
}

.item-description {
  font-size: 0.85rem;
  color: #D0D0D0;
  margin-top: 0.3rem;
  font-style: italic;
  line-height: 1.3;
  white-space: pre-line;
}

.item-dots {
  color: #66CC99;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  margin: 0.2rem 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0.7;
  text-align: center;
}

.item-price {
  font-weight: 600;
  color: #FFFFFF;
  font-size: 0.95rem;
  text-align: center;
  margin-top: 0.2rem;
  line-height: 1.3;
}

/* Menu Footer */
.menu-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(102, 204, 153, 0.3);
}

.allergen-warning {
  font-size: 0.8rem;
  color: #C0C0C0;
  text-align: center;
  line-height: 1.4;
  font-style: italic;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 71, 42, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.loader {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(102, 204, 153, 0.3);
  border-top: 4px solid #66CC99;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Tablet Styles */
@media (min-width: 768px) {
  .menu-container {
    padding: 2rem 1.5rem;
  }
  
  .logo {
    height: 8.75rem;
  }
  
  .menu-title {
    font-size: 2.5rem;
  }
  
  .title-main {
    font-size: 2.5rem;
  }
  
  .menu-content {
    padding: 2rem 1.8rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .item-name {
    font-size: 1.15rem;
  }
  
  .item-price {
    font-size: 1rem;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .menu-container {
    padding: 2.5rem 2rem;
  }
  
  .logo {
    height: 9.625rem;
  }
  
  .menu-title {
    font-size: 2.8rem;
  }
  
  .title-main {
    font-size: 2.8rem;
  }
  
  .menu-content {
    padding: 2.5rem 2.2rem;
    max-width: 800px;
  }
  
  .item-name {
    font-size: 1.2rem;
  }
  
  .item-price {
    font-size: 1.05rem;
  }
  
  .item-description {
    font-size: 0.9rem;
  }
}

/* Large Desktop Styles */
@media (min-width: 1440px) {
  .menu-content {
    max-width: 900px;
  }
}
