body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #000;
    color: #333;
    overflow-y: scroll;
}

header {
    background: rgba(51, 51, 51, 0);
    color: white;
    padding: 1rem;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 1rem;
}

nav ul li a {
    color: rgba(255, 255, 255, 0.493);
    text-decoration: none;
}

nav {
    display: flex;
    justify-content: space-around;
    padding: 15px 60px;
}

nav a {
    position: relative;
    color: #999;
    text-decoration: none;
    font-size: 1.0em;
    z-index: 2;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    transition: 0.5s;
}

nav a:active {
    color: #222327;
}

.menu-items {
    display: flex;
    justify-content: space-around;
}

input[type="checkbox"] {
    display: none;
}

@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.box {
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 2px 4px hsl(0 0% 0% / 25%);
    animation: border-angle-rotate 2s infinite linear;
    border: 2px solid transparent;
}

.box.a {
    background: transparent;
    border-image: conic-gradient(
      from var(--border-angle),
      oklch(100% 100% 0deg),
      oklch(100% 100% 45deg),
      oklch(100% 100% 90deg),
      oklch(100% 100% 135deg),
      oklch(100% 100% 180deg),
      oklch(100% 100% 225deg),
      oklch(100% 100% 270deg),
      oklch(100% 100% 315deg),
      oklch(100% 100% 360deg)
    ) 1;
    border-image-slice: 1;
}

@keyframes border-angle-rotate {
    from { --border-angle: 0deg; }
    to { --border-angle: 360deg; }
}

@property --border-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

a:hover {
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 2px 4px hsl(0 0% 0% / 25%);
    animation: border-angle-rotate 2s infinite linear;
    border: 2px solid transparent;
    background: transparent;
    border-image: conic-gradient(
      from var(--border-angle),
      oklch(100% 100% 0deg),
      oklch(100% 100% 45deg),
      oklch(100% 100% 90deg),
      oklch(100% 100% 135deg),
      oklch(100% 100% 180deg),
      oklch(100% 100% 225deg),
      oklch(100% 100% 270deg),
      oklch(100% 100% 315deg),
      oklch(100% 100% 360deg)
    ) 1;
    border-image-slice: 1;
    padding-right: 20px;
}

header {
    padding: 0;
}

.seo-h2 {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

h1 {
    color: rgba(255, 255, 255, 0.441);
}

ul {
    list-style-type: none;
}

#hero {
    position: relative;
    height: auto;
    min-height: 100vh;
    background: transparent;
    color: rgba(255, 255, 255, 0.444);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: visible;
    padding-bottom: 100px;
}

#animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.btn {
    text-decoration: none;
    border: none;
}

.btn:hover {
    border: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 200px;
}

#services {
    padding: 2rem;
    text-align: center;
}

/* Section plateformes */
#platforms {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#platforms h2 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

#platforms ul li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
}

footer {
    background: rgba(51, 51, 51, 0.732);
    color: white;
    text-align: center;
    padding: 1rem 0;
}

.fade-in {
    animation: fadeIn 2s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.pulse {
    animation: pulse 1.5s infinite;
    background-color: #ed10cf2d;
    border: none;
    color: rgba(255, 255, 255, 0.475);
    padding: 1rem 2rem;
    margin-top: 1rem;
    cursor: pointer;
    font-size: 1.2rem;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* media query 968px */
@media (max-width: 968px) {
    .navbar { opacity: 0.95; }

    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines { display: block; }

    .navbar-container {
        display: block;
        position: relative;
        height: 64px;
    }

    .navbar-container input[type="checkbox"] {
        position: absolute;
        display: block;
        height: 32px;
        width: 30px;
        top: 20px;
        left: 20px;
        z-index: 5;
        opacity: 0;
    }

    .navbar-container .hamburger-lines {
        display: block;
        height: 23px;
        width: 35px;
        position: absolute;
        top: 17px;
        left: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-container .hamburger-lines .line {
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: #333;
    }

    .navbar-container .hamburger-lines .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.4s ease-in-out;
    }

    .navbar-container .hamburger-lines .line2 {
        transition: transform 0.2s ease-in-out;
    }

    .navbar-container .hamburger-lines .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.4s ease-in-out;
    }

    .navbar .menu-items {
        height: 70vh;
        max-width: 200px;
        transform: translate(-300%);
        display: flex;
        flex-direction: column;
        padding-left: 50px;
        transition: transform 0.5s ease-in-out;
        border: #222327 solid 2px;
        background: #2d2c2cb8;
    }

    .navbar .menu-items li {
        margin-bottom: 1.5rem;
        font-size: 0rem;
        font-weight: 200;
    }

    .navbar-container input[type="checkbox"]:checked ~ .menu-items {
        transform: translateX(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
        transform: rotate(35deg);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
        transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
        transform: rotate(-35deg);
    }

    nav a {
        position: relative;
        color: #999;
        text-decoration: none;
        font-size: 0.7em;
        z-index: 2;
        height: 75px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 30px;
        transition: 0.5s;
    }
}

/* media query 500px */
@media (max-width: 500px) {
    html { font-size: 65%; }

    .navbar .menu-items li { font-size: 1.6rem; }

    .testimonial-container { flex-direction: column; text-align: center; }

    .food-menu-container img { margin: auto; }

    .food-menu-item { flex-direction: column; text-align: center; }

    .form-container { width: 90%; }

    .contact-container { display: flex; flex-direction: column; }

    .contact-img { width: 90%; margin: 3rem auto; }

    .logo { position: absolute; top: 06px; right: 15px; font-size: 3rem; }

    .navbar .menu-items li { margin-bottom: 2.5rem; font-size: 1.8rem; font-weight: 500; }
}

/* media query 769px - 1200px */
@media (min-width: 769px) and (max-width: 1200px) {
    .img-container h3 { font-size: 1.5rem; }
    .img-container .btn { font-size: 0.7rem; }
}

@media (orientation: landscape) and (max-height: 500px) {
    .showcase-area { height: 50vmax; }
}