@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  padding-top: 70px;
  padding-bottom: 60px;
  background: #fff;
  color: #111;
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  height: 70px;              /* LOCKED */
  min-height: 70px;
  max-height: 70px;

  background: #a8c523;
  display: flex;
  align-items: center;
  padding: 0 24px;          /* vertical padding REMOVED */
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;         /* prevents growth */
}


.logo img {
  height: 42px;
}

/* ================= NAV ================= */
.navbar {
  display: flex;
  gap: 25px;
  margin-left: auto; /* push right */
  align-items: center;
}

.navbar a {
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  font-size: large;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.navbar a:hover {
  background: rgba(0,0,0,0.15);
}

/* ================= HAMBURGER ================= */
.menu-icon {
  display: none;
  font-size: 26px;
  cursor: pointer;
  margin-left: auto;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .navbar {
    position: fixed;
    top: 70px;
    right: -100%;
    height: calc(100vh - 70px);
    width: 280px;
    background: #111;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
    gap: 20px;
    transition: right 0.3s ease;
  }

  .navbar a {
    width: 100%;
    color: #fff;
    padding: 12px;
    border-radius: 4px;
  }

  .navbar.show {
    right: 0;
  }
}

/* ================= CONTENT ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* ================= FOOTER ================= */
.site-footer {
  background: #a7c52300;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  font-size: 14px;
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
}

.footer-right a {
  color: #000;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
}

.footer-right a:hover {
  text-decoration: underline;
}

/* ================= FOOTER MOBILE ================= */
@media (max-width: 600px) {
  .site-footer {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .footer-right a {
    margin: 0 10px;
  }
}



/* ========== GLOBAL BUTTON SYSTEM ========== */

.btn,
.Service-button,
.quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
}

/* Primary */
.btn-primary,
.Service-button,
.quote-btn {
  background: #a8c523;
  color: #111;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.btn-primary:hover,
.Service-button:hover,
.quote-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

/* Secondary */
.btn-secondary {
  background: transparent;
  color: #111;
  border: 2px solid #a8c523;
}

.btn-secondary:hover {
  background: #a8c523;
  color: #111;
}

/* Dark */
.btn-dark {
  background: #111;
  color: #fff;
}

.btn-dark:hover {
  background: #222;
}

/* Sizes */
.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}



.back-btn,
.return-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  border: 2px solid #a8c523;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
  background: transparent;
  color: #111;
}

.back-btn:hover,
.return-btn:hover {
  background: #a8c523;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
  background: #111;
  color: #fff;
}

.submit-btn:hover {
  background: #222;
}
