/****** Header Banner Information **********/


.marquee-rtl {
    width: 100%;
    margin: 0;
    border: none;
    overflow: hidden;
    padding: 5px;
    background: #FF3200;
    text-align: center;
}

.marquee-rtl>div {
    display: inline-block;
    white-space: nowrap;
    font-size: 1.2em;
    font-weight: bold;
    color: rgb(255 255 255);
  
}

.header-banner{
    width: 100%;
}

.marquee-rtl .separator {
    display: inline-block;
    margin: 0 2em;
    font-weight: normal;
}

@media (max-width:768px) {

    .marquee-rtl>div {
        font-size: 12px;
    }
    
}




/******** Presentation div **********/


.prst-resto-presentation-section {
    padding: 8%;
    width: 100vw;
    position: relative;
    /* margin-bottom: 3%; */
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.prst-resto-container {
    max-width: 100%;
    /* margin: 0 auto; */
    /* padding: 0 40px; */
}

.prst-resto-row {
    display: flex;
    align-items: center;
    /* gap: 60px; */
    margin-bottom: 120px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.prst-resto-row.prst-resto-animate {
    opacity: 1;
    transform: translateY(0);
}

.prst-resto-row:last-child {
    margin-bottom: 0;
}

.prst-resto-col-img,
.prst-resto-col-content {
    flex: 1;
}

.prst-resto-col-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.prst-resto-col-img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.prst-resto-col-img img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.prst-resto-col-img:hover img {
    transform: scale(1.1);
}

.prst-resto-col-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(238, 90, 111, 0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.prst-resto-col-img:hover::before {
    opacity: 1;
}

.prst-resto-col-content {
    text-align: center;
    padding: 40px;
}

.prst-resto-logo-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(238, 90, 111, 0.4);
    animation: prst-resto-float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.prst-resto-logo-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

@keyframes prst-resto-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.prst-resto-logo-icon svg {
    width: 70px;
    height: 70px;
    fill: white;
}

.prst-resto-subtitle {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff6b6b;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    animation: prst-resto-fadeInUp 0.8s ease forwards 0.2s;
}

@keyframes prst-resto-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h2 {
    font-size: 42px;
    color: #000000;
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.3;
    opacity: 0;
    animation: prst-resto-fadeInUp 0.8s ease forwards 0.4s;
}

p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.9;
    opacity: 0;
    animation: prst-resto-fadeInUp 0.8s ease forwards 0.6s;
}

p:last-child {
    animation-delay: 0.8s;
}

p b {
    color: #2c3e50;
    font-weight: 700;
    background: linear-gradient(120deg, #ff6b6b 0%, #ee5a6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prst-resto-row.prst-resto-reverse {
    flex-direction: row-reverse;
}

/* Réinitialiser les animations quand visible */
.prst-resto-row.prst-resto-animate .prst-resto-subtitle {
    animation: prst-resto-fadeInUp 0.8s ease forwards 0.2s;
}

.prst-resto-row.prst-resto-animate h2 {
    animation: prst-resto-fadeInUp 0.8s ease forwards 0.4s;
}

.prst-resto-row.prst-resto-animate p:first-of-type {
    animation: prst-resto-fadeInUp 0.8s ease forwards 0.6s;
}

.prst-resto-row.prst-resto-animate p:last-of-type {
    animation: prst-resto-fadeInUp 0.8s ease forwards 0.8s;
}

/* Effet de particules décoratif */
.prst-resto-col-content::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

@media (max-width: 968px) {

    .prst-resto-row,
    .prst-resto-row.prst-resto-reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }

    .prst-resto-col-img img {
        height: 400px;
    }

    h2 {
        font-size: 32px;
    }

    .prst-resto-logo-icon {
        width: 120px;
        height: 120px;
    }

    .prst-resto-logo-icon svg {
        width: 60px;
        height: 60px;
    }

    .prst-resto-container {
        padding: 0 20px;
    }

    .prst-resto-presentation-section {
        padding: 60px 0;
    }

    p {
        font-size: 16px;
    }
}

/* Thèmes de couleurs */
.prst-resto-theme-pizza .prst-resto-logo-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.prst-resto-theme-pizza .prst-resto-subtitle,
.prst-resto-theme-pizza p b {
    background: linear-gradient(120deg, #ff6b6b 0%, #ee5a6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prst-resto-theme-sushi .prst-resto-logo-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.prst-resto-theme-sushi .prst-resto-subtitle,
.prst-resto-theme-sushi p b {
    background: linear-gradient(120deg, #e74c3c 0%, #c0392b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prst-resto-theme-burger .prst-resto-logo-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.prst-resto-theme-burger .prst-resto-subtitle,
.prst-resto-theme-burger p b {
    background: linear-gradient(120deg, #f39c12 0%, #e67e22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prst-resto-theme-generic .prst-resto-logo-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.prst-resto-theme-generic .prst-resto-subtitle,
.prst-resto-theme-generic p b {
    background: linear-gradient(120deg, #3498db 0%, #2980b9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/*********** Footer Before Home  ***********/


.container_qualite {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 60px;
    padding: 3%;
    margin-top: 3%;
}

.container_qualite_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.title_qualite {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 36px;
    letter-spacing: 6px;
    margin: 0 0 30px 0;
}

.description_qualite {
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 50px 0;
}

.list_qualite_points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.point_qualite {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.container_qualite p {
    color: black;
}

.point_qualite::before {
    content: "✓";
    color: #FF3200;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border: 2px solid #FF3200;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.image_qualite {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.container_qualite_image {
    width: 45%;
    flex-shrink: 0;
    display: flex;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .container_qualite {
        gap: 40px;
    }

    .title_qualite {
        font-size: 32px;
        letter-spacing: 5px;
    }

    .description_qualite {
        font-size: 16px;
    }

    .point_qualite {
        font-size: 16px;
    }
}

@media screen and (max-width: 992px) {
    .container_qualite {
        flex-direction: column;
        gap: 40px;
    }

    .container_qualite_image {
        width: 100%;
        max-height: 400px;
    }

    .title_qualite {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .description_qualite {
        margin-bottom: 30px;
    }

    .list_qualite_points {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .title_qualite {
        font-size: 24px;
        letter-spacing: 4px;
    }

    .description_qualite {
        font-size: 15px;
        line-height: 1.6;
    }

    .point_qualite {
        font-size: 15px;
    }

    .point_qualite::before {
        width: 20px;
        height: 20px;
        font-size: 12px;
        margin-right: 15px;
    }

    .container_qualite_image {
        max-height: 300px;
    }
}

@media screen and (max-width: 480px) {
    .title_qualite {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .description_qualite {
        font-size: 14px;
    }

    .point_qualite {
        font-size: 14px;
    }

    .list_qualite_points {
        gap: 15px;
    }

    .container_qualite_image {
        max-height: 250px;
    }
}

@media (min-width: 768px) {

    .container_qualite {
        padding: 0px 279px 98px 278px;
    }

}

@media (min-width: 2198px) {

    .container_qualite {
        padding: 0px 500px 96px 508px;
    }

}

.container_qualite {
    display: none;
}

.page-index .container_qualite{
    display: flex;
}


@media screen and (max-width: 1100px) {
    .container_qualite {
        margin-bottom: 23%;
    }
}