* {
  margin: 0;
  padding: 0;
  font-family: Arial, Sans-Serif;
  box-sizing: border-box;
}

body {
  background: #FAF7F2;
  color: #2D221E;
}
.hero-container {
  padding: 45px 12px;
  position: relative;
  overflow: hidden;
}
.hero-container::before {
  content: "";
  position: absolute;
  inset: 0;
  
  background: url("coffee-black-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  filter: blur(4px);
  transform: scale(1.1);
  z-index: -1;
}
.hero-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
.hero-section {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.hero-section h1 {
  margin-bottom: 12px;
  font-size: 28px;
  text-align: center;
  color: #F5F5F5;
}
.hero-section p {
  text-align: center;
  color: #f5ebdd;
}
.menu-btn {
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  color: white;
  background: #6f4e37;
  font-weight: bold;
  margin-top: 12px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);;
}
.menu-btn:hover {
  background: #d8b08c;
  color: #6f4e37;
}
.menu {
  text-align: center;
  margin-top: 18px;
}
.menu-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  padding: 24px;
}
.menu-card {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  box-sizing: border-box;
  background: #e8d9c8;
  border-radius: 14px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.menu-card img {
  width: 100%;
  border-radius: 12px;
  object-fit: contain;
}
.menu-info {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.menu-info h3 {
  margin: 0;
  font-size: 18px;
  color: #2D221E;
}

.price {
  color: #6F4E37;
  font-size: 16px;
}

.description {
  font-size: 13px;
  color: #555;
  line-height: 1.4;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}
.footer {
  text-align: center;
  background: #d8b08c;
  padding: 12px 0;
}
.footer-info {
  font-size: 14px;
  color: white;
}

@media (max-width: 600px) {
  .container {
    grid-template-columns: 1fr;
  }
}
@media (orientation: landscape) {
  .card img {
    height: 150px;
}
}
