:root{
    --primary-color:#116400;
    --secondary-color:#193a12;
    --font-color:#89a883;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: var(--primary-color);
}

/* Header Styling */
header {
    background-color: var(--secondary-color);
    padding: 20px;
    text-align: center;
    color: white;
}

header h1 {
    font-size: 3rem;
    margin: 0;
}

.main_title {
    text-decoration: none;
    color: white;
}

.menu_burger{
    display: none;
}

hr {
    display: none;
    color: white;
}

nav {
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
}

nav ul {
    list-style: none;
    padding: 10px;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
    width: fit-content;
    position: relative;
    font-weight: bold;
}

nav ul li::after{
    opacity: 0;
    content: "";
    height: 2px;
    width: 100%;
    position: absolute;
     bottom: 0px;
     left: 0;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

nav ul li:hover::after {
    opacity: 1;
    bottom: -4px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.vbp-header-menu-button__svg {
  width: 30px;
  height: 30px;
  cursor: pointer;
  transform: scaleX(-1);
}

.vbp-header-menu-button__svg line {
  stroke: white;
  stroke-dasharray: 100%;
  stroke-dashoffset: 0%;
  transition: transform 0.3s, stroke-dashoffset .4s;
  transform-origin: center;
  stroke-width: 3px;
}

.vbp-header-menu-button__svg .top {
  transform: translateY(-35%);
  -webkit-transform: translateY(-35%);
  -moz-transform: translateY(35%);
  -ms-transform: translateY(35%);
  -o-transform: translateY(35%);
}

.vbp-header-menu-button__svg .middle {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transition: opacity .3s, transform .3s;
  -webkit-transition: opacity .3s, transform .3s;
  -moz-transition: opacity .3s, transform .3s;
  -ms-transition: opacity .3s, transform .3s;
  -o-transition: opacity .3s, transform .3s;

}

.vbp-header-menu-button__svg .bottom {
  transform: translateY(33%);
  -webkit-transform: translateY(33%);
  -moz-transform: translateY(33%);
  -ms-transform: translateY(33%);
  -o-transform: translateY(33%);
  stroke-dasharray: 100%;
  stroke-dashoffset: 9px;
}
.vbp-header-menu-button__svg:hover .bottom {
  stroke-dashoffset: 0%;
}
/*** Mode Croix ***/
body.menu-open .vbp-header-menu-button__svg .top {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  stroke-linecap: round;
}

body.menu-open .vbp-header-menu-button__svg .middle {
  transform: scaleX(0.1);
  -webkit-transform: scaleX(0.1);
  -moz-transform: scaleX(0.1);
  -ms-transform: scaleX(0.1);
  -o-transform: scaleX(0.1);
  opacity: 0;
}

body.menu-open .vbp-header-menu-button__svg line.bottom {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  stroke-linecap: round;
}

body.menu-open .vbp-header-menu-button__svg .bottom {
  stroke-dashoffset: 0%;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background-color: var(--primary-color);
    color: white;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.btn {
    padding: 15px 30px;
    background-color: #e74c3c;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
}

.btn:hover {
    background-color: #c0392b;
}

/* Section General Styling */
section {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

#about .container p {
        font-size: 1.2rem;
        text-align: justify;
    }
.about-text p a{
    text-decoration: none;
    color: inherit;
}

/* Product Section */
.product-section {
    background-color: #ecf0f1;
    padding: 50px;
    margin-bottom: 50px;
}

.product-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.product-description {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 30px;
    overflow: hidden;
    border-radius: 10px;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
}

.carousel-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    font-size: 24px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    user-select: none;
    border-radius: 5px;
    opacity: 50%;
}

.next {
    right: 0;
}
.prev {
    left: 0;
}
.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.image-queue-container {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.image-queue {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.queue-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    border: 2px solid transparent;
    transition: border 0.3s ease;
}

.queue-image.active {
    border-color: #007bff;
}

/* Contact Section */
#contact {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.contact_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#contact h2 {
    font-size: 2.5rem;
    margin: 0;
}

#contact p {
    font-size: 1.2rem;
    margin-bottom: 50px;
}

footer {
    background-color: var(--secondary-color);
    padding: 20px;
    text-align: center;
    color: white;
}

footer a {
    color: #3498db;
    text-decoration: none;
}

footer a:hover {
    color: #2980b9;
}

#button {
  display: inline-block;
  background-color: var(--primary-color);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: -50px;
  transition: background-color .3s, 
    right .3s;
  opacity: 1;
  z-index: 1000;
}
#button::after {
  content: "↑";
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: var(--secondary-color);
}
#button:active {
  background-color: var(--secondary-color);
}
#button.show {
  right: 30px;
}