

/* 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;
 }  
 } 

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  background: linear-gradient(to bottom right, #f8f8f8, #eaeaea);
}

h1 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.selectie-gratar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gratar-opt {
  cursor: pointer;
  width: 220px;
  border-radius: 12px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.5s ease-in-out, z-index 0.1s;
  position: relative;
  z-index: 1;
}

.gratar-opt:hover {
  transform: scale(1.6) rotate(-0.5deg);
  z-index: 10;
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.gratar-opt::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #7e0413, #ff7a57);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gratar-opt:hover::after {
  opacity: 1;
}

.gratar-opt img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gratar-opt:hover img {
  transform: scale(1.05);
}

.gratar-opt p {
  margin: 12px 0;
  font-weight: bold;
  font-size: 1.1em;
  color: #333;
  transition: color 0.3s ease;
}

.gratar-opt:hover p {
  color: #7e0413;
}

.gratar-opt.blurred {
  filter: blur(2px) brightness(0.8);
  opacity: 0.5;
  transform: scale(1); /* Nu se mărește */
  z-index: 0;
  transition: filter 0.3s ease, opacity 0.3s ease;
}


.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);
}