/* Reset and basic styling */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fafafa;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}
/* Header */
.site-header {
  background: #ff4c4c;
  color: #fff;
  padding: 1rem 0;
}
.site-header .logo {
  height: 50px;
}
.site-header h1 {
  font-size: 1.8rem;
  margin-left: 1rem;
  display: inline-block;
  vertical-align: middle;
}
.site-header nav {
  float: right;
}
.site-header nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.site-header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.site-header nav a:hover {
  text-decoration: underline;
}
/* Hero */
.hero {
  background: url('img/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 5rem 0;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
}
.btn-primary {
  background: #ff4c4c;
}
.btn-secondary {
  background: #333;
}
.btn-primary:hover,
.btn-secondary:hover {
  opacity: 0.8;
}
/* Menu */
.menu-section {
  background: #fff;
  padding: 4rem 0;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.menu-item {
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  padding: 1rem;
  transition: transform 0.2s;
}
.menu-item:hover {
  transform: translateY(-5px);
}
.menu-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.menu-item h4 {
  margin-top: 0.8rem;
  font-size: 1.4rem;
}
.menu-item p {
  font-size: 1rem;
  margin: 0.5rem 0;
}
.menu-item .price {
  font-weight: 600;
  color: #ff4c4c;
}
/* About */
.about-section {
  padding: 4rem 0;
  text-align: center;
}
/* Contact */
.contact-section {
  background: #fff;
  padding: 4rem 0;
}
#contactForm {
  display: grid;
  gap: 1rem;
}
#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
#formFeedback {
  margin-top: 1rem;
  font-weight: 500;
}
/* Hours */
.hours-section {
  padding: 2rem 0;
  text-align: center;
  background: #f1f1f1;
}
/* Footer */
.site-footer {
  background: #222;
  color: #ccc;
  padding: 1rem 0;
  text-align: center;
}
/* Media Queries */
@media (max-width: 600px) {
  .site-header nav {
    float: none;
    text-align: center;
    margin-top: 1rem;
  }
}