/* 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;
  }

  /* Secțiune de produse */
.product-section {
    background-color: #2d2d2d; /* Negru pentru fundal */
    color: #333; /* Culoare text neutră */
    padding: 60px 20px;
    text-align: center;
}

.product-section h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #ff3131; /* Roșu accentuat */
    font-family: 'Poppins', sans-serif; /* Font modern */
    font-weight: 700;
    text-transform: uppercase;
}

/* Layout grid pentru carduri */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Carduri flexibile */
    gap: 25px; /* Spațiu între carduri */
    justify-content: center;
}

/* Stil pentru carduri */
.product-card {
    background-color: #ffffff; /* Alb pentru carduri */
    border-radius: 12px; /* Colțuri rotunjite */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Umbră discretă */
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Aranjează elementele vertical */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px); /* Cardul se ridică ușor */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Umbră mai pronunțată */
}

/* Imaginea din card */
.product-card img {
    width: 100%; /* Imaginea ocupă toată lățimea cardului */
    height: 320px; /* Înălțime fixă mai mică pentru imagine */
    object-fit: cover; /* Asigură că imaginea este proporțională */
    display: block; /* Elimină spațiile nedorite */
}


/* Titlul cardului */
.product-card h3 {
    font-size: 1.6rem;
    color: #333; /* Culoare text contrastantă */
    margin: 20px 15px 10px;
    font-family: 'Poppins', sans-serif;
}

/* Text descriptiv */
.product-card p {
    font-size: 1rem;
    margin: 0 15px 20px;
    color: #555; /* Culoare mai subtilă pentru descriere */
}

/* Buton pentru card */
.product-card .btn {
    background-color: #ff3131; /* Roșu pentru buton */
    color: #ffffff; /* Text alb */
    text-decoration: none;
    padding: 12px 20px;
    margin: auto 15px 20px; /* Centrat și distanțat */
    border-radius: 25px; /* Colțuri rotunde pentru buton */
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.product-card .btn:hover {
    background-color: #333; /* Negru la hover */
    color: #ffffff; /* Contrast alb pe text */
    transform: scale(1.05); /* Ușor efect de mărire */
}


  /* 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;
  }