:root {
    --cabin-color: #f0f0f0;
    --window-rim-light: #ffffff;
    --window-rim-shadow: #d1d1d1;
    --sky-blue: #87CEEB;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--cabin-color);
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
    padding-bottom: 200px;
}


body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.03) 100%);
    pointer-events: none;
}

.windows-wrapper {
    display: flex;
    gap: 120px;
    perspective: 1000px;
    padding-top: 0;
}

.cabin-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 300px;
}

.window-frame {
    width: 260px;
    height: 400px;
    background-color: #e0e0e0;
    border-radius: 130px;
    padding: 20px;
    box-shadow:
        inset 2px 2px 5px rgba(255, 255, 255, 0.7),
        inset -2px -2px 5px rgba(0, 0, 0, 0.1),
        5px 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 0%, #dcdcdc 100%);
}

.window-glass {
    width: 100%;
    height: 100%;
    border-radius: 110px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.clouds-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    width: 120%;
    height: 120%;
    background-image: url('../img/Nubes.webp');
    background-size: auto 100%;
    background-repeat: repeat-x;
    animation: fly 300s linear infinite;
    filter: brightness(0.95) contrast(1.1);
}

.window-glass::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    border-radius: 110px;
}

.content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    color: white;
    font-weight: 500;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.button-sim {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.button-sim:hover {
    transform: scale(1.05);
    background-color: #fff;
}

/* Animation Keyframes */
@keyframes fly {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: -2000px;
    }
}



/* Responsive */
@media (max-width: 900px) {
    .windows-wrapper {
        /* flex-direction: column;
         */
        gap: 80px;
        transform: scale(0.7);
    }

}

/* Footer Styling */
.pixel-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.pixel-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    gap: 10px;
}

.pixel-logo {
    height: 30px;
    width: auto;
}

.pixel-text {
    font-weight: 500;
    font-size: 1rem;
    color: white;
}