﻿body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #F5F5DC;
  color: #333;
}
.hero {
  background: url('Hero.png') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
  background-color: #2f4f2f;
}
.hero h1 {
  font-size: 2.5rem;
}
.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}
.btn {
  background-color: #2f4f2f;
  color: white;
  padding: 12px 25px;
  margin-top: 20px;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.btn.btn:hover {
  background-color: #1ebe5d;
  color: white;
}


section {
  padding: 60px 20px;
  text-align: center;
}
.beneficii-panouri {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.beneficii-panouri h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 3rem;
}

.beneficii-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.beneficiu-item {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  text-align: left;
}

.beneficiu-item i {
  font-size: 2.5rem;
  color: #e63946;
  margin-bottom: 1rem;
  display: inline-block;
}

.beneficiu-item h3 {
  color: #e63946;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.beneficiu-item p {
  font-size: 1rem;
  color: #333;
}
.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.benefit {
  background: white;
  margin: 15px;
  padding: 20px;
  border-radius: 10px;
  width: 200px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.kits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.kit {
  background: white;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: left;
}
.kit img {
  width: 100%;
  height: auto;
}
.kit-content {
  padding: 15px;
}
.kit h3 {
  margin: 0;
  font-size: 1.1rem;
}
.kit p {
  margin: 5px 0;
  font-weight: bold;
}
footer {
  background-color: #006b4b;
  color: white;
  text-align: center;
  padding: 30px 10px;
}
html {
      scroll-behavior: smooth;
    }
    [data-animate] {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease-out;
    }
    [data-animate].active {
      opacity: 1;
      transform: translateY(0);
    }
    header {
      background-color: #006b4b;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      height: 60px;
    }
    .logo {
      display: flex;
      align-items: center;
    }
    .logo img {
      height: 100px;
      margin-right: 10px;
    }
    nav a {
      margin: 0 10px;
      text-decoration: none;
      color: #ffffff;
      font-weight: bold;
      padding: 6px 12px;
      border: 2px solid gold;
      border-radius: 4px;
      background-color: gold;
      transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    }
    nav a:hover {
      background-color: white;
      color: #006b4b;
      box-shadow: 0 0 10px gold;
    }
    .hero {
      background: url('hero-image.png') center/cover no-repeat;
      color: white;
      padding: 160px 20px 200px;
      text-align: center;
      position: relative;
    }
    .hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #F5F5DC 100%);
  pointer-events: none;
}

.ribbon-wrapper {
  width: 100%;
  text-align: center;
  margin: 60px 0 40px;
  position: relative;
}

.ribbon {
  display: inline-block;
  background: linear-gradient(to right, #006b4b, #00995c);
  color: white;
  padding: 15px 50px;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.ribbon::before,
.ribbon::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 20px 20px 20px 0;
  height: 0;
  width: 0;
}

.ribbon::before {
  left: -20px;
  border-color: transparent #00472f transparent transparent;
}

.ribbon::after {
  right: -20px;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #00472f;
}
 .carousel-container {
  position: relative;
  overflow: hidden;
  margin: 60px auto;
  max-width: 1200px;
}

.carousel {
  display: flex;
  gap: 2%;
  transition: transform 0.5s ease;
}

.carousel-item {
  flex: 0 0 32%;
  background: linear-gradient(to top, #006b4b 0%, rgba(255,255,255,0.1) 100%);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 20px 40px;
  box-sizing: border-box;
  text-align: center;
  color: white;
}

.carousel-item img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.carousel-item h3 {
  font-size: 1.2rem;
  margin: 10px 0;
}

.carousel-item p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.carousel-item .btn {
  background-color: #ffd500;
  color: #006b4b;
  padding: 10px 18px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  display: inline-block;
  transition: background 0.3s, color 0.3s;
}

.carousel-item .btn:hover {
  background-color: #006b4b;
  color: #ffd500;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.carousel-nav button {
  background-color: #006b4b;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  pointer-events: all;
  transition: background 0.3s;
}

.carousel-nav button:hover {
  background-color: #00472f;
}

@media (max-width: 1024px) {
  .carousel-item {
    flex: 0 0 48%;
  }
}

@media (max-width: 768px) {
  .carousel-item {
    flex: 0 0 100%;
  }
}
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn.btn-whatsapp {
  background-color: #2f4f2f;
  color: white;
}

.btn.btn-whatsapp:hover {
  background-color: #1ebe5d;
  color: white;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.footer-left,
.footer-right {
  flex: 1 1 300px;
}

.footer-left img {
  max-width: 180px;
  height: auto;
  margin: 10px 0;
  display: block;
}

.footer-right h3 {
  margin-bottom: 10px;
  color: white;
}

.footer-right p {
  margin: 5px 0;
  color: white;
}

.footer-right a {
  color: #ffd500;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

.section-beneficii {
  background: linear-gradient(to bottom right, #ffe174, #fce27c);
  padding: 80px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.beneficii-title {
  font-size: 2.5rem;
  color: #006b4b;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
}

.beneficii-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.card-beneficiu {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  width: 320px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #ffd500;
}

.card-beneficiu:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
}

.card-beneficiu i {
  background-color: #006b4b;
  color: white;
  font-size: 1.8rem;
  padding: 20px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.card-beneficiu:hover i {
  background-color: #1ebe5d;
}

.card-beneficiu h3 {
  font-size: 1.3rem;
  color: #00472f;
  margin-bottom: 15px;
  font-weight: 700;
}

.card-beneficiu p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}
.beneficii-green-cards h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #014d38; /* Verde smarald pentru titlu */
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
}

.beneficii-green-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.beneficiu-green-card {
  background-color: #014d38;
  color: #ffd700;
  padding: 30px 25px;
  border-radius: 16px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.beneficiu-green-card:hover {
  transform: translateY(-6px);
}

.beneficiu-green-card i {
  font-size: 2.8rem;
  color: #ffd700;
  margin-bottom: 20px;
}

.beneficiu-green-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #ffd700;
}

.beneficiu-green-card p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
}
/* Custom, iPhone Retina */ 
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */ 
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  color: #fff;
  background: gold;
  padding: 6px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.nav-links a:hover {
  background: white;
  color: #006b4b;
}

/* Dropdown submenu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #006b4b;
  padding: 10px;
  flex-direction: column;
  width: 200px;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu a {
  padding: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: white;
  background: none;
}

/* Pe telefon */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: #006b4b;
    width: 100%;
    padding: 20px;
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }

  .dropdown-menu {
  display: none;
  flex-direction: column;
  margin-top: 10px;
  padding-left: 10px;
}

.dropdown-menu a {
  background-color: #00724f;
  color: white;
  margin: 5px 0;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.dropdown.open .dropdown-menu {
  display: flex;
}
}

