/* =========================================== */
/* 1. Conteneur principal - Pleine largeur */
/* =========================================== */
#home-newsletter {
    position: relative;
    padding: 100px 15px;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    margin: 0;
}

/* 2. Pseudo-élément pour l'image de fond Parallax */
#home-newsletter::before {
    content: "";
    position: fixed;
    /* FIXED au lieu d'absolute pour l'effet parallax */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* 100vh pour couvrir tout le viewport */
    z-index: 0;

    background-image: url('https://img.freepik.com/free-photo/highly-detailed-seafood-sushi-dish-with-simple-black-background_23-2151349371.jpg?semt=ais_hybrid&w=740&q=80');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

    /* Voile sombre plus prononcé pour contraste optimal */
    background-color: rgba(0, 0, 0, 0.6);
    background-blend-mode: multiply;
}

/* Clip le pseudo-élément à la zone de la newsletter */
#home-newsletter {
    /* Création d'un contexte de découpage */
    clip-path: inset(0);
}

/* 3. Contenu au-dessus du fond */
#home-newsletter .block_newsletter,
#home-newsletter .row,
#home-newsletter * {
    position: relative;
    z-index: 1;
}

/* 4. Style du titre principal */
#home-newsletter h2 {
    font-size: 3.2em;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #ffffff !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

/* 5. Sous-titre */
#home-newsletter #block-newsletter-label {
    font-size: 1.4em;
    margin-bottom: 50px;
    font-weight: 300;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 6. Container du formulaire - COLONNE */
#home-newsletter .formulaire {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    /* margin: 0 auto; */
    gap: 20px;
}

/* 7. Wrapper de l'input */
#home-newsletter .input-wrapper {
    width: 100%;
    padding: 2%;
}

/* 8. Style de l'input email */
#home-newsletter input[type="email"] {
    width: 100%;
    padding: 21px 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1.1em;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    text-align: center;
}

#home-newsletter input[type="email"]:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 0 4px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

#home-newsletter input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* 9. Style du bouton S'abonner - MAGNIFIQUE */
#home-newsletter input[type="submit"] {
    width: 100%;
    max-width: 280px;
    background: linear-gradient(135deg, var(--primaryllw-color, #ff6b6b) 0%, var(--primaryllw-color, #ee5a6f) 100%);
    color: #ffffff;
    /* padding: 20px 45px; */
    border: none;
    border-radius: 50px;
    font-size: 1.15em;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 0 0 rgba(255, 255, 255, 0.4);
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

#home-newsletter input[type="submit"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

#home-newsletter input[type="submit"]:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 0 6px rgba(255, 255, 255, 0.2);
    filter: brightness(1.2);
}

#home-newsletter input[type="submit"]:hover::before {
    width: 300px;
    height: 300px;
}

#home-newsletter input[type="submit"]:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* 10. Messages et conditions - TEXTE BLANC */
#home-newsletter .col-xs-12>p {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 0.95em;
    margin-top: 15px;
    line-height: 1.6;
}

/* 11. Alerts stylisées (messages de confirmation) */
#home-newsletter .alert {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    color: #ffffff !important;
    border-radius: 15px;
    padding: 20px 30px;
    margin-top: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

#home-newsletter .alert-success {
    border-left: 5px solid #28a745;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.2), rgba(40, 167, 69, 0.05));
}

#home-newsletter .alert-danger {
    border-left: 5px solid #dc3545;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.2), rgba(220, 53, 69, 0.05));
}

/* =========================================== */
/* 12. Ajustements Mobile (RESPONSIVE) */
/* =========================================== */
@media (max-width: 767px) {
    #home-newsletter {
        padding: 60px 20px;
    }

    #home-newsletter h2 {
        font-size: 2.2em;
        letter-spacing: 1px;
    }

    #home-newsletter #block-newsletter-label {
        font-size: 1.1em;
        margin-bottom: 35px;
        padding: 0 10px;
    }

    #home-newsletter .formulaire {
        max-width: 100%;
        gap: 15px;
    }

    #home-newsletter input[type="email"] {
        padding: 18px 25px;
        font-size: 1em;
    }

    #home-newsletter input[type="submit"] {
        padding: 18px 40px;
        font-size: 1em;
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #home-newsletter h2 {
        font-size: 2.8em;
    }

    #home-newsletter .formulaire {
        max-width: 450px;
    }
}

/* =========================================== */
/* 13. Fix pour éviter le dépassement horizontal */
/* =========================================== */
body {
    overflow-x: hidden;
}

#home-newsletter .container,
#home-newsletter .row {
    max-width: 100%;
}

/* 14. Animation d'apparition douce */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

#home-newsletter .block_newsletter {
    animation: fadeInUp 0.8s ease-out;
    background: #ffffff00;
}

