/* 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;
  }

  .ep-description {
    background-color: #2d2d2d; /* Negru */
    color: #ffffff; /* Alb */
    padding: 60px 20px;
    text-align: center;
  }
  
  .ep-description .content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .ep-description .text {
    flex: 1;
    text-align: left;
  }
  
  .ep-description h2 {
    font-size: 2.5rem;
    color: #ff3131; /* Roșu */
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  
  .ep-description h2 span {
    display: block; /* Pune "EP Equipment" pe un rând nou */
    color: #ffffff; /* Alb */
    background-color: #ff3131; /* Roșu */
    padding: 0 5px;
    border-radius: 5px;
  }
  
  .ep-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .ep-description ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
  }
  
  .ep-description ul li {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
  }
  

  .ep-description .image {
    flex: 1;
    text-align: center;
}

.ep-description .image img {
    width: 100%;
    max-width: 700px; /* Dimensiune maximă mai mare pentru imagine */
    border-radius: 8px;
}


.section-two-columns {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.column {
    width: 50%;
}

.title-red {
    color: #d32f2f;
}

.title-black {
    color: #000;
}



  /*_________________ GALERIE ________________*/
  .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: rgb(61, 60, 60);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay p {
    font-size: 1.2em;
    text-align: center;
}


/* 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;
  }