* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---------------- SCROLLBAR --------------*/
/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #42A730;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #ff0000;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #333;
  }
  /*-------------------------------------------------------------*/







/* Reset and Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
}


/* Hero Section */
.hero {
  background-color: #f0f0f0;
  padding: 40px;
  text-align: center;
}

/* Product Overview */
.product-overview {
  display: flex;
  padding: 20px;
  gap: 20px;
  border-bottom: 1px solid #ccc;
}

.product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-details {
  flex: 1;
}



.my-button {
  background-color: #42A730; /* Initial background color */
  color: white; /* Text color */
  border: none; /* No border */
  padding: 10px 20px; /* Padding */
  font-size: 16px; /* Font size */
  cursor: pointer; /* Pointer cursor on hover */
  border-radius: 5px; /* Rounded corners */
  transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

.my-button:hover {
  background-color: #34A029; /* Darker background color on hover */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Shadow effect on hover */
}


/* Specifications Section */
.specifications {
  padding: 20px;
}

.specifications table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.specifications td {
  padding: 8px;
  border-bottom: 1px solid #ddd;
}

/* Gallery Section */
.gallery {
  padding: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery-grid img, .gallery-grid video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}







/*----------------------------------- Footer ---------------------------------*/
footer {
  background-color: #333; /* Dark background color */
  color: #42A730; /* White text color */
  padding: 20px 0; /* Padding around the footer */
  text-align: left; /* Align text to the left */
}

.footer-container {
  display: flex; /* Use flexbox for layout */
  justify-content: space-around; /* Space between columns */
}

.footer-column {
  flex: 1; /* Make each column take equal space */
  padding: 0 20px; /* Padding inside each column */
}

.footer-column h3 {
  border-bottom: 1px solid #555; /* Underline for headings */
  padding-bottom: 10px; /* Space below headings */
}

.footer-column ul {
  list-style-type: none; /* Remove bullet points */
  padding: 0; /* Remove padding */
}

.footer-column ul li {
  margin: 10px 0; /* Space between list items */
}

footer .footer-bottom a {
  color: orange; /* Aici se definește culoarea portocalie */
  text-decoration: none; /* Elimină sublinierea */
}

footer .footer-bottom a:hover {
  text-decoration: underline; /* Sublinierea apare la hover */
}


.footer-column a {
  color: #ffffff; /* White link color */
  text-decoration: none; /* Remove underline from links */
}

.footer-column a:hover {
  text-decoration: underline; /* Underline on hover */
}

.footer-bottom {
  text-align: center; /* Center the copyright text */
  margin-top: 20px; /* Space above copyright */
}


















  

body {
    font-family: Arial, sans-serif;
}

header {
    background-color: #42A730;
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
}

.nav-links {
    list-style-type: none;
}

.nav-links li {
    display: inline;
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 5px 10px;
}

.nav-links a:hover {
    background-color: #ffffff;
    color: #42A730;
    border-radius: 4px;
    transition: 0.3s;
}

