@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Fredoka:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Fredoka:wght@300..700&family=Great+Vibes&display=swap');

html {
    scrollbar-width: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #1E1E1E;
}

a {
    text-decoration: none;
    color: white;
}

ul {
    list-style: none;
}

/** HEADER */

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    background: radial-gradient(74.22% 60.15% at 50% 39.85%, rgba(0, 0, 0, 0.60) 0%, rgba(30, 30, 30, 0.80) 47.76%, #1E1E1E 100%), url("../images/background.png");
    height: 675px;
}

header nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    padding: 0 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.6);

    .menu-container {
        width: 100%;
    }

    .menu-container ul {
        flex-direction: column;
        align-items: center;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        display: none;
    }

    .menu-container ul li {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .menu-container ul li a {
        text-decoration: none;
        padding: 10px 25px;
        border-radius: 5px;
        transition: background 0.3s;
        margin: 10px 0;
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        letter-spacing: 3px;
        text-transform: capitalize;
    }

    .burger-menu {
        display: flex;
        cursor: pointer;
        justify-content: right;
        font-size: 24px;
    }

    .burger-menu div span {
        color: white;
    }
}

.menu-container ul li a:hover {
    background-color: #F3D382;
    color: black;
    transform: scale(1.2);
    transition: all 0.6s ease-in-out;
}


.main-text {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    text-align: center;
    p {
        color: white;
        font-size: 20px;
        font-style: normal;
        font-weight: bolder;
        line-height: normal;
        letter-spacing: 3px;
        text-transform: capitalize;
        span {
            font-family: 'Great Vibes', sans-serif;
            font-weight: 400;
        }
    }

    h1 {
        color: #F3D382;
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        font-family: Cinzel, sans-serif;
    }
}

.reservation-btn {
    display: flex;
    justify-content: center;
    align-items: center;

    a {
        margin-top: 40px;
        background: linear-gradient(135deg, #F3D382, #E6B450);
        color: #0c0c0c;
        padding: 18px 30px;
        font-size: 18px;
        font-weight: bold;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 25px;
        border: solid 2px #0c0c0c;
        display: inline-block;
        transition: all 0.4s ease-in-out;
        position: relative;
        overflow: hidden;
    }

    a::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.2);
        transition: left 0.4s ease-in-out;
    }

    a:hover::before {
        left: 100%;
    }

    a:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        transform: scale(1.1);
        background: linear-gradient(135deg, #FFD27F, #E6A34F);
    }
}


.active {
    color: #F3D382;
}

/** ACCUEIL */

.grille-today-special {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 100px;
    gap: 40px;

    img {
        width: 400px;
        height: 250px;
    }

    div {
        background: #2E2E2E;
        box-shadow: 0 4px 30px 0 rgba(245, 190, 50, 0.10);
        transition: transform 0.6s ease-in-out, box-shadow 0.6s ease-in-out;
        transform: scale(1);
        position: relative;
        z-index: 1;
    }

    div:hover {
        transform: scale(1.2);
        box-shadow: 0 8px 40px 0 rgba(245, 190, 50, 0.30);
        z-index: 10;
    }

    h1 {
        color: #F3D382;
        font-size: 25px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        font-family: Cinzel, sans-serif;
        padding-left: 20px;
    }

    p {
        padding: 20px;
        width: 400px;
        color: white;
    }

    .sushi {
        background: #2E2E2E;
    }

    .sushi2 {
        background: #1E1E1E;
    }
}

.title {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 10px;
    margin-top: 30px;

    h1 {
        color: #F3D382;
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        font-family: Cinzel, sans-serif;
    }

    p {
        font-size: 20px;
        font-style: normal;
        font-weight: bolder;
        line-height: normal;
        letter-spacing: 3px;
        text-transform: capitalize;
        color: white;

        span {
            font-family: 'Great Vibes', sans-serif;
            font-weight: 400;
        }

        a {
            text-decoration: underline;
        }
    }
}

.sushi10,
.sushi11,
.sushi12,
.royal-dinning,
.fine-dinning,
.golden-dinning {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 40px;
    transition: transform 0.6s ease-in-out, box-shadow 0.6s ease-in-out;
    transform: scale(1);
    position: relative;
    z-index: 1;

    img {
        width: 400px;
        padding-top: 20px;
        padding-bottom: 10px;
        height: 350px;
    }

    h1 {
        color: #F3D382;
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        font-family: Cinzel, sans-serif;
        padding-bottom: 10px;
    }
    p {
        color: white;
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        letter-spacing: 3px;
        text-transform: capitalize;
        padding-left: 15px;
        animation: fadeIn 1s ease-out 0.5s;
    }
}

