* {
  box-sizing: border-box;
}

:root {
  --primary: #d94d4d;
  --primary-light: #e67070;
  --primary-dark: #b83a3a;
  --secondary: #f5a623;
  --dark: #1a1a1a;
  --light: #f8f8f8;
  --text: #2d2d2d;
  --text-light: #666;
  --border: #e0e0e0;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Trebuchet MS, system-ui, -apple-system, sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text);
  background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
  line-height: 1.7;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 30px 0;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  text-align: center;
}

.site-header h1 {
  margin: 0;
  font-size: clamp(28px, 5vw, 48px);
  color: #fff;
  font-weight: 800;
  letter-spacing: -1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
  margin: 8px 0 4px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
}

.contact {
  margin: 12px 0 0;
  font-size: 14px;
}

.contact a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* Main Content */
main {
  padding: 40px 0;
}

.hours {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.hours h2 {
  color: var(--primary);
  font-size: 28px;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hours h2::before {
  content: '⏰';
  font-size: 28px;
}

.hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hours li:last-child {
  border-bottom: none;
}

.hours strong {
  color: var(--primary);
  font-weight: 600;
}

.menu {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.menu h2 {
  color: var(--primary);
  font-size: 32px;
  margin: 0 0 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.menu h2::before {
  content: '🍽️';
  font-size: 32px;
}

.menu-section {
  margin-bottom: 35px;
}

.menu-section:last-child {
  margin-bottom: 0;
}

.menu-section h3 {
  color: var(--primary);
  font-size: 22px;
  margin: 0 0 10px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--secondary);
  font-weight: 700;
}

.section-note {
  margin: 0 0 18px;
  color: #666;
  font-size: 0.95rem;
}

.menu-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.menu-section li {
  padding: 16px 20px;
  background: var(--light);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  font-size: 15px;
}

.menu-section li > div {
  min-width: 0;
  flex: 1;
}

.item-name {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}

.item-desc {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.item-price {
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  margin-top: 4px;
}

.menu-section li:hover {
  background: #fff3f3;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(217, 77, 77, 0.1);
}

.menu-section li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: bold;
  margin-right: 10px;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
  color: #fff;
  padding: 30px 0;
  margin-top: 40px;
  text-align: center;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.site-footer p {
  margin: 8px 0;
  font-size: 14px;
}

.site-footer a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #ffc940;
}

/* Responsive Design */
@media (max-width: 768px) {
  .site-header h1 {
    font-size: 32px;
  }

  .menu h2 {
    font-size: 26px;
  }

  .menu-section h3 {
    font-size: 19px;
  }

  .menu {
    padding: 25px;
  }

  .hours {
    padding: 25px;
  }

  .menu-section li {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  main {
    padding: 25px 0;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 20px 0;
  }

  .site-header h1 {
    font-size: 26px;
  }

  .container {
    padding: 0 15px;
  }

  .menu,
  .hours {
    padding: 20px;
    border-radius: 8px;
  }

  .menu h2,
  .hours h2 {
    font-size: 24px;
  }
}
