* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
}

body.menu-open {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #c62828;
  white-space: nowrap;
  text-decoration: none;
}

.desktop-nav ul,
.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a,
.mobile-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.desktop-nav a:hover,
.mobile-menu a:hover {
  color: #c62828;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(198, 40, 40, 0.18);
  border-radius: 12px;
  background: #fff;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #c62828;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 110px 20px 40px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 35px;
  font-weight: 300;
}

.btn {
  display: inline-block;
  background: #c62828;
  color: #fff;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #a61c20;
}

.section {
  padding: 90px 0;
}

.about {
  background: #f7f7f7;
  text-align: center;
}

.about h2,
.food h2,
.nonfood h2,
.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #c62828;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #555;
}

.food,
.nonfood {
  background: #fff;
}

.food h2,
.nonfood h2 {
  text-align: center;
  margin-bottom: 50px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: #f7f7f7;
  padding: 24px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.card .icon {
  font-size: 2.5rem;
  color: #c62828;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 12px;
  font-weight: 600;
}

.card p,
.contact p,
.contact-info div {
  color: #555;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact {
  background: #f7f7f7;
  text-align: center;
}

.contact p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-size: 1.05rem;
}

.contact-info div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info i {
  color: #c62828;
}

footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .desktop-nav ul {
    gap: 18px;
  }

  .logo {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .navbar .container {
    height: 72px;
  }

  .logo {
    font-size: 1.15rem;
    max-width: calc(100% - 72px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.25s ease, visibility 0.25s ease;
  }

  .mobile-menu.open {
    max-height: 420px;
    opacity: 1;
    visibility: visible;
    padding: 12px 20px 18px;
  }

  .mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .mobile-menu a {
    display: block;
    padding: 14px 4px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .mobile-menu li:last-child a {
    border-bottom: none;
  }

  .hero-content {
    padding-top: 130px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .about h2,
  .food h2,
  .nonfood h2,
  .contact h2 {
    font-size: 2rem;
  }
}