.sushi10:hover,
.sushi11:hover,
.sushi12:hover,
.royal-dinning:hover,
.fine-dinning:hover,
.golden-dinning:hover {
    transform: scale(1.2);
    z-index: 10;
    transition: all 0.6s ease-in-out;
}

.sushi10,
.sushi12,
.royal-dinning,
.fine-dinning {
    background-color: #2b2b2b;
}

.sushi11, .golden-dinning {
    background-color: #1E1E1E;
}

.content {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-in-out;
}

.content.show {
    opacity: 1;
    transform: translateY(0);
}

.content.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-in-out;
}

.content:nth-child(1) {
    transition-delay: 0.1s;
}
.content:nth-child(2) {
    transition-delay: 0.3s;
}
.content:nth-child(3) {
    transition-delay: 0.5s;
}
.testimonials {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    overflow: hidden;
    background-color: #222;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.testimonial-slider {
    display: flex;
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

.testimonial-slide {
    flex: 1 0 100%;
    padding: 20px;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.testimonial-slide:nth-child(1) {
    animation-delay: 0.5s;
}

.testimonial-slide:nth-child(2) {
    animation-delay: 1s;
}

.testimonial-slide:nth-child(3) {
    animation-delay: 1.5s;
}

.testimonial-text {
    font-size: 18px;
    color: white;
    font-style: italic;
    margin-bottom: 10px;
    transform: scale(0.95);
    animation: textZoom 1s ease-out forwards;
}

.testimonial-author {
    font-size: 20px;
    font-weight: bold;
    color: #F3D382;
    margin-top: 10px;
    opacity: 0.7;
}

@keyframes textZoom {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 30px;
    padding: 10px;
    border: none;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev, .next {
    transform: translateY(-50%);
}


@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Style général du formulaire */
.review-form {
    margin: 40px auto;
    max-width: 800px;
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: white;
}

.review-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #F3D382;
}

.review-form .form-group {
    margin-bottom: 15px;
    text-align: left;
}

.review-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.review-form input, .review-form textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #444;
    color: white;
}

.review-form textarea {
    resize: vertical;
}

.review-form .submit-btn {
    background-color: #F3D382;
    color: #333;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.review-form .submit-btn:hover {
    background-color: #D1B16D;
}


/** DONNEES */

.table {
    display: block;
    overflow-x: auto;
    width: 100%;
    color: #8f8f8f;
}

table {
    width: 100%;
    border-collapse: collapse;
}

td, tr, th {
    color: white;
    border: white 1px solid;
    padding: 8px;
    font-size: 14px;
}
th {
    color: #F3D382;
}

th:hover, td:hover {
    background-color: #F3D382;
    color: black;
}


/** CONTACT */
.notification {
    position: relative;
    margin: auto auto 40px;
    padding: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #111111;
    color: white;
    max-width: 600px;
    border-radius: 10px;
    font-style: normal;
    font-weight: bold;
    line-height: normal;
    letter-spacing: 3px;
}

.notification .message-error {
    color: red;
}

.notification .message-success {
    color: greenyellow;
}

.mapbox {
    position: relative;
    height: 350px;
    width: 100%;
    max-width: 900px;
    margin: auto auto 50px;
    border-radius: 16px;
    border: 1px solid black;
    overflow: hidden;
    box-sizing: border-box;
}

.mapbox figure {
    height: 100%;
}

.mapbox iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(1);
}

.form {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    margin: auto;
}

