/*
Theme Name: FIFA Fullscreen Landing
Theme URI: https://example.com/
Author: OpenAI
Description: Minimal fullscreen landing page theme with a top bar and WordPress admin/login button.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: fifa-fullscreen
*/

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0d1f87;
    color: #fff;
}

.site-wrap {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-image {
    position: fixed;
    inset: 0;
    background-image: url('assets/hero.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 16px 22px;
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.admin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.94);
    color: #111;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.admin-button:hover,
.admin-button:focus {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.28);
    opacity: 0.98;
    color: #111;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px) {
    .hero-image {
        background-size: contain;
        background-color: #0d1f87;
    }

    .top-bar {
        padding: 12px 14px;
    }

    .admin-button {
        padding: 9px 14px;
        font-size: 13px;
    }
}
