/* Google Fonts */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  color: #003366;
  background: #fff;
  line-height: 1.5;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.site-header {
  background: #004080;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}
.logo {
  height: 100px;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.main-nav a {
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #a0c4ff;
  outline: none;
}

/* Hero */
.hero {
  position: relative;
  height: 400px;
  background: url('https://lamoreliamercado.com/hero.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0,64,128,0.6);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.3rem;
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.hero-buttons .btn {
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8rem 2rem;
  margin: 0 0.5rem;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.btn-primary {
  background-color: #0074d9;
  color: white;
  border: none;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #005fa3;
  outline: none;
}
.btn-secondary {
  background-color: white;
  color: #004080;
  border: none;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #cce0ff;
  outline: none;
}

/* Categories */
.categories-section {
  padding: 4rem 0;
  text-align: center;
}
.categories-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 2rem;
}
.category-card {
  background: #e6f0ff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,64,128,0.1);
  padding: 1rem;
  transition: transform 0.3s ease;
}
.category-card:hover,
.category-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,64,128,0.15);
  outline: none;
}
.category-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.category-card h3 {
  color: #003366;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.category-card p {
  color: #004080;
  font-size: 1rem;
}

/* Restaurant Section */
.restaurant-section {
  background: #f9fbff;
  padding: 3rem 1rem;
  text-align: center;
}
.restaurant-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.restaurant-section p {
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-size: 1.1rem;
  color: #003366;
}

/* Contact Section */
.contact-section {
  padding: 3rem 1rem;
  text-align: center;
}
.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.contact-section address {
  font-style: normal;
  font-size: 1.1rem;
  color: #003366;
  margin-bottom: 1.5rem;
}
.contact-section a {
  color: #0074d9;
  font-weight: 600;
  text-decoration: none;
}
.contact-section a:hover,
.contact-section a:focus {
  text-decoration: underline;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-weight: 700;
  font-size: 1.1rem;
}
.social-links a {
  color: #004080;
  transition: color 0.3s ease;
}
.social-links a:hover,
.social-links a:focus {
  color: #0074d9;
  outline: none;
}

/* Footer */
.site-footer {
  background: #004080;
  color: white;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}
.hero {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  transition: background-image 1s ease-in-out;
}
/* General Container */
.menu-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  color: #333;
  font-family: 'Inter', sans-serif;
}

/* Section Titles */
.section-title {
  font-size: 32px;
  color: #003366; /* deep blue */
  border-bottom: 3px solid #007bff; /* lighter blue */
  padding-bottom: 10px;
  margin-bottom: 30px;
  text-align: center;
}

/* Menu Categories */
.menu-category {
  margin-bottom: 40px;
}

.menu-category h3 {
  font-size: 24px;
  color: #007bff;
  margin-bottom: 15px;
}

/* Menu List */
.menu-list {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 0;
  list-style: none;
}

.menu-list li {
  background: white;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  width: 90%;
}

/* Specials */
.specials {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  padding: 0;
  list-style: none;
}

.specials li {
  background: white;
  border: 1px solid #ddd;
  padding: 12px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Combos */
.combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.combo-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
  padding: 10px;
}

.combo-item img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-bottom: 2px solid #007bff;
}

.combo-item h4 {
  font-size: 18px;
  color: #003366;
  margin: 10px 0 5px;
}

.combo-item p {
  font-size: 14px;
  color: #555;
}


/* Responsive */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 0.8rem;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0.7rem;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-buttons .btn {
    margin: 0.4rem 0.2rem;
    padding: 0.7rem 1.5rem;
  }
}
