@charset "utf-8";
/* CSS Document */

/* Basic reset for better consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set up the background */
body {
    background-image: url('PICS/jflix_background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif; /* Using a more modern, bold font if available */
    color: #fff; /* Default text color for general content */
}

/* Container for the logo and button */
.splash-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* Styling for the main image */
.jflix-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 50px; /* Increased space for visual balance */
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.7)); /* Subtle glow for the logo */
}

/* Styling for the 'Enter' button - UPDATED */
.enter-button {
    display: inline-block;
    padding: 18px 50px; /* Slightly larger padding */
    
    /* Gradient to mimic metallic/3D look from the J-Flix logo */
    background: linear-gradient(145deg, #a00000 0%, #ff0000 50%, #d00000 100%);
    
    color: #ffffff;
    text-decoration: none;
    font-size: 1.6em; /* Slightly larger text */
    font-weight: 800; /* Extra bold */
    letter-spacing: 2.5px; /* Increased letter spacing */
    text-transform: uppercase; /* All caps */
    
    border: none; /* Remove default border */
    border-radius: 8px; /* Slightly more rounded corners */
    
    /* Stronger 3D effect with multiple box shadows */
    box-shadow: 
        0 8px 15px rgba(0, 0, 0, 0.4), /* Main shadow for lift */
        0 0 20px rgba(255, 0, 0, 0.8), /* Red glow */
        inset 0 2px 5px rgba(255, 255, 255, 0.3), /* Top highlight for sheen */
        inset 0 -3px 5px rgba(0, 0, 0, 0.5); /* Bottom shadow for depth */
    
    /* Add a subtle text shadow for clarity against the gradient */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    
    /* Animation for hover state */
    transition: all 0.2s ease-in-out;
    
    /* Ensure the button has a slightly raised feel */
    transform: translateY(0);
}

/* Hover effect for the updated button */
.enter-button:hover {
    /* Adjust gradient slightly or add a stronger highlight */
    background: linear-gradient(145deg, #c00000 0%, #ff3333 50%, #e00000 100%);
    
    /* Stronger glow and slight lift */
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.5), 
        0 0 30px rgba(255, 50, 50, 1), /* Brighter red glow */
        inset 0 3px 6px rgba(255, 255, 255, 0.4),
        inset 0 -4px 6px rgba(0, 0, 0, 0.6);
        
    transform: translateY(-2px) scale(1.02); /* Lift and slightly enlarge */
    cursor: pointer;
}

/* Active (click) state for the updated button */
.enter-button:active {
    transform: translateY(2px) scale(0.98); /* Press down effect */
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.3), /* Less pronounced shadow */
        0 0 15px rgba(255, 0, 0, 0.6),
        inset 0 1px 3px rgba(255, 255, 255, 0.2),
        inset 0 -2px 3px rgba(0, 0, 0, 0.4);
}