.input-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
    width: 100%;
}
.contact-form label {
    color: white;
}
.form-input {
    color: black;
    font-size: 12px;
    font-weight: 400;
    padding: 13px 20px;
    border: 1px solid #0c0c0c;
    border-radius: 14px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.form-input::placeholder, textarea::placeholder {
    font-weight: 500;
}

.form-input:focus, textarea:focus {
    border: solid 2px #F3D382;
}

.form-input:focus:invalid, textarea:focus:invalid {
    border: solid 2px darkred;
}

.label-message {
    margin-top: 25px;
}

textarea {
    grid-column: span 2;
    color: black;
    font-size: 12px;
    font-weight: 400;
    padding: 13px 20px;
    border: 1px solid #0c0c0c;
    border-radius: 14px;
    outline: none;
    min-height: 100px;
    height: 120px;
    max-height: 200px;
    margin-bottom: 25px;
    width: 100%;
    box-sizing: border-box;
}

.radio {
    padding: 10px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: white;
    color: black;
    padding: 10px 20px;
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    border: 2px solid transparent;
    font-size: 14px;
}

.radio input[type="radio"]:checked + label {
    background: #F3D382;
    color: #0c0c0c;
    border: 2px solid #0c0c0c;
    font-weight: bold;
}

.radio label:hover {
    background: #444;
    color: white;
}

.form-btn {
    width: auto;
    background: #0c0c0c;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 14px;
    font-size: 14px;
    text-transform: capitalize;
    z-index: 1;
    align-self: flex-end;
    margin-bottom: 20px;
}

.form-btn:hover {
    background: #F3D382;
    color: #0c0c0c;
}

button[type="submit"] {
    align-self: flex-end;
}

.form-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-btn:disabled:hover {
    background: #0c0c0c;
}

#reservation-time {
    display: none;
}

.flatpickr-calendar {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-family: "Arial", sans-serif;
    font-size: 10px;
    padding: 15px;
}

.flatpickr-month {
    background-color: #0c0c0c;
    color: white;
    padding: 5px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    background-color: transparent;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    color: #F3D382;
}

