* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #485640;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Navbar */
.navbar {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
  text-decoration: none;
}

.logo img {
  height: 36px;
  margin-right: 10px;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #1f7036;
  left: 0;
  bottom: -6px;
  transition: width 0.3s;
}

.nav-links a:hover {
  color: #1f7036;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Button */
.btn {
  padding: 8px 18px;
  background: #1f7036;
  color: #fff !important;
  border-radius: 6px;
}

.btn:hover {
  background: #2d5a3d;
}

/* Mobile Menu */
#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-icon span {
  height: 3px;
  width: 25px;
  background: #333;
  margin: 4px 0;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-icon {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  #menu-toggle:checked ~ .nav-links {
    display: flex;
  }
}


.hero {
  position: relative;
  height: 100vh;
  background-image: url("../Images/BG.png"); /* remplace par ton image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
}

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

/* CONTENU */
.hero-content {
  position: relative;
  max-width: 700px;
  padding: 0px;
  margin-left: 5%;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/* BOUTONS */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn.primary {
  
  background: rgba(135, 226, 173, 0.506);
box-shadow: inset 0px -2px 4px rgba(0, 0, 0, 0.2), inset 0px 2px 4px rgba(255, 255, 255, 0.4);
backdrop-filter: blur(5px);
/* Note: backdrop-filter has minimal browser support */
border-radius: 10px;
}
.btn.primaryP {
  
  background: rgba(11, 33, 20, 0.506);
box-shadow: inset 0px -2px 4px rgba(0, 0, 0, 0.2), inset 0px 2px 4px rgba(255, 255, 255, 0.4);
backdrop-filter: blur(5px);
/* Note: backdrop-filter has minimal browser support */
border-radius: 10px;
}

.btn.primary:hover {
  background-color: #556b2f;
}
.btn.primaryP:hover {
  background-color: #556b2f;
}


.btn.secondary {
  background: rgba(255, 255, 255, 0.279);
box-shadow: inset 0px -2px 4px rgba(0, 0, 0, 0.2), inset 0px 2px 4px rgba(255, 255, 255, 0.4);
backdrop-filter: blur(5px);
/* Note: backdrop-filter has minimal browser support */
border-radius: 10px;
}

.btn.secondary:hover {
background: rgba(46, 101, 46, 0.7);
box-shadow: inset 0px -2px 4px rgba(0, 0, 0, 0.2), inset 0px 2px 4px rgba(255, 255, 255, 0.4);
backdrop-filter: blur(5px);
/* Note: backdrop-filter has minimal browser support */
border-radius: 23px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

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

.grid-photo {
  display: grid;
  grid-template-columns: repeat(2, 300px);
  gap: 15px;
  width: fit-content;
  margin-left: auto;
  margin-right: 5%;
  margin-top: 0px;
}

.box {
  width: 300px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



header {
  background-color: #f8f8f5;
  padding: 10px;
  margin: auto;
  
}


.products-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* same vertical level */
  padding: 80px 10%;
  background-color: #9e9d9d; /* olive green */
  gap: 60px;
}

.products-content {
  max-width: 500px;
  color: #000;
  position: relative;
  top: 80px;
}

.products-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.products-content p {
  line-height: 1.6;
  margin-bottom: 2rem;
}

.products-content button {
  background-color: #2f3e2e;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
}
.grid-photo {
  display: grid;
  grid-template-columns: repeat(2, 220px);
  gap: 20px;
}
.box {
  width: 220px;
  height: 220px;
  overflow: hidden; /* keeps square shape */
  border-radius: 10px;
}

.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.products-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.grid-poduit {
  display: grid;
  grid-template-columns: 400px 400px;
  grid-template-rows: 650px;
  gap: 55px;
  justify-content: center


}
.boxx {
  margin: 20px;
  display: flex;
  flex-direction: column;
  justify-content:left;
  background-color: #fff;
  border-radius: 12px;
}
.boxx img {
  object-fit:contain ;
  padding: 120px;
}


.products-main {
  background-color: #e9e9e9;
  margin: auto;
  padding: 100px;
}

.SpecBG {
  background-color: #ffffff;
}
.content-info {
  margin: 20px;
  display: flex;
  flex-direction: column;
  justify-content:left;
  background-color: #fff;
  border-radius: 12px;
}

.content-info img {
  object-fit:contain ;
  padding: 40px;
}
.content-info h2, h3, p {
  padding: 2px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  padding-left: 12px;
}

.btn21 {

  background: #1f7036;
  color: #fff !important;
  border-radius: 6px;
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s ease;
  padding-left: 100px;
  padding-right: 100px;
  margin-top:  15px;
  text-align: center;
}

/* Site footer */
.site-footer {
  background: #2d5a3d;
  color: #fff;
  padding: 48px 20px 24px;
  margin-top: auto; /* sticks to bottom when body is flex column */
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 40px;
  align-items: start;
}

.footer-brand {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.5;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.footer-contact p {
  margin-bottom: 6px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  opacity: 0.85;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
}