

html,body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat' ,sans-serif;
    background-color: #f4f4f4;
}

.page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}



/* 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: 768px) {
  .text-nav {
    display: none;
  }

  .menu-wrapper {
    display: flex;
  }
}

@media (max-width: 1600px) {
 .TextLogo {
     font-size: 25px;
 }  
 } 

 @media (max-width: 1350px) {
 .TextLogo, .text-nav a {
     font-size: 20px;
 }  
 } 

  @media (max-width: 1100px) {
 .TextLogo {
     font-size: 0px;
 }  
 } 

 @media (max-width: 900px) {
  .text-nav a {
     font-size: 15px;
 }  
 } 



form {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: 'Montserrat', sans-serif;
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
  font-size: 16px;
}

form input,
form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

form input:focus,
form textarea:focus {
  border-color: #7e0413;
  outline: none;
  box-shadow: 0 0 5px rgba(126, 4, 19, 0.3);
}

/* Centrăm butonul */
form .submit-container {
  text-align: center;
  margin-top: 10px;
}

form button[type="submit"] {
  background-color: #7e0413;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

form button[type="submit"]:hover {
  background-color: #66040e;
}




.contacteazaText  {
    font-size: 25;
  text-align: center;
  color: #a70818;
 
}


.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);
}