/*-- Use For Custom Styling --*/

/* ==================
    Testimonial
================== */

.testimonial-card {
  max-width: 720px;
  background: #111;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.testimonial-text {
  color: #ddd;
  font-size: 18px;
  line-height: 1.7;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-top: 20px;
}

/* =========================
   Texte rotatif léger
========================= */
.js-rotating {
    display: inline-block;
    opacity: 1;
    transition: opacity 0.35s ease;
    min-width: 180px;
}

/* =========================
   Bannière cookies animée
========================= */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: whitesmoke;
    padding: 20px;
    box-shadow: 0 -2px 10px #6ad22520;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-consent-banner.hide {
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
}

.cookie-consent-content {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-consent-logo {
    width: 24%;
    max-width: 180px;
    height: auto;
    margin-bottom: 13px;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-consent-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.cookie-consent-button:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

#acceptCookies {
    background-color: #6ad225;
    color: white;
}

#declineCookies {
    background-color: #f44336;
    color: white;
}

/* Responsive bannière cookies */
@media (max-width: 768px) {
    .cookie-consent-logo {
        width: 40%;
        max-width: 140px;
    }

    .cookie-consent-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    .cookie-consent-button {
        width: 100%;
        max-width: 220px;
    }
}