/* 15. Effet de brillance sur le bouton (optionnel) */
#home-newsletter input[type="submit"]::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 100%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s;
}

#home-newsletter input[type="submit"]:hover::after {
    left: 200%;
}















.main-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333333;
    padding: 60px 0 0 0;
    /* margin-top: 80px; */
    border-top: 1px solid #dee2e6;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 50px;
}

/* Section Logo */
.footer-brand {
    display: flex;
    gap: 0px;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 3px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: var(--primaryllw-color, #007bff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #333;
}

.footer-description {
    color: #6c757d;
    line-height: 1.8;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primaryllw-color, #007bff);
    color: #ffffff;
    border-color: var(--primaryllw-color, #007bff);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--primaryllw-color, rgba(0, 123, 255, 0.3));
}

/* Colonnes d'informations */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
    color: #333;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primaryllw-color, #007bff);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a:hover {
    color: var(--primaryllw-color, #007bff);
    padding-left: 8px;
}

.footer-links li a i {
    font-size: 12px;
    opacity: 0.5;
}

/* Section Contact */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.7;
}

.contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--primaryllw-color, #007bff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0.9;
}

.contact-item a {
    color: var(--primaryllw-color, #007bff);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primaryllw-color, #007bff);
    text-decoration: underline;
    opacity: 0.8;
}

/* Footer Bottom */
.footer-bottom {
    background: #ffffff;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #dee2e6;
}

.footer-bottom p {
    color: #6c757d;
    font-size: 13px;
}

.footer-bottom a {
    color: var(--primaryllw-color, #007bff);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primaryllw-color, #007bff);
    text-decoration: underline;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .main-footer {
        padding: 40px 0 0 0;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        align-items: center;
    }

    .contact-info {
        align-items: center;
        text-align: center;
    }
}

/* Animation au scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.footer-column {
    animation: fadeInUp 0.6s ease-out;
}

.footer-column:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.3s;
}


.block-social {
    display: none;
}



/****** NEW FOOTER DESIGN ******/

.new-footer {
    background: var(--primaryllw-color);
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.new-footer * {
    margin: 0;
    padding: 0;
    color: white;
    box-sizing: border-box;
}


.new-footer a:hover {
    color: #e74c3c;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Top - 4 blocs avec icônes */
.footer-top {
    padding: 60px 0;

}

.footer-top .footer-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-block {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.footer-block:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.footer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-icon svg {
    color: #ffffff;
}

.footer-block h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-block .footer-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-bottom: 8px;
}

.footer-block p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

/* Footer Middle - Logo + Liens */
.footer-middle {
    padding: 52px 0;
}

.footer-middle-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 2%;
}

/* Brand section */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 0px;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.footer-tagline {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}

/* Liens colonnes */
.footer-links-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-links-column h4 {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-column ul {
    list-style: none;
}

.footer-links-column ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-links-column ul li i {
    color: rgb(255 0 0 / 50%);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-links-column ul li a,
.footer-links-column ul li span {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer-links-column ul li a:hover {
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-align: right;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-top .footer-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-middle-content {
        gap: 50px;
    }

    .footer-links-wrapper {
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 40px 0;
    }

    .footer-top .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-block {
        padding: 25px 15px;
    }

    .footer-icon {
        width: 60px;
        height: 60px;
    }

    .footer-icon svg {
        width: 30px;
        height: 30px;
    }

    .footer-block h3 {
        font-size: 16px;
    }

    .footer-middle {
        padding: 40px 0;
    }

    .footer-middle-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-links-column ul li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-wrapper {
        padding: 0 15px;
    }

    .footer-top {
        padding: 30px 0;
    }

    .footer-block h3 {
        font-size: 15px;
    }

    .footer-block p {
        font-size: 13px;
    }

    .footer-logo img {
        max-width: 150px;
    }

    .footer-tagline {
        font-size: 14px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

.conception_footer {
    font-size: medium;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2%;
    color: white;
    font-size: 12px;
}

@media (max-width:990px) {
    #footer {
        padding-top: 0rem;
    }

}

body:not(.page-index) .art_sushi_about_section{
    display: none;
}

body:not(.page-index) .art_sushi_visit_section{
    display: none;
}



.page-order .row:nth-child(2) {
    margin-top: 3%;
}

.page-order .ets_mm_megamenu.layout_layout1.show_icon_in_mobile.transition_fade.transition_floating.sticky_enabled.ets-dir-ltr.hook-default.single_layout.disable_sticky_mobile.hover.mm_menu_left {
    position: sticky !important;
}

.page-order #home-newsletter {
    display: none;
}
.page-order .blockreassurance{
    display: none;
}

.page-order footer#footer{
    background: var(--primaryllw-color) !important;
}