/* 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;
  }

  /*____________ DESPRE NOI _______________*/
  /* Hero Section */
/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000, #e60000);
    height: 100vh; /* ocupă întreaga înălțime a ecranului */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    padding: 0 20px;
    overflow: hidden;
    transition: background 0.3s ease-in-out; /* adăugăm un efect de tranziție pentru fundal */
}

.hero-content {
    max-width: 900px;
    width: 100%;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* adăugăm umbra textului pentru un efect mai modern */
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase; /* pentru un impact vizual mai mare */
}

.hero p {
    font-size: 24px;
    line-height: 1.6;
    font-weight: lighter;
}

/* Secțiunea Despre Noi */
.section {
    padding: 80px 20px;
    background-color: #111; /* un fundal mai închis pentru a crea contrast */
    transition: background 0.3s ease-in-out;
}

.about-us {
    background-color: #111; /* păstrează același fundal închis */
    color: #fff;
}

.about-text {
    margin-bottom: 40px;
    padding: 0 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h2 {
    color: #e60000;
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-text p {
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    font-weight: 300; /* mai ușor pentru un efect modern */
}

/* Adăugăm o mică interacțiune când utilizatorul trece cu mouse-ul peste secțiune */
.section:hover {
    background-color: #222; /* efect de hover pentru fundal */
}

/* Îmbunătățiri pentru imagini și parteneri */
.partner-logo img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease; /* adăugăm un efect la hover pentru imagini */
}

.partner-logo img:hover {
    transform: scale(1.05); /* imaginea va crește puțin la trecerea cu mouse-ul */
}


/* Secțiunea Echipa Noastră */
.team {
    background-color: #2c2c2c;
    text-align: center;
}

.team h2 {
    font-size: 30px;
    color: #e60000;
    margin-bottom: 50px;
}

.team-member {
    display: inline-block;
    width: 30%;
    margin: 0 1.5%;
    text-align: center;
    color: #fff;
}

.team-member img {
    width: 100%;
    max-width: 200px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 20px;
    font-weight: bold;
}

.team-member span {
    display: block;
    font-size: 16px;
    color: #bbb;
}

/* Secțiunea Parteneri */
.partners {
    background-color: #000;
    text-align: center;
    color: #ffffff;
}

.partner-logo {
    display: inline-block;
    margin: 30px;
}

.partner-logo img {
    width: 100%;
    height: auto;
}


.partner-logo img:hover {
    opacity: 1;
}

/* 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;
  }
  