/* 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 {
    --primary: #10b981;
    --primary-hover: #059669;
    --bg-main: #0a0a0a;
    --bg-surface: rgba(23, 23, 23, 0.7);
    --bg-card: rgba(28, 28, 28, 0.6);
    --text-main: #f8fafc;
    --text-muted: #a3a3a3;
    --glass-blur: blur(12px);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    scroll-behavior: smooth;
    line-height: 1.5;
}

body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Removed aggressive * white color to respect the theme hierarchy */

.container img {
    pointer-events: none;
}

.desc, p {
    color: var(--text-muted);
}

code {
    font-family:
        Menlo,
        Monaco,
        Lucida Console,
        Liberation Mono,
        DejaVu Sans Mono,
        Bitstream Vera Sans Mono,
        Courier New,
        monospace;
}

h1, h2, h3, h4, .studio {
    color: var(--text-main);
}

.navbar {
    position: sticky;
    top: 20px;
    width: calc(100% - 40px);
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 40px;
    height: 80px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    background-color: var(--bg-surface);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    z-index: -1;
}

.navbar .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.navbar .right {
    position: absolute;
    right: 50px;
}

.navbar .logo {
    width: 60px;
    height: 60px;
    position: absolute;
    left: 50px;
    transition: var(--transition);
}

.navbar .logo:hover {
    cursor: pointer;
    transform: scale(1.05);
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.navbar a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.navbar a:hover {
    color: var(--primary);
}

.navbar a.btn_nav::after {
    content: '';
    position: absolute;
    height: 2px;
    left: 0;
    bottom: 0;
    width: 0;
    background: var(--primary);
    transition: width 0.3s ease;
}

.navbar a.btn_nav:hover::after,
.navbar a.btn_nav.active::after {
    width: 100%;
}

.navbar a.btn_nav.active {
    color: var(--primary);
}

.navbar .menuicon {
    display: none;
}

/* 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: var(--primary);
    display: inline-flex;
    min-width: 200px;
    height: 54px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    padding: 0 32px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
    transition: var(--transition);
    border: none;
}

.btn:hover {
    cursor: pointer;
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.6);
}

.btn h2 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
}

/* Slider */

.container {
    width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
}

.sliderw {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* Disable manual scroll */
    scrollbar-width: none;
}

.slider::-webkit-scrollbar {
    display: none;
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4);
    z-index: 1;
}

.slide .text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    padding: 2rem;
    pointer-events: none;
}

.slide .text h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin: 0;
    color: #fff;
    max-width: 1200px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
}

.slider-nav {
    display: flex;
    gap: 12px;
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-nav a {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.3;
    transition: var(--transition);
}

.slider-nav a.active {
    opacity: 1;
    transform: scale(1.3);
    background-color: var(--primary);
}

/* Home */

.front {
    padding: 80px 24px;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-main), transparent);
}

.front h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.home {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.home .left {
    text-align: left;
}

.home .left h1 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.home p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 20px;
    max-width: 600px;
}

.projet {
    padding: 100px 24px;
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.projet h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.projet p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.projet .text {
    color: var(--text-muted);
}

.skycase {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px;
    max-width: 1000px;
    margin: 0 auto 60px;
    transition: var(--transition);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.skycase:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
}

.skycase .skycaseimg1 {
    width: 100%;
    max-width: 800px;
    border-radius: 16px;
    display: block;
    margin: 32px auto 0;
    box-shadow: var(--shadow-lg);
}

.intothestars {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), transparent);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px 48px;
    max-width: 1000px;
    margin: 0 auto 100px;
    text-align: center;
}

.intothestars h2.text {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.intothestars p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.logobig {
    width: 100%;
    max-width: 480px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.2));
}

.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) {
    .navbar {
        height: 70px;
        top: 10px;
        width: calc(100% - 24px);
        margin: 0 auto;
        border-radius: 35px;
    }

    .navbar::before {
        border-radius: 35px;
    }

    .navbar .logo {
        position: relative;
        left: auto;
        margin-left: 20px;
        width: 50px;
        height: 50px;
    }

    .navbar ul {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 0;
    }

    .navbar a {
        font-size: 1.5rem;
    }

    .navbar .menuicon {
        display: flex;
        align-items: center;
        margin-right: 20px;
        margin-left: auto;
        cursor: pointer;
        z-index: 1001;
    }

    .navbar .menuicon img {
        width: 32px;
        height: 32px;
        filter: brightness(0) invert(1);
    }

    .navbar .buttons {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(10, 10, 10, 0.7); /* Lighter alpha since blur now works perfectly */
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
        z-index: 999;
    }

    .navbar .buttons.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar .right {
        position: relative;
        right: auto;
        margin: 0;
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }

    .home {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-bottom: 60px;
    }

    .home .left {
        text-align: center;
    }

    .front h1 {
        font-size: 2.25rem;
    }

    .container {
        height: 50vh;
    }

    .slide .text h1 {
        font-size: 1.75rem;
    }

    .skycase,
    .intothestars {
        padding: 32px 20px;
        margin: 0 16px 40px;
        border-radius: 16px;
    }

    .home .right .logobig {
        max-width: 280px;
    }

    .intothestars h2.text {
        font-size: 1.75rem;
    }

    .projet h1 {
        font-size: 2rem;
    }
}

/* Scroll Animations (Premium Fade-Up) */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Public Jobs & Application Form Styles */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    color: white;
}

.public-job-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.public-job-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.public-job-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.public-job-form input,
.public-job-form select,
.public-job-form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.public-job-form input:focus,
.public-job-form select:focus,
.public-job-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.public-job-form .checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.public-job-form .checkbox-wrap input {
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.public-job-form .error-message {
    padding: 12px;
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 10px;
    font-size: 0.9rem;
}

.category-tag {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
}

.job-breadcrumb {
    margin-bottom: 32px;
    display: inline-block;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.job-breadcrumb:hover {
    color: var(--primary-hover);
    transform: translateX(-4px);
}

.sticky-form {
    padding: 40px;
    border-radius: 24px;
    position: sticky;
    top: 100px;
}

