/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}
body {
  color: #333;
  background-color: #fff8f0;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Hero */
.hero {
  background-color: #f5f0eb;
  text-align: center;
  padding: 5rem 1rem;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3e3e3e;
}
.hero p {
  font-size: 1.2rem;
  margin: 1rem 0;
}
.cta-buttons .btn {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #6b4f3f;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}
.cta-buttons .btn:hover {
  background-color: #4e392f;
}
.btn-secondary {
  background-color: #3e5f4b;
}
.btn-secondary:hover {
  background-color: #2c4033;
}

/* Sections */
.section {
  padding: 4rem 1rem;
  text-align: center;
}
.section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.card {
  background-color: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  width: 250px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}

/* Menu */
.menu-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.menu-item {
  background-color: #f0e6dc;
  padding: 1rem 2rem;
  border-radius: 8px;
}
.note {
  margin-top: 1rem;
  font-style: italic;
}

/* Map Placeholder */
.map-placeholder {
  background-color: #e0d6cd;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #555;
  border-radius: 8px;
  margin: 1rem 0;
}

/* Footer */
footer {
  background-color: #3e3e3e;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}
.social-icons {
  margin-top: 1rem;
}