/* --- Reset and Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050507; /* Very deep charcoal/black */
    color: #e0e0e0; /* Soft off-white text */
    font-family: 'Lora', serif;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- The Background Canvas --- */
#ember-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensures it stays behind the content */
    pointer-events: none;
}

/* --- Main Layout Container --- */
.main-container {
    width: 90%;
    max-width: 1200px;
    margin: 2rem auto;
    text-align: center;
    padding: 2rem;
}

/* --- Typography & Header --- */
.site-header {
    margin-bottom: 3rem;
}

.brand-title {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 4rem;
    letter-spacing: 0.2em;
    color: #ffffff;
    /* A subtle red text shadow to make it pop */
    text-shadow: 0 0 15px rgba(220, 20, 60, 0.6);
    margin-bottom: 0.5rem;
}

.subtitle {
    font-style: italic;
    color: #a0a0a0;
    font-size: 1.1rem;
}

/* --- The Art Showcase (The Core) --- */
.art-showcase {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.image-wrapper {
    position: relative;
    max-width: 700px; /* Prevents the image from getting too large on huge screens */
    width: 100%;
    border-radius: 4px;
    /* This creates the deep red glowing "frame" behind the image */
    box-shadow: 0 10px 40px -10px rgba(167, 15, 40, 0.5),
                0 0 80px -20px rgba(0, 0, 0, 0.8) inset;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    /* Slight filter to ensure it blends perfectly with the dark bg */
    filter: contrast(1.05) brightness(0.95);
    transition: transform 0.5s ease, filter 0.5s ease;
}

/* Subtle interactive hover effect */
.image-wrapper:hover .hero-image {
    transform: scale(1.02);
    filter: contrast(1.1) brightness(1);
}

/* Optional: A vignette overlaid on the image edges to blend it further */
.vignette-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 50px 20px #050507;
    pointer-events: none;
    border-radius: 4px;
}

/* --- Footer --- */
.site-footer {
    font-size: 0.8rem;
    color: #777;
    margin-top: auto;
}

/* --- Animations --- */
.fade-in {
    animation: fadeInAnimation 1.5s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInAnimation {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .brand-title {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }
    
    .main-container {
        padding: 1rem;
        margin: 1rem auto;
    }
}