/* ===== GLOBAL ===== */
body {
  font-family: Georgia, serif;
  margin: 0;
  background: #f9f9f9;
  color: #222;
}

/* ===== FORCE NAV HEIGHT ===== */
.main-nav {
  display: block;
}

/* ===== HEADER ===== */
.site-header {
  text-align: center;
  padding: 25px 10px;
}

.site-header h1 {
  margin: 0;
}

.site-header h2 {
  margin-top: 5px;
}

/* ===== SECTION WRAPPER ===== */
.container {
  max-width: 820px;
  margin: auto;
  padding: 20px;
  text-align: center;
}

/* ===== GREEN HEADERS ===== */
h2 {
  color: #2e7d32;
}

/* ===== NOTICE ===== */
.notice {
  text-align: center;
  padding: 15px;
}

/* ===== BUTTON ===== */
.btn {
  background: #2e7d32;
  color: #fff;
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
}

/* ===== FORM ORDER FIX ===== */
.selected {
  background-color: #4CAF50; /* Green */
  color: white;
}

/* ===== LIST CENTER FIX ===== */
ul {
  display: inline-block;
  text-align: left;
}

/* ===== ABOUT SECTION ===== */
.about {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.about img {
  width: 250px;
  border-radius: 10px;
}

/* ===== SOCIAL ===== */
.social {
  text-align: center;
  margin: 20px;
}

.social img {
  width: 100px;
  margin: 5px;
}

/* ===== FOOTER ===== */
.footer {
  background: #f5f5f5;
  padding: 25px;
}

.footer-columns {
  display: flex;
  justify-content: space-around;
  text-align: left;
}

.footer h4 {
  color: #2e7d32;
}

.footer-bottom {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
}

/* ===== NAV BAR ===== */
.main-nav {
  background: #2e7d32;
  padding: 12px 0;
}

/* ===== NAV CONTAINER ===== */
.nav-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

/* ===== LOGO ===== */
.nav-logo img {
  height: 50px;
}

/* ===== MENU ===== */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

/* ===== LINKS ===== */
.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

/* ===== CTA BUTTON ===== */
.nav-cta a {
  background: white;
  color: #2e7d32;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 700;
}

/* ===== FOOTER ===== */
.footer {
  background: #f5f5f5;
  padding: 30px 15px;
  margin-top: 40px;
}

/* ===== SOCIAL ===== */
.social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.social img {
  width: 100px;
}

/* ===== 4 COLUMN LAYOUT ===== */
.footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.footer-columns div {
  flex: 1;
}

/* ===== LINKS ===== */
.footer a {
  text-decoration: none;
  color: #2e7d32;
  font-weight: 500;
}

/* ===== BOTTOM ===== */
.footer-bottom {
  text-align: center;
  margin-top: 25px;
  font-size: 13px;
  color: #555;
}