* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fff3e2;
  color: #111111;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.hero-content {
  max-width: 600px;
  text-align: center;
}

.logo {
  width: 420px;
  margin-bottom: 30px;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: #111111;
  color: #F6EEDD;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #333333;
}

.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #ece0cf;
  border-bottom: 1px solid #EADFCB;
  z-index: 1000;
}

.nav-container {
  width: 100%;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  width: 140px;
  height: auto;
}

/* Desktop Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #111111;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #555555;
}

/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #111111;
  transition: all 0.3s ease;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 769px) {

  .nav-container {
    max-width: 1100px;
    margin: auto;

  }

  .nav-links {
    position: fixed;   /* 🔥 change from absolute to fixed */
    top: 80px;         /* adjust if needed */
    left: 0;
    width: 100vw;      /* 🔥 full screen width */
    background-color: #ece0cf;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    display: none;
    border-bottom: 1px solid #EADFCB;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}
.services {
  padding: 80px 40px;
  background-color: #ece0cf;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.service-card {
  background-color: #F6EEDD;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
}

.service-card h3 {
  margin-bottom: 10px;
}

.contact {
  padding: 80px 40px;
  background-color: #fff3e2;
  color: #111111;
  text-align: center;
}

.contact-form {
  max-width: 500px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: none;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form .btn {
  background-color: #F6EEDD;
  color: #111111;
  font-weight: 700;
}

.goats{
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}
.about-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
  text-align: center;
}

.about-card_a {
  display: flex;  
  align-items: center;
  gap: 50px;
  padding-top: 80px;
  padding-left: 200px;
  padding-right: 200px;
  padding-bottom: 10px;
}
.about-card_e {
  display: flex;
  align-items: center;
  gap: 50px;
  
  padding-left: 200px;
  padding-right: 200px;
  padding-bottom: 80px;
}




.about-text h4 {
  font-weight: 500;
  color: #555;
  margin-bottom: 14px;
}

/* Mobile */
@media (max-width: 768px) {

  .about-card_a,
  .about-card_e {
    flex-direction: column !important;
    text-align: center;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

}
/* FOOTER */
.footer {
  background-color: #111111;
  color: #F6EEDD;
  padding: 60px 40px 20px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #F6EEDD;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #ccc;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}
