/* Reset stiluri implicite */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    line-height: 1.6;
    color: #333;
  }
  
  /* Header */
  .header {
    background-color: #000000;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #ff3131;
  }
  
/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px; /* Reducem padding-ul */
  background: linear-gradient(to right, #ff3131, #000000);
  color: #ffffff;
}

.hero-content {
  max-width: 50%;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content span {
  background-color: #ffffff;
  color: #ff3131;
  padding: 0 5px;
}

.hero-content .btn {
  background-color: #ffffff;
  color: #ff3131;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 25px;
  margin-top: 1rem;
  display: inline-block;
}

.hero-content .btn:hover {
  background-color: #060606;
  color: #ffffff;
}

.hero-image img {
  max-width: 100%;
  border-radius: 8px;
  display: block;
}

/* Asigurăm ca secțiunea să fie ușor mai mare decât imaginea */
.hero {
  height: auto;
  min-height: calc(100% + 20px); /* Câțiva pixeli mai mare decât imaginea */
}
  
  /* About Section */
/* About Section */
.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 20px;
  background-color: #000;
  color: #fff;
  font-family: 'Arial', sans-serif;
  text-align: center;
  border: none; /* Îndepărtăm colțurile rotunjite */
  margin: 20px 0;
  position: relative;
  overflow: hidden; /* Asigură că video-ul nu iese din container */
}

/* Content */
.about-content {
  flex: 1;
  padding-right: 20px;
  z-index: 2; /* Asigură că textul va fi deasupra video-ului */
}

.about-content h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #e60000;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease-out;
}

.about-content p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.85;
  animation: fadeInUp 1.5s ease-out;
}

.cta-button {
  background-color: #e60000;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background-color: #ff0000;
}

.about-video {
  flex: 1;
  padding-left: 20px;
}

.about-video video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 0; /* Eliminăm colțurile rotunjite */
}

/* Animations */
@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsivitate */
@media (max-width: 768px) {
  .about-section {
      flex-direction: column;
      text-align: center;
  }

  .about-content {
      padding-right: 0;
      padding-bottom: 20px;
  }

  .about-content h2 {
      font-size: 32px;
  }

  .about-content p {
      font-size: 18px;
  }

  .cta-button {
      font-size: 16px;
      padding: 10px 25px;
  }
}



  
  /* Products Section */
  .products-section {
    padding: 50px 20px;
    text-align: center;
}

.product-cards {
    display: flex;
    gap: 30px; /* Spațiu mai mare între carduri */
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 320px; /* Lățime ajustată */
    text-align: center;
    display: flex;
    flex-direction: column; /* Asigură alinierea verticală */
    padding: 20px; /* Spațiu interior pentru margini */
    height: auto; /* Permite cardului să crească în funcție de conținut */
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.card h3 {
    margin: 1rem 0;
    font-size: 1.5rem; /* Ajustează dimensiunea titlului */
}

.card p {
    padding: 0 1rem;
    font-size: 1rem; /* Dimensiune consistentă a textului */
    color: #555; /* Culoare subtilă pentru text */
    margin-bottom: 20px; /* Asigură spațiu între text și buton */
}

.card .btn {
    background-color: #ff3131;
    color: #ffffff;
    padding: 0.8rem 1.5rem; /* Dimensiune mai mare pentru buton */
    text-decoration: none;
    border-radius: 25px;
    font-size: 1rem; /* Dimensiune text */
    margin-top: auto; /* Menține butonul jos dacă există mult conținut */
    display: inline-block; /* Asigură alinierea centrală */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Animație hover */
}

.card .btn:hover {
    background-color: #000000;
    transform: scale(1.05); /* Ușor efect de mărire */
}

  
  /* GALERIE */
  .testimonials-section {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
  }
  
  .testimonial {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin: 10px auto;
    max-width: 500px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial span {
    display: block;
    margin-top: 10px;
    color: #ff3131;
  }
  
  /* Contact Section */
  .contact-section {
    background-color: #ff3131;
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
  }
  
  /* Footer */
  .footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 1rem 0;
  }
  