/* Custom styles for the misty, clouded atmosphere */
body {
    font-family: 'Exo 2', sans-serif;
    background-color: #0c0a18; /* Deep indigo background */
    overflow: hidden; /* Prevent scrollbars from parallax effect */
}

#scene {
    position: relative;
    width: 100vw;
    height: 100vh;
    perspective: 1000px; /* Adds depth for 3D transforms */
}

.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.1s ease-out; /* Smooths the parallax movement */
}

/* Styling for the cloud/mist elements */
.mist {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.mist-1 {
    background-image: radial-gradient(circle at 15% 20%, rgba(108, 99, 255, 0.15) 0%, transparent 40%);
}
.mist-2 {
    background-image: radial-gradient(circle at 80% 30%, rgba(76, 29, 149, 0.12) 0%, transparent 35%);
}
.mist-3 {
    background-image: radial-gradient(circle at 50% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}
.mist-4 {
     background-image: radial-gradient(circle at 90% 95%, rgba(167, 139, 250, 0.18) 0%, transparent 45%);
}

/* Glassmorphism effect for the content box */
.content-box {
    background: rgba(15, 12, 35, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Button glow effect */
.btn-glow {
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(167, 139, 250, 0), 0 0 10px rgba(167, 139, 250, 0);
}
.btn-glow:hover {
    box-shadow: 0 0 15px rgba(167, 139, 250, 0.6), 0 0 25px rgba(167, 139, 250, 0.4);
    transform: translateY(-2px);
}

/* Styles for the "Still Cooking" message */
.cooking-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    padding: 1.5rem 2.5rem;
    border-radius: 1rem;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
    /* Applying the same glassmorphism effect */
    background: rgba(25, 22, 55, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #e0d9ff;
    font-size: 1.125rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cooking-modal.show {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}
