/* Made by GeantWorld */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --accent: 136, 58, 234;
    --accent-light: 224, 204, 250;
    --accent-dark: 49, 10, 101;
    --accent-gradient: linear-gradient(
            45deg,
            rgb(var(--accent)),
            rgb(var(--accent-light)) 30%,
            white 60%
    );
}
html {
    font-family: system-ui, sans-serif;
    background: #363636;
    background-size: 224px;
}
body {
    margin: 0;
}

* {
    color: white;
}

.studio {
    color: white;
}

.container {
    color: white;
}

.container img {
    pointer-events: none;
}

.desc {
    color: white;
}

code {
    font-family:
            Menlo,
            Monaco,
            Lucida Console,
            Liberation Mono,
            DejaVu Sans Mono,
            Bitstream Vera Sans Mono,
            Courier New,
            monospace;
}
h1 {
    color: #ffff;
}
.navbar {
    position: sticky;
    top: 0px;
    width: 100%;
    height: 110px;
    z-index: 100;
    opacity: 1;
    display: flex;
    align-items: center;
    background-color: rgba(23, 23, 23, 0.5);
    backdrop-filter: blur(7.6px);
    -webkit-backdrop-filter: blur(7.6px);
    box-shadow: 0 4px 10.4px 0 rgba(0, 0, 0, 0.6);
}
.navbar .logo {
    width: 100px;
    height: 100px;
    margin-top: 5px;
    margin-left: 85px;
    transition: all 0.5s;
}

.navbar .logo:hover {
    cursor: pointer;
    transform: scale(1.2);
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 29px;
    text-shadow: 0 4px 9.4px rgba(0, 0, 0, 0.25);
    font-family: Inter;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    position: relative;
    width: auto;
}

.navbar .buttons .mobile-lang {
    display: none;
}

.navbar .right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar a {
    color: #ffffff;
    transition: .2s;
    cursor: pointer;
}

.navbar a:hover {
    color: #01660e;
}

.navbar a.btn_nav::before {
    content: '';
    position: absolute;
    height: 5px;
    left: 0;
    bottom: 0;
    width: 0;
    background: rgb(0, 97, 0);
    transition: width .6s ease-in-out;
}

.navbar a.btn_nav:hover:before, .navbar span.btn_nav.active::before {
    width: 100%;
}

.navbar a.btn_nav.active {
    color: #01660e;
}

.navbar .menuicon {
  visibility: hidden;
}

/* 404 page */
.notfound {
    text-align: center;
    text-decoration: none;
    width: auto;
}

.notfound .Button h2 {
    color: #000000;
}

.Button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: black;
}

.btn {
  background: #ffff;
  display: flex;
  width: 300px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  padding: 2px;
  text-decoration: none;
  color: #000000;
  box-shadow: 0px 1px 15px black;
  transition: all .5s;
}

.notfound .imgnf {
    align-items: center;
    justify-content: center;
    width: 250px;
    border-radius: 50px;

}

.btn:hover {
  cursor: pointer;
  transition: all .5s;
  background: #ffffff80;
  color: #000000;
}

.btn h2 {
    color: #000000;
}

/* Slider */

.container {
    width: auto;
    height: 60vh;
    position: relative;
}

.sliderw {
    margin: 0;
}

