/* =====================
   🍪 COOKIE BANNER STYLE
   ===================== */

#cookie-banner {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 320px;
  padding: 1.2rem;
  border-radius: 15px;
  background: rgba(20, 20, 25, 0.85);
  box-shadow: 0 0 25px rgba(255, 150, 0, 0.15);
  backdrop-filter: blur(10px);
  color: #f3f3f3;
  font-family: 'Poppins', system-ui, sans-serif;
  z-index: 99999;
  animation: fadeIn 0.5s ease;
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

#cookie-banner .title {
  font-weight: 600;
  font-size: 1rem;
  color: #ffa733;
  display: flex;
  align-items: center;
  gap: 6px;
}

#cookie-banner .description {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  line-height: 1.3rem;
  color: #dcdcdc;
}

#cookie-banner .description a {
  color: #4ea8ff;
  text-decoration: none;
  transition: color 0.2s ease;
}

#cookie-banner .description a:hover {
  color: #7cc3ff;
  text-decoration: underline;
}

#cookie-banner .actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  column-gap: 1rem;
}

#cookie-banner .pref,
#cookie-banner .accept {
  font-size: 0.8rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 8px;
  padding: 0.5rem 1rem;
}

/* Buton gri */
#cookie-banner .pref {
  background: transparent;
  color: #ccc;
  text-decoration: underline;
}
#cookie-banner .pref:hover {
  color: #aaa;
}

/* Buton Accept portocaliu */
#cookie-banner .accept {
  background: linear-gradient(90deg, #ff9500, #ff7b00);
  color: white;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(255, 145, 0, 0.4);
}
#cookie-banner .accept:hover {
  background: linear-gradient(90deg, #ffa733, #ff9500);
  box-shadow: 0 0 15px rgba(255, 170, 0, 0.5);
}

@media (max-width: 600px) {
  #cookie-banner {
    right: 10px;
    bottom: 10px;
    width: 90%;
  }
}
/* ==============================
   🍪 COOKIE PAGE (cookies.html)
   ============================== */

/* Secțiune principală */
.section.glass {
  max-width: 850px;
  margin: 80px auto;
  padding: 2.5rem;
  background: linear-gradient(145deg, rgba(30, 30, 35, 0.85), rgba(20, 20, 25, 0.7));
  border-radius: 20px;
  box-shadow: 0 0 35px rgba(255, 140, 0, 0.2);
  backdrop-filter: blur(12px);
  color: #eee;
}

/* Titlu principal */
.section.glass h2 {
  font-size: 1.8rem;
  color: #ffb23f;
  text-shadow: 0 0 15px rgba(255, 150, 0, 0.25);
  margin-bottom: 1.2rem;
}

/* Subtitluri */
.section.glass h3 {
  color: #ff9f32;
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Paragrafe */
.section.glass p {
  color: #dcdcdc;
  font-size: 1rem;
  line-height: 1.6rem;
  margin-bottom: 1rem;
}

/* Liste */
.section.glass ul {
  margin: 1rem 0 1rem 1.2rem;
  list-style: none;
}

.section.glass ul li {
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1.8rem;
  color: #dcdcdc;
  line-height: 1.5rem;
}

.section.glass ul li::before {
  content: "⚙️";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
}

/* Buton principal */
.btn-primary {
  background: linear-gradient(90deg, #ff9f00, #ff7500);
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(90deg, #ffb733, #ff7f11);
  transform: translateY(-2px);
}

/* Buton secundar */
.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ddd;
  padding: 0.6rem 1.3rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Footer consistent */
footer.glass {
  margin-top: 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(25, 25, 30, 0.9), rgba(15, 15, 20, 0.95));
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 145, 0, 0.1);
}

footer.glass p {
  color: #ffb23f;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

/* Logouri ANPC */
.footer-logo {
  height: 40px;
  margin: 5px 8px;
  transition: transform 0.3s;
}
.footer-logo:hover {
  transform: scale(1.05);
}

/* Animație fade-up */
.animate.fade-up {
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
  .section.glass {
    margin: 50px 50px;
    padding: 1.8rem;
  }
  .section.glass h2 {
    font-size: 1.5rem;
  }
  .section.glass h3 {
    font-size: 1.1rem;
  }
}
