
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;
 }  
 } 



 body {
      font-family: 'Montserrat', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f4f4f4;
    }






 
.TitluPrincipal {
  text-align: center;
  padding: 40px 20px 20px;
}

.lista1 li {
  list-style-type: none;
  margin-bottom: 5px;
}

.bara {
  border: 0;
  height: 2px;
  background-color: #b39c7e;
  margin: 30px 0;
}


/* CONTAINER GLOBAL PRODUS */
.produs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 10px auto;
  max-height: 1400px;
  padding: 20 20px;
  flex-wrap: wrap;
}

.produs.invers {
  flex-direction: row-reverse;
  
}

/* TEXT PRODUS */
.produs-text {
  flex: 1 1 450px;
  font-size: 18px;
  color: #333;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.produs-text h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #1f1f1f;
  text-align: center;
}

.produs-text ul {
  padding-left: 0;
  list-style: none;
  text-align: center;
}

.produs-text p {
  margin: 5px 0;
  text-align: center;
}

.vezi-detalii,
.oferta {
  display: inline-block;
  margin: 15px auto 0;
  background-color: #7e0413;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s;
}

.vezi-detalii:hover,
.oferta:hover {
  background-color: #66040e;
}



/* IMAGINEA PRODUSULUI */
.produs-imagine {
  flex: 1 1 450px;
  padding: 10px;
  text-align: center;
  height: auto;
  max-width: 100%;
   max-height: 400px;
   object-fit: contain;
   transition: all 0.3s ease;
 /*  display: flex;
  justify-content: center;
  align-items: center; */
}

.Poza1Poza img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
     max-height: 400px;
}


/* EFECT HOVER IMAGINE */
.Poza1Poza {
  display: inline-block;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 20px;
  transition: box-shadow 0.3s ease;
  box-sizing: border-box;
}

.Poza1Poza img {
  height: auto;
  width: 100%;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  transition: all 0.3s ease;
  max-height: 400px;
}

.Poza1Poza:hover {
  box-shadow:
    2px 4px 6px rgba(0, 0, 0, 0.08),
    4px 8px 8px rgba(0, 0, 0, 0.08),
    3px 6px 10px rgba(0, 0, 0, 0.1);
}

.Poza1Poza:hover img {
  transform: scale(1.05);
}

/* BORDURI DINAMICE PE HOVER */
.Poza1Poza::before,
.Poza1Poza::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border: 2px solid transparent;
  box-sizing: inherit;
  transition: width 1s ease, height 1s ease;
}

.Poza1Poza::before {
  top: 0;
  left: 0;
}

.Poza1Poza::after {
  bottom: 0;
  right: 0;
}

.Poza1Poza:hover::before {
  width: 100%;
  height: 100%;
  border-top-color: #66040e;
  border-left-color: #66040e;
  
}

.Poza1Poza:hover::after {
  width: 100%;
  height: 100%;
  border-bottom-color: #66040e;
  border-right-color: #66040e;
  
}



/* BARA DESPARTIRE */
.bara {
  border: 0;
  height: 2px;
  background-color: #b39c7e;
  margin: 30px auto;
  width: 80%;
}

/* RESPONSIVE DESIGN */
@media (max-width: 700px) {
  .produs {
    margin: 40px 60px;
    flex-direction: column;
  }

  .produs-text,
  .produs-imagine {
    flex: 1 1 100%;
    text-align: center;
  }

  .Poza1Poza img,
  .produs-imagine img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .produs {
    margin: 30px 20px;
  }

  .Poza1Poza img,
  .produs-imagine img {
    height: 300px;
  }
}


/* Stilizare text pentru pag principala gratare*/

.descriere-pagini-principale {
  max-width: 900px;
  margin: 40px auto 20px;
  padding: 20px 25px;
  background-color: #f2f2f2; /* gri deschis */
  border-left: 4px solid #4caf50;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  font-family: 'Montserrat', sans-serif;
}

.descriere-pagini-principale p {
  font-size: 19px;
  line-height: 1.6;
  color: #333;
  text-align: left; /* aliniere la început */
  margin: 20px;
  text-indent: 30px;
}

.descriere-pagini-principale h2{
    text-align: center;
}


 .banner-cu-text {
      position: relative;
      width: 100%;
      height: auto;
      max-height: 500px;
      overflow: hidden;
    }

    .banner-cu-text img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .banner-cu-text h2 {
      position: absolute;
      bottom: 5%;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      font-size: 4vw; /* text responsive */
      background-color: rgba(0, 0, 0, 0.5); /* fundal semi-transparent */
      padding: 10px 30px;
      border-radius: 8px;
      text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
      margin: 0;
      white-space: nowrap;
    }

    @media (max-width: 768px) {
      .banner-cu-text h2 {
        font-size: 6vw;
        padding: 8px 20px;
      }
    }


    .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);
}