/* Import Playfair Display directly from Google Fonts */
@import url('https://googleapis.com');

/* Reset and enforce seamless fullscreen layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #010610; /* Dark midnight ocean abyss */
    color: #39AED1
    
    /* Configures Playfair Display as your primary typeface */
    font-family: 'Playfair Display', Georgia, Cambria, "Times New Roman", Times, serif;
}

/* The water canvas serves as a true background layer */
canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1; /* Sits beneath content layers */
}

/* UI Overlay Container centered vertically and horizontally */
.overlay-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* Sits cleanly on top of the water canvas */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo styling and presentation wrapper */
.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* Forces Google Chrome to draw content on top of the Canvas layer */
    will-change: transform;
    transform: translateZ(0); 
}

.main-logo {
    max-width: 50%; /* Scaled up layout width */
    width: 100%;
    height: auto;
    display: block;
    /* Soft shadow to pop the asset away from dark water ripples */
    filter: drop-shadow(0px 8px 24px rgba(0, 0, 0, 0.6)); 
}
