/* COMPLETE LA BELLA VISTA CAFE - ALL PAGES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fffaf0;
}

/* Header - All Pages */
header {
  background: #8B4513;
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background 0.3s;
}

nav a:hover {
  background: rgba(255,255,255,0.2);
}

/* HOME PAGE */
.home {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
  text-align: center;
}

.cafe-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.welcome h1 {
  color: #8B4513;
  font-size: 3rem;
  margin: 2rem 0 1rem;
  font-weight: 300;
}

.welcome p {
  font-size: 1.3rem;
  color: #666;
  line-height: 1.6;
}

/* MENU PAGE */
.menu {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.menu h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: #8B4513;
}

.menu-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.item {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s;
  cursor: pointer;
}

.item:hover {
  transform: translateY(-5px);
}

.item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #8B4513;
}

.item p {
  font-size: 1.4rem;
  font-weight: bold;
  color: #D2691E;
}

/* REVIEWS PAGE */
.reviews {
  padding: 3rem 2rem;
  background: #f9f5f0;
}

.reviews h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: #8B4513;
}

.review-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review {
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.review p {
  font-style: italic;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.review h4 {
  text-align: right;
  color: #8B4513;
  font-weight: 600;
}

/* CONTACT PAGE */
.contact {
  padding: 3rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #8B4513;
}

.contact p {
  font-size: 1.2rem;
  margin: 1.5rem 0;
}

.contact h3 {
  margin: 2rem 0 1rem;
  color: #8B4513;
}

.contact iframe {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-top: 1rem;
}

/* FOOTER - All Pages */
footer {
  background: #8B4513;
  color: white;
  text-align: center;
  padding: 2rem;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem;
  }
  
  .home, .menu, .reviews, .contact {
    padding: 2rem 1rem;
  }
  
  .home h1, .menu h2, .reviews h2, .contact h2 {
    font-size: 2rem;
  }
  
  .cafe-photo img {
    height: 250px;
  }
  
  .menu-container {
    grid-template-columns: 1fr;
  }
}
