body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 50px;
}



/* NAVIGATION BAR */
.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #1f1f1f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  z-index: 1000;
  flex-wrap: wrap;
}

.logo-area {
  display: flex;
  align-items: center;
}

.logo {
  height: 60px;
}


.TextLogo {
  font-size: 24px;
  font-weight: bold;
  color: white; /* schimbat din negru în alb */
  text-decoration: none;
  margin-left: 10px;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.TextLogo:hover {
  transform: scale(1.15); /* creștere cu 15% */
  color: #4caf50;
}


/* MENIU DESKTOP CENTRAT */
.text-nav {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.text-nav a {
  color: white;
  text-decoration: none;
  font-size: 25px;
  transition: color 0.3s;
}

.text-nav a:hover {
  color: #4caf50;
}

/* BULETINĂ + MENIU MOBIL */
.menu-wrapper {
  position: relative;
  display: none;
}

.burger-circle {
  background: #4caf50;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-right: 10px;
  z-index: 1100;
}

.burger-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.burger-lines span {
  height: 3px;
  width: 20px;
  background: white;
  border-radius: 2px;
}

/* MENIU ASCUNS INIȚIAL */
.mobile-nav {
  position: absolute;
  top: 50%; /* direct sub bulină, fără spațiu */
  right: 0;
  width: 200px;
  background-color: #1f1f1f;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* MENIU VIZIBIL LA HOVER PE ÎNTREGUL WRAPPER */
.menu-wrapper:hover .mobile-nav {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  color: white;
  font-size: 16px;
  text-decoration: none;
}

.mobile-nav a:hover {
  color: #4caf50;
}

/* RESPONSIVE: Meniu mobil */
@media (max-width: 1700px) {
  .text-nav {
    display: none;
  }

  .menu-wrapper {
    display: flex;
  }
}



.text {
  flex: 1 1 48%;
  padding: 20px;
  font-size: 18px;
  line-height: 1.6;
  color: #222;

  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  text-align: center;
  opacity: 85%;
  background-color: rgba(255, 255, 255, 0.9); /* puțin mai opac */
  backdrop-filter: blur(5px);
}

.text ul {
    list-style-type: none;
}

@media (max-width: 1700px) {
  .popozaDespreNoi {
      width: 100%;
    min-height: auto;
  }
  }

  @media (max-width: 600px) {
 .TextLogo {
     font-size: 25px;
 }  
}

.configurator-button {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: #ff5722;
  color: #fff;
  padding: 12px 18px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  z-index: 9999;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.configurator-button:hover {
  background-color: #e64a19;
  transform: translateY(-8px);
  box-shadow: 0 20px 18px rgba(0,0,0,0.3);
  transform: scale(1.4);
}

.configurator-button .icon {
  transition: transform 0.3s ease;
}

.configurator-button:hover .icon {
  transform: rotate(20deg) scale(4.0);
}