.slider {
    display: flex;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.slide {
    flex: 1 0 100%;
    scroll-snap-align: start;
    width: 100%;
    height: 60vh;
    object-fit: cover;
    object-position: center;
}

.slider::-webkit-scrollbar {
    display: none;
}

.slider img {
    flex: 1 0 100%;
    scroll-snap-align: start;
    width: 100%;
    height: 60vh;
    object-fit: cover;
    object-position: center;
}

.slider-nav {
    display: flex;
    column-gap: 1rem;
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.slider-nav a {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.75;
    transition: opacity ease 250ms;
}

.slider-nav a:hover {
    opacity: 1;
}

.slide {
    position: relative;
}

.slide img {
    display: block;
}

.slider-nav a {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    transition: opacity 0.3s, transform 0.3s;
}

.slider-nav a.active {
    opacity: 1;
    transform: scale(1.2);
}

.slide .text {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100vw;
    height: 100vh;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    background: rgba(0,0,0,0.3);
    padding: 0rem 1rem;
    text-align: center;
}

.slide .text h1 {
    margin-top: 20vh;
}

/* Home */

.front {
    margin-left: 25px;
    margin-right: 25px;
    text-align: center;
    align-content: center;
}

.home {
    margin-left: 25px;
    margin-right: 25px;
    display: flex;
}

.home .right {
    width: 50%;
    height: auto;
    text-align: center;
    align-content: center;
}

.home .left {
    width: 50%;
    height: auto;
    text-align: center;
    align-content: center;
}

.home p {
    color: white;
    font-size: 25px;
    font-family: Inter;
}

.projet {
    align-content: center;
    text-align: center;
    justify-content: center;
}

.projet p {
    color: white;
    font-size: 20px;
    font-family: Inter, serif;
}

.projet .text {
    color: white;
}

.projet .skycase .skycaseimg1 {
    width: 600px;
    border-radius: 25px;
    margin-bottom: 25px;
    margin-top: 25px;
    box-shadow: 0 4px 10.4px 0 rgba(0, 0, 0, 0.6);
}

.logobig {
    width: 480px;
    height: auto;
}

.StatusCard {
    flex: 1 1 25%;
    max-width: 50%;
    align-items: center;
    text-align: center;
    width: 50%;
    justify-content: center;
    background-color: #292929;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 50px;
    padding-bottom: 4px;
    padding-top: 4px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.StatusCard .uptime {
    color: white;
}

.StatusCard .name {
    color: white;
}

.StatusCard .state {
    color: white;
}

.titleStatus {
    margin-left: 25px;
}

.statusContainer {
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: flex-start;
}

/* studio page */

.studio {
    text-align: center;
}

.SkyCase .left {
    text-align: center;
    justify-content: center;
    width: 50%;
}

.SkyCase .right {
    width: 50%;
    position: absolute;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.SkyCase .left .skycaseimg {
  border-radius: 5%;
  width: 700px;
}

.studio .home {
    display: flex;
}

.SkyCase {
    display: flex;
    margin-top: 15px;
}

.language-switcher {
  display: flex;
  gap: 0.5rem;
}

.language-switcher a {
  font-size: 25px;
  opacity: 0.6;
  text-decoration: none;
}

.language-switcher a.active {
  font-weight: bold;
  opacity: 1;
}

.about {
    text-align: center;
    justify-content: center;
}

.skybeworld {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;             
  color: #fff;        
  text-align: center;
  padding: 1rem;
}

h3 {
    color: white;
}

@media screen and (max-width: 1000px) {
    html, body {
        overflow-x: hidden;
    }

    .home {
        display: inline-block;
    }

    .navbar {
    position: sticky;
    top: 0px;
    width: 100%;
    height: 110px;
    z-index: 100;
    opacity: 1;
    display: flex;
    align-items: center;
    background-color: rgba(23, 23, 23, 0.5);
    backdrop-filter: blur(7.6px);
    -webkit-backdrop-filter: blur(7.6px);
    box-shadow: 0 4px 10.4px 0 rgba(0, 0, 0, 0.6);
    }

    .navbar .logo {
        width: 100px;
        height: 100px;
        margin-top: 5px;
        margin-left: 35px;
        transition: all 0.5s;
    }

    .navbar .buttons {
    top: 100px;
    left: 0;
    position: absolute;
    background-color: rgba(23, 23, 23, 0.7);
    width: 100%;
    height: 500%;
    display: flex;
    opacity: 1;
    justify-content: center;
    -webkit-backdrop-filter: blur(7.6px);
    backdrop-filter: blur(7.6px);
    transform: translateX(200%);
    transition: all 0.3s ease;
    z-index: 999;
    }
    
    .navbar .buttons.open {
        transform: translateX(0);
    }

    .navbar ul {
    display: flex;
    flex-direction: column;
    text-align: center;
    }

    .navbar .menuicon {
    visibility: visible;
    position: absolute;
    top: 38px;
    right: 35px;
    }

    .navbar .menuicon img {
        width: 50px;
    }

    .navbar .right {
        visibility: hidden;
    }

    .navbar .buttons .mobile-lang {
        display: block;
        margin-top: 1rem;
        text-align: center;
    }

    .language-switcher {
        justify-content: center;
    }

    .container {
        width: auto;
        height: 45vh;
        position: relative;
    }

    .slider img {
        flex: 1 0 100%;
        scroll-snap-align: start;
        width: 100%;
        height: 45vh;
        object-fit: cover;
        object-position: center;
    }

    .slide {
        flex: 1 0 100%;
        scroll-snap-align: start;
        width: 100%;
        height: 45vh;
        object-fit: cover;
        object-position: center;
    }

    .slide .text h1 {
        font-size: 35px;
        margin-top: 14vh;
        margin-right: 5vw;
    }

    .home {
        margin: 0;
        width: 100%;
    }
    
    .home .left {
        width: 100%;
        text-align: center;
        align-content: center;
    }

    .home .right {
        width: 100%;
    }

    .home .right .logobig {
        width: 350px;
    }

    .projet .skycase .skycaseimg1 {
        width: 354px;
        border-radius: 15px;
    }

    .StatusCard {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .SkyCase {
        display: inline-block;
    }

    .SkyCase .left {
        width: 100%;
    }

    .SkyCase .right h2 {
        font-size: 17px;
    }
    
    .SkyCase .left .skycaseimg {
        border-radius: 5%;
        width: 330px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .SkyCase .right {
        width: 100%;
    }

    .Anightmare {
        width: 100%;
    }

    .nightmareText {
        margin-top: 500px;
    }

    .studio .home {
        display: inline-block;
    }

    .studio .home .left {
        width: 100%;
    }

    .studio .home .right {
        width: 100%;
    }

    .studio .home .right .logo {
        width: 350px;
    }
}