* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 1080px;
  height: 1920px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  margin: 0 auto;
  background: radial-gradient(circle at 50% 40%, #FFF59D 0%, #FBC02D 60%, #F57F17 100%);
  border: 12px solid #800000;
  box-shadow: inset 0 0 0 4px #D32F2F, 0 0 25px rgba(0, 0, 0, 0.4);
}

.main-wrapper {
  width: 1020px;
  margin: 15px auto 10px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: calc(1920px - 70px);
  justify-content: space-between;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 26px 40px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  border: 3px solid #B71C1C;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.logo {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo img {
  height: 120px;
}

.logo h1 {
  font-size: 42px;
  font-weight: 800;
  color: #5D4037;
}

.logo p {
  font-size: 24px;
  color: #B71C1C;
  font-weight: 600;
}

.clock {
  font-size: 30px;
  font-weight: 700;
  color: #5D4037;
  background: #FFF;
  padding: 8px 22px;
  border-radius: 50px;
  border: 2px solid #D32F2F;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 40px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8E1 100%);
  border-radius: 20px;
  border: 3px solid #E65100;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.hero-left h2 {
  font-size: 56px;
  font-weight: 800;
  color: #B71C1C;
}

.hero-left p {
  font-size: 24px;
  color: #E65100;
  margin-top: 6px;
}

.hero-right img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  border: 3px solid #FBC02D;
}

.menu-grid {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  flex: 1;
  margin-bottom: 5px;
}

.menu-column {
  width: 49%;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8E1 100%);
  padding: 18px 22px;
  border-radius: 20px;
  border: 4px solid #E65100;
  box-shadow: 0 8px 20px rgba(128, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-column h2.title.menu-title {
  font-family: 'Great Vibes', cursive;
  font-size: 65px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0px;
  color: #4A0E0E;
  text-shadow: 2px 2px 0px #FFF, 4px 4px 0px rgba(230, 81, 0, 0.3);
  letter-spacing: 10px;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 10px;
  border-bottom: 2px dotted #E65100;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  transform: scale(1);
  background: transparent;
  gap: 15px;
}

.menu-item.highlight {
  transform: scale(1.03);
  background: #FFF9FA;
  border: 2px solid #B71C1C;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.6);
  z-index: 5;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid #B71C1C;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.menu-details {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-item h3 {
  font-size: 32px;
  font-weight: 700;
  color: #212121;
  line-height: 1.2;
}

.menu-item p {
  font-size: 20px;
  color: #4E342E;
  font-style: italic;
  margin-top: 2px;
  margin-bottom: 6px;
}

/* Presyo na nakaposisyon ngayon sa ibaba ng teksto */
.price {
  font-size: 24px;
  font-weight: 800;
  color: #B71C1C;
  background: #FFF8E1;
  padding: 2px 10px;
  border-radius: 8px;
  border: 2px solid #E65100;
  display: inline-block;
  align-self: flex-start;
}

footer {
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, #B71C1C 0%, #800000 100%);
  color: #FFF59D;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  border-top: 4px solid #FF9800;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}