* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #151515;
  color: #fff;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 10px 30px;
  flex-wrap: wrap;
}

.logo {
  height: 120px;
}

.main-nav {
  display: flex;
  gap: 25px;
  align-items: center;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 14px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.main-nav a:hover {
  background-color: #EFC51D;
  color: #000;
}

.lang-select select {
  padding: 6px 10px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  border: none;
  border-radius: 4px;
  background-color: #f4f4f4;
  color: #000;
}

.hero-image {
  width: 100%;
  height: 450px;
  background-image: url('https://images.unsplash.com/photo-1648028482429-b99ae1d6f2e0?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 10px;
  }

  .main-nav a {
    margin: 4px 6px;
  }

  .logo {
    height: 50px;
  }

  .hero-image {
    height: 250px;
  }
}

.lang-select-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-select-icons a {
  display: inline-block;
  transition: transform 0.2s ease;
}

.lang-select-icons a:hover {
  transform: scale(1.2);
}


.dropdown-lang {
  position: relative;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
}

.dropdown-toggle {
  background-color: #f4f4f4;
  color: #000;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle .arrow {
  margin-left: 6px;
  font-size: 10px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  background-color: white;
  min-width: 160px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 4px;
  overflow: hidden;
}

.dropdown-menu a {
  color: #000;
  padding: 10px 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s;
}

.dropdown-menu a:hover {
  background-color: #f0c040;
  color: #000;
}

.dropdown-lang:hover .dropdown-menu {
  display: block;
}

.presentation-section {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 40px;
  background-color: #1a1a1a;
  color: #fff;
}

.presentation-box {
  flex: 1;
  background-color: #111;
  border: 1px solid #FFD700;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.presentation-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.presentation-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.presentation-box h3 {
  font-size: 28px;
  color: #EFC51D;
  margin-bottom: 10px;
}

h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
}

.presentation-box p {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

.intro-carnicampo {
  background-color: #151515;
  text-align: center;
  padding: 20px 20px 20px;
  color: #fff;
}

.intro-carnicampo h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #EFC51D;
  text-align: left;
  max-width: 900px;
  margin: 0 auto 25px auto;
}


.intro-carnicampo p {
  font-family: 'Calibri', serif;
  font-size: 18px;
  font-style: italic;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.7;
  color: #fff;
}

.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 40px;
  display: flex;
  justify-content: center;
}

.footer-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo img {
  height: 200px;
}

.footer-text {
  max-width: 500px;
  text-align: center;
  padding: 20px;
}

.footer-text p {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-button {
  background-color: #EFC51D;
  color: #000;
  padding: 10px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.footer-button:hover {
  background-color: #ffd700;
}

.footer-social {
  text-align: center;
  padding: 20px;
}

.footer-social h4 {
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.social-icons a {
  margin: 0 8px;
  color: #fff;
  transition: transform 0.2s;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #EFC51D;
}

.product-horizontal {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center; /* ✅ aligne les produits au centre */
  gap: 30px;
  overflow-x: auto;
  padding: 40px 20px;
  background-color: #151515;
}


.product-card-h {
  flex: 0 0 320px;
  background-color: #1a1a1a;
  border: 1px solid #FFD700;
  border-radius: 10px;
  padding: 20px;
  color: #fff;
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card-h:hover {
  transform: translateY(-5px);
}

.product-card-h img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  border-radius: 6px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}

.product-card-h h3 {
  color: #FFD700;
  font-size: 20px;
  margin-bottom: 8px;
}

.product-card-h p {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  margin-bottom: 6px;
}

.product-card-h .price {
  font-weight: bold;
  font-size: 16px;
}

.btn-order {
  background-color: #FFD700;
  color: #000;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
}

.btn-order:hover {
  background-color: #f0c040;
}

.product-intro {
  background-color: #151515;
  padding: 20px 15px 10px;
  text-align: left;
}

.product-intro-text {
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #eee;
}

.product-intro2 {
  background-color: #151515;
  padding: 20px 15px 10px;
  text-align: left;
}

.product-intro-text2 {
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #eee;
}

.about-section {
  background-color: #151515;
  padding: 60px 20px;
  color: #fff;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.about-container h1 {
  font-size: 36px;
  font-family: 'Poppins', sans-serif;
  color: #FFD700;
  margin-bottom: 30px;
}

.about-container p {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-image {
  text-align: center;
  background-color: #151515;
  padding: 40px 20px 0;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border: 2px solid #FFD700;
}

.service-section {
  background-color: #151515;
  padding: 60px 20px;
  color: #fff;
}

.service-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.service-container h1 {
  font-size: 36px;
  font-family: 'Poppins', sans-serif;
  color: #FFD700;
  margin-bottom: 30px;
}

.service-container p {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.popup {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.9);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  cursor: zoom-out;
}

.popup-content {
  max-width: 80%;
  max-height: 80%;
  border: 3px solid #FFD700;
  border-radius: 10px;
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 0 15px #FFD700;
}

.popup-content img {
  width: 100%;
  height: auto;
  display: block;
}

.product-card-h img {
  cursor: pointer;
}

.contact-section {
  background-color: #151515;
  padding: 60px 20px;
  color: #fff;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px 20px;
  background-color: #1a1a1a;
  border: 1px solid #FFD700;
  border-radius: 10px;
}

.contact-container h1 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
  color: #FFD700;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form label {
  font-weight: bold;
  margin-bottom: 5px;
}

form input,
form textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: 'Lato', sans-serif;
}

form .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

form .checkbox-group label {
  font-weight: normal;
}

form button,
form input[type="submit"] {
  background-color: #FFD700;
  color: #000;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
  align-self: center;
}

form button:hover,
form input[type="submit"]:hover {
  background-color: #f0c040;
}

.dropdown-nav {
  position: relative;
  display: inline-block;
}

.dropdown-nav .dropdown-toggle {
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  display: inline-block;
  background-color: transparent;
}

.dropdown-nav .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #15191C; /* fond noir */
  border: 1px solid #FFD700; /* bordure dorée */
  z-index: 1000;
  min-width: 180px;
  flex-direction: column;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.dropdown-nav .submenu a {
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}

.dropdown-nav .submenu a:hover {
  background-color: #FFD700;
  color: #000;
}

.dropdown-nav:hover .submenu {
  display: flex;
}