.flatpickr-day {
    color: #333;
    background-color: transparent;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.flatpickr-day.selected {
    background-color: #F3D382;
    color: #0c0c0c;
    font-weight: bold;
}

.flatpickr-day:hover {
    background-color: #F3D382;
    color: #0c0c0c;
}

.flatpickr-day[aria-disabled="true"] {
    background-color: #f3f3f3;
    color: #ddd;
    cursor: not-allowed;
}

.flatpickr-time {
    margin-bottom: 3px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 12px;
}

.flatpickr-time .flatpickr-hour,
.flatpickr-time .flatpickr-minute {
    color: #333;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 8px;
}

.flatpickr-time .flatpickr-hour:focus,
.flatpickr-time .flatpickr-minute:focus {
    border-color: #F3D382;
}

.flatpickr-time input {
    font-size: 12px;
    padding: 8px 15px;
}

.flatpickr-input {
    background-color: #fff;
    color: #333;
    padding: 13px 20px;
    border-radius: 14px;
    border: 1px solid #0c0c0c;
    outline: none;
    width: 100%;
    font-size: 12px;
    font-weight: 400;
    transition: border 0.3s;
}

.flatpickr-input:focus {
    border: 2px solid #F3D382;
}

/** GALERIE */

.container {
    --transition: 350ms;
    --folder-W: 120px;
    --folder-H: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 10px;
    background: linear-gradient(135deg, #737373, #2d2d2d);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    height: calc(var(--folder-H) * 1.7);
    position: relative;
}

.folder {
    position: absolute;
    top: -20px;
    left: calc(50% - 60px);
    animation: float 2.5s infinite ease-in-out;
    transition: transform var(--transition) ease;
}

.folder:hover {
    transform: scale(1.05);
}

.folder .front-side,
.folder .back-side {
    position: absolute;
    transition: transform var(--transition);
    transform-origin: bottom center;
}

.folder .back-side::before,
.folder .back-side::after {
    content: "";
    display: block;
    background-color: white;
    opacity: 0.5;
    z-index: 0;
    width: var(--folder-W);
    height: var(--folder-H);
    position: absolute;
    transform-origin: bottom center;
    border-radius: 15px;
    transition: transform 350ms;
}

.container:hover .back-side::before {
    transform: rotateX(-5deg) skewX(5deg);
}
.container:hover .back-side::after {
    transform: rotateX(-15deg) skewX(12deg);
}

.folder .front-side {
    z-index: 1;
}

.container:hover .front-side {
    transform: rotateX(-40deg) skewX(15deg);
}

.folder .tip {
    background: linear-gradient(135deg, #ff9a56, #ff6f56);
    width: 80px;
    height: 20px;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: -10px;
    z-index: 2;
}

.folder .cover {
    background: linear-gradient(135deg, #ffe563, #ffc663);
    width: var(--folder-W);
    height: var(--folder-H);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.custom-file-upload {
    font-size: 1.1em;
    color: #ffffff;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background var(--transition) ease;
    display: inline-block;
    width: 100%;
    padding: 10px 35px;
    position: relative;
}

.custom-file-upload:hover {
    background: rgba(255, 255, 255, 0.4);
}

.custom-file-upload input[type="file"] {
    display: none;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.galerie {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.galerie-image {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.image-container:hover {
    transform: scale(1.05);
}

.popup {
    display: none; /* Caché par défaut */
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn-popup 0.3s ease-in-out;
}

.popup-content {
    position: relative;
    padding: 20px;
}

.popup .close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

@keyframes fadeIn-popup {
    from { opacity: 0; transform: translate(-50%, -55%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.bin-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgb(255, 95, 95);
    cursor: pointer;
    border: 2px solid rgb(255, 201, 201);
    transition-duration: 0.3s;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;  /* Assurer que le bouton soit au-dessus de l'image */
    overflow: hidden;
    opacity: 0; /* Le bouton est caché par défaut */
    transition: opacity 0.3s ease-in-out; /* Pour une transition douce lors de l'apparition */
}

.bin-bottom {
    width: 15px;
    z-index: 2;
}

.bin-top {
    width: 17px;
    transform-origin: right;
    transition-duration: 0.3s;
    z-index: 2;
}

.bin-button:hover .bin-top {
    transform: rotate(45deg);
}

.bin-button:hover {
    background-color: rgb(255, 0, 0);
}

.bin-button:active {
    transform: scale(0.9);
}

.garbage {
    position: absolute;
    width: 14px;
    height: auto;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s;
}

.bin-button:hover .garbage {
    animation: throw 0.4s linear;
}

@keyframes throw {
    from {
        transform: translate(-400%, -700%);
        opacity: 0;
    }
    to {
        transform: translate(0%, 0%);
        opacity: 1;
    }
}

.image-container:hover .bin-button {
    opacity: 1; /* Le bouton devient visible lorsque l'image est survolée */
}


/** PARTENAIRE */

.text-intro {
    color: white;
    text-align: center;
    margin: 70px;
}

.cards {
    display: grid;
    grid-gap: 30px;
    width: 100%;
    color: white;
    position: relative;
    margin-bottom: 15px;

    .card {
        border: solid 2px white;
        border-radius: 30px;
        flex-basis: calc(50% - 15px);
        position: relative;
        height: 300px;
        transform: scale(1);
        transition: all 0.6s ease-in-out;

        .banner {
            border-radius: 27px 27px 0 0;
            width: 100%;
            height: 150px;
        }

        p {
            text-align: center;
            font-size: 13px;
            font-style: normal;
            font-weight: normal;
            line-height: normal;
            letter-spacing: 3px;
            text-transform: capitalize;
            padding: 15px;
        }

        h2 {
            padding-left: 10px;
            text-align: center;
        }
    }

    .card:hover {
        transform: scale(1.1);
    }
}

.profile-image {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid red;
    background-color: white;
    top: -15px;
    left: -5px;
}


.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container-pdf {
    padding: 0;
    margin: 20px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.label {
    background-color: transparent;
    border: 2px solid rgb(91, 91, 240);
    display: flex;
    align-items: center;
    border-radius: 50px;
    width: 160px;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 5px;
    position: relative;
}

.label::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    width: 8px;
    height: 8px;
    transition: all 0.4s ease;
    border-radius: 100%;
    margin: auto;
    opacity: 0;
    visibility: hidden;
}

.label .input {
    display: none;
}

.label .title-btn {
    font-size: 12px;
    color: #fff;
    transition: all 0.4s ease;
    position: absolute;
    right: 12px;
    bottom: 20px;
    text-align: center;
}

.label .title-btn:last-child {
    opacity: 0;
    visibility: hidden;
}

.label .circle {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    background-color: rgb(91, 91, 240);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 0 0 0 rgb(255, 255, 255);
    overflow: hidden;
}

.label .circle .icon {
    color: #fff;
    width: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.label .circle .square {
    aspect-ratio: 1;
    width: 15px;
    border-radius: 2px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.label .circle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: #3333a8;
    width: 100%;
    height: 0;
    transition: all 0.4s ease;
}

.label:has(.input:checked) {
    width: 57px;
    animation: installed 0.4s ease 3.5s forwards;
}

.label:has(.input:checked)::before {
    animation: rotate 3s ease-in-out 0.4s forwards;
}

.label .input:checked + .circle {
    animation:
            pulse 1s forwards,
            circleDelete 0.2s ease 3.5s forwards;
    rotate: 180deg;
}

.label .input:checked + .circle::before {
    animation: installing 3s ease-in-out forwards;
}

.label .input:checked + .circle .icon {
    opacity: 0;
    visibility: hidden;
}

.label .input:checked ~ .circle .square {
    opacity: 1;
    visibility: visible;
}

.label .input:checked ~ .title-btn {
    opacity: 0;
    visibility: hidden;
}

.label .input:checked ~ .title-btn:last-child {
    animation: showInstalledMessage 0.4s ease 3.5s forwards;
}

@keyframes pulse {
    0% {
        scale: 0.95;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        scale: 1;
        box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
    }
    100% {
        scale: 0.95;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes installing {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(-90deg) translate(27px) rotate(0);
        opacity: 1;
        visibility: visible;
    }
    99% {
        transform: rotate(270deg) translate(27px) rotate(270deg);
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes installed {
    100% {
        width: 150px;
        border-color: rgb(35, 174, 35);
    }
}

@keyframes circleDelete {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes showInstalledMessage {
    100% {
        opacity: 1;
        visibility: visible;
        right: 56px;
    }
}


/** FOOTER */

footer {
    background: radial-gradient(74.22% 60.15% at 50% 39.85%, rgba(0, 0, 0, 0.60) 0%, rgba(30, 30, 30, 0.80) 56.25%, #1E1E1E 86.46%), url("../images/background-footer.jpg");
    backdrop-filter: blur(3px);
    height: 762px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;

    h1 {
        color: #F3D382;
        text-align: center;
        font-family: Cinzel, sans-serif;
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        padding-top: 100px;
    }

    .info {
        color: white;
        text-align: center;
        gap: 20px;
        display: flex;
        flex-direction: column;
    }

    .link, .credits {
        display: flex;
        justify-content: center;
        gap: 34px;
        margin-bottom: 20px;
    }

    .link a, .credits a {
        color: white;
        background: #0c0c0c;
        transition: all 0.6s ease-in-out;
        padding: 7px;
        border-radius: 5px;
    }

    .link a:hover, .credits a:hover {
        background-color: #F3D382;
        color: black;
        transform: scale(1.2);
        transition: all 0.6s ease-in-out;
    }

    .mention-legal {
        color: white;
        text-align: center;
        font-size: 14px;
        padding: 10px 0;
        background-color: rgba(30, 30, 30, 0.9);
        width: 100%;
    }
}

@media screen and (min-width: 500px) {
    body {
        margin: 0 auto;
        max-width: 1080px;
    }

    header nav .burger-menu {
        display: none;
    }

    header nav {
        justify-content: center;
        background: none;
        box-shadow: none;
        position: absolute;
    }

    header nav .menu-container ul {
        display: flex;
        justify-content: center;
        flex-direction: row!important;
    }

    .main-text {
        left: 25%;
    }

    .grille-today-special {
        flex-direction: row;
        justify-content: center;
    }

    .sushi10, .sushi11, .sushi12 {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;

        img {
            width: 500px;
        }

        div {
            padding: 0 10px;

            h1 {
                padding-top: 25px;
            }
            p {
                padding-top: 20px;
            }
        }
    }

    .golden-dinning, .fine-dinning, .royal-dinning {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;

        img {
            width: 500px;
        }

        div {
            padding: 0 10px;

            h1 {
                padding-top: 25px;
            }
            p {
                padding-top: 20px;
            }
        }
    }

    .table {
        display: flex;
        justify-content: center;
    }

    table {
        font-size: 16px;
    }

    td, th {
        padding: 16px;
    }

    .cards {
        grid-template-columns: 1fr 1fr;

        .profile-image {
            left: -25px;
            top: 20px;
        }

        p {
            font-size: 16px;
        }
    }

    footer .info {
        flex-direction: row;
        justify-content: center;
        gap: 60px;
    }
}

@media screen and (max-width: 600px) {
    .flatpickr-calendar {
        padding: 10px;
    }
    .flatpickr-input {
        padding: 12px 15px;
    }
}