* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.navbar {
  background: #ff6b35; /* Colombian orange */
  padding: 1rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin: 0 1.5rem;
  font-weight: bold;
  font-size: 1.1rem;
}

.navbar a:hover {
  color: #fff3e0;
}

header {
  background: linear-gradient(rgba(255,107,53,0.8), rgba(255,107,53,0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10"><rect fill="%23ff6b35" height="10"/></svg>');
  color: white;
  text-align: center;
  padding: 120px 2rem 4rem; /* space for fixed navbar */
  min-height: 60vh;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

header p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 1rem;
}

@media (max-width: 768px) {
  header h1 { font-size: 2rem; }
  .navbar a { margin: 0 1rem; font-size: 1rem; }
}
.menu-section {
  padding: 120px 2rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-item {
  background: #fff3e0;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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

.placeholder-img {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.menu-item h3 {
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.menu-item p {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
}

h2 {
  text-align: center;
  color: #ff6b35;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  padding-top: 1rem;
}
.contact-section {
  max-width: 600px;
  margin: auto;
  padding: 120px 2rem 2rem;
  text-align: center;
}

.contact-section p {
  background: #fff3e0;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

input, textarea {
  padding: 1rem;
  border: 2px solid #ff6b35;
  border-radius: 8px;
  font-size: 1rem;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #e55a2b;
  box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

button {
  background: #ff6b35;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #e55a2b;
}

.map-placeholder {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  font-size: 1.3rem;
}
.dish-image {
    width: 100%;
    height: 150px;        /* FIXED height = perfect size */
    object-fit: cover;    /* Crops nicely, no stretch */
    border-radius: 10px;
    margin-bottom: 1rem;
}

.hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
}
.hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.dish-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}





 
