/* 1. Global Reset */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: #ffffff; /* Matches the white/mist in your image */
    overflow: hidden;         /* Prevents accidental scrollbars */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* 2. Background Image Container */
.full-screen-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    
    /* Image setup */
    background-image: url('ocean.jpg'); /* Ensure your file is named ocean.jpg */
    background-position: center;
    background-repeat: no-repeat;
    
    /* Desktop: Zoom slightly (115%) to hide the green bars on the sides */
    background-size: cover; 
    
    /* Entrance Fade */
    animation: fadeInAnimation ease 3s;
    animation-fill-mode: forwards;
    z-index: 1;
}

/* 3. Footer Styling */
/* ... keep your existing body and .full-screen-bg code ... */

/* ... keep your existing body and .full-screen-bg code ... */

footer {
    position: absolute;
    /* This moves it 25% of the way up from the bottom of the screen */
    bottom: 25vh; 
    
    width: 100%;
    text-align: center;
    z-index: 10;
    
    color: #000000;
    font-size: 13px;
    letter-spacing: 0.5px;
    line-height: 1.6;
    
    /* Helps text pop against the ocean water/mist */
    text-shadow: 0px 0px 8px rgba(255,255,255,0.8);

    /* Entrance Fade */
    animation: fadeInAnimation ease 4s;
}

footer b {
    font-weight: 700;
    display: block; 
    margin-top: 5px;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    footer {
        font-size: 11px;
        /* Keeps it at 25% height on mobile too */
        bottom: 25vh; 
    }
}