.footer {
  background: linear-gradient(to top, rgba(20, 20, 20, 0.836) 0%, rgb(20, 20, 20) 50%, #0e0e0e 100%);
    color: #ccc;
    padding: 20px 20px;
    font-family: Arial, sans-serif;
    font-family: Arial, sans-serif;
    width: 100%;
    height: 350px;
    position: relative; /* pentru poziționarea internă */
    overflow:  hidden;   /* ascunde florile care ies din footer */
  }
  
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .footer-left {
    display: flex;
    position: relative;
    align-items: center;
    gap: 15px;
    size: 100px;
  }

  .footer-logo {
    width: 80px;
    height: auto;
    position: absolute;
    top: -45px;
    left: -8px;   /* opțional, spațiu între logo și border */
    margin-right: 30px;
  }
  
  .button-wrapper {
    position: relative; /* permite liniei să iasă */
    overflow: visible;  /* important: nu tăia ce iese în sus! */
  }
  
  .btn-accent {
    position: relative; /* necesar pentru ::before */
    background: none;
    color: white;
    border: none;
    padding: 10px 0 10px 25px;
    font-size: 18px;
    font-weight: bold;
    line-height: 0.9em;
    cursor: pointer;
    display: inline-block;
  }
  
  /* linia verticală foarte lungă în sus */
  .btn-accent::before {
    content: '';
    position: absolute;
    left: 0;
    top: -5px;     /* cât de lungă în sus */
    bottom: -0px;   /* opțional în jos */
    width: 1px;
    background-color: white;
  }
  
  .join-now {
    position: absolute;
    top: -30px;
    left: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  
  .join-now::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: white;
    opacity: 1;
  }
  
  
  .footer-social img {
    width: 30px;
    height: auto; /* păstrează proporțiile corecte */
  }
  
  .footer-social {
    display: flex;
    gap: 15px;           /* spațiu între iconițe */
    align-items: center; /* aliniere verticală */
    justify-content: center; /* sau: start, end, space-between, etc. */
    margin-top: 20px;    /* sau margin-left etc., în funcție de ce vrei */
  }

  .footer-social {
    position: relative;
    right: 1500px;
    bottom: 12px;
    display: flex;
    gap: 15px;
  }


  .az-text {
    font-size: 24px;
    line-height: 0.9em;
    font-weight: bold;
    color: white;
    position: absolute;
    top: 120px;
    left: 18px;
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.856);
    display: inline-block; /* Permite ca border-ul să se alinieze la înălțimea textului */
    height: auto; /* Permite ca înălțimea să fie determinată de înălțimea textului */
}

.size-text {
  color: white; /* Setează culoarea textului la alb */
  font-size: 15px; /* Poți schimba dimensiunea textului aici (ex: 20px sau 30px pentru mai mare) */
  font-weight: normal; /* Folosește font normal (sau poți folosi bold dacă vrei să fie îngroșat) */
  position: relative; /* Dacă vrei să-l muți folosind top/left */
  top: 40px; /* Muta textul pe verticală, 10px mai jos (poți ajusta valoarea pentru a-l muta mai mult sau mai puțin) */
  left: 150px; /* Muta textul pe orizontală, 20px mai spre dreapta (ajustează după cum e nevoie) */
}


.footer-separator {
  width: 1670px;         /* Lățimea barei - modifică după dorință (ex: 100%, 500px etc.) */
  height: 2px;         /* Grosimea liniei */
  background: #888;    /* Culoarea barei */
  margin: 10px auto;   /* Spațiu deasupra/dedesubt și centrare automată */
  position: relative;  /* Poți folosi top/left pentru mutare precisă */
  top: -15px;            /* Mutare verticală */
  left: -90px;           /* Mutare orizontală */
}



.alphabet-filter {
  position: relative;
  top: 40px;
  left: -380px;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* sau space-between, după cum vrei */
  gap: 6px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}


.alphabet-filter a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: #2c2c2c;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: background 0.3s, transform 0.2s;
}

.alphabet-filter a:hover {
  background: linear-gradient(135deg, #ffffff, #ffcc00);
  color: #000;
  transform: scale(1.05);
}

.footer-character {
  position: absolute;
  bottom: 0px;
  right: 10px;
  height: 410px; /* ajustează după dimensiune dorită */
  z-index: 10;
  display: block;
  pointer-events: none; /* ca să nu încurce click-urile pe link-uri */
}

footer.footer {
  position: relative;
  overflow: visible; /* permite ieșirea elementelor din container */
  z-index: 1;
  margin-bottom: 0;
  padding-bottom: 0;
}

  
.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px; /* spațiu între linkuri */
  padding: 10px 0;
  text-align: center;
  flex-wrap: wrap;
  position: relative;
  top: 55px; /* mută toată secțiunea în jos dacă vrei */
}

.footer-links .link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.footer-links .link-item a {
  font-weight: bold;
  color: #ccc;
  text-decoration: none;
  margin: 0 8px;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 14px;
  position: relative;
  top: 20px; /* pentru efect vizual */
}

/* Gradient la hover pe text */
.footer-links .link-item a:hover {
  background: linear-gradient(135deg, #ffffff, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.footer-links .link-item span {
  color: #666;
  font-size: 18px;
  margin-top: 8px;
  position: relative;
}

/* Poziționare individuală a barelor */
.bar-1 {
  position: relative;
  top: -12px;
  left: 80px;
}

.bar-2 {
  position: relative;
  top: -12px;
  left: 45px;
}

.bar-3 {
  position: relative;
  top: -12px;
  left: 52px;
}

.bar-4 {
  position: relative;
  top: -12px;
  left: 38px;
}


  
  /* Footer-ul este împins în partea de jos */
.footer-bottom {
  margin-top: auto;
  color: #949393;
  text-align: center;
  padding: 15px 20px;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  top: 26px;
  left: 10px;
}

.footer-bottom p {
  margin: 5px 0;
}
  
  hr {
    margin: 30px 0;
    border: 0;
    border-top: 1px solid #333;
  }

  .flowers {
    position: absolute; /* important! */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
  }
  
  .petal {
    position: absolute;
    width: 30px; /* sau dimensiunile imaginii tale */
    height: 30px; /* sau dimensiunile imaginii tale */
    background-image: url('public/imgs/footer/cires.png'); /* calea către imaginea ta */
    background-size: cover; /* asigură-te că imaginea se potrivește bine în dimensiunile petalei */
    opacity: 0.8;
    animation: windFloat linear forwards;
  }
  
  .flowers {
    position: absolute;
    top: 0; right: 200px; bottom: 0; left: 0;
  }
  
  @keyframes windFloat {
    0% {
      transform: translateX(0px) translateY(0px) rotate(0deg);
      opacity: 1;
    }
    25% {
      transform: translateX(-450px) translateY(-20px) rotate(90deg);
    }
    50% {
      transform: translateX(-900px) translateY(10px) rotate(180deg);
    }
    75% {
      transform: translateX(-1350px) translateY(-15px) rotate(270deg);
    }
    100% {
      transform: translateX(-1800px) translateY(0px) rotate(360deg);
      opacity: 0;
    }
  }
  

  
  
  
  
  
  
  
  
