/* RESET-ish base */
* { box-sizing: border-box; }
html,body { height: 100%; }

/* Page basics */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background: #fff;
  -webkit-font-smoothing:antialiased;
}

/* Header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #bcefb0 0%, #4caf50 100%); /* green gradient */
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 16px;
}
.logo {
  width: 52px;
  height: auto;
  border-radius: 6px;
}

/* nav links */
.nav {
  margin-left: auto; /* pushes nav to right side */
  display: flex;
  gap: 10px;
}
.nav-link {
  display: inline-block;
  padding: 10px 16px;
  background: rgba(0,0,0,0.12);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: transform .15s ease, background .15s ease;
}
.nav-link:hover { transform: translateY(-2px); background: rgba(0,0,0,0.2); }

/* Container */
.container {
  max-width: 1000px;
  margin: 26px auto;
  padding: 0 16px 60px;
}

/* Titles */
.title {
  color: #2b7a2b;
  margin: 10px 0 6px;
  text-align: left;
  font-size: 28px;
}
.section-title {
  margin: 22px 0 12px;
  font-size: 20px;
  text-align: left;
  color: #2b7a2b;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* Menu items: image left, text right */
.menu-item {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 16px 0 26px;
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
}
.menu-item-left { flex: 0 0 260px; }
.menu-item-right { flex: 1; text-align: left; }
.pasta-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Item text */
.item-name { margin: 0 0 6px; font-size: 18px; color:#1f5e1f; }
.item-desc { margin:0; color:#333; font-size:14px; line-height:1.45; }

/* Contact cards (contact page) */
.contact-card {
  max-width: 640px;
  margin: 14px auto;
  padding: 14px;
  border-radius: 10px;
  background: #f8fff8;
  border: 1px solid rgba(0,0,0,0.03);
  text-align: left;
}
.contact-card h3 { margin: 0 0 6px; color:#1f5e1f; }
.plain-link { color:#0b6a0b; text-decoration: none; }

/* Footer */
.site-footer {
  text-align: center;
  padding: 26px 12px;
  color: #666;
  font-size: 13px;
  background: #fff;
}

/* Responsive: stack for narrow screens */
@media (max-width: 720px) {
  .header-inner { padding: 10px; }
  .nav { margin-left: 12px; gap: 8px; }
  .title, .section-title { text-align: center; }
  .container { padding: 0 12px 60px; }
  .menu-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .menu-item-left { width: 100%; flex: none; }
  .menu-item-right { width: 100%; }
  .pasta-image { max-width: 420px; }
}
/* About page */
.about-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 12px;
  text-align: left;
}

.about-text {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 16px;
  color: #333;
}

.about-highlight {
  background: #f3fff3;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 16px;
  border-radius: 10px;
  margin: 20px 0;
}

.about-highlight h3 {
  margin-top: 0;
  color: #1f5e1f;
  margin-bottom: 10px;
}

.about-highlight ul {
  padding-left: 20px;
  margin: 0;
}

.about-highlight li {
  margin-bottom: 6px;
}