/*
Theme Name: Elite POV
Theme URI: https://elitepov.com
Author: EliptePOV Team
Description: A custom, high-performance foundation built from scratch.
Version: 1.0.1
Text Domain: elitepov.com
*/

/* Add your global reset or foundational CSS variables here */
:root {
    --primary-color: #0073aa;
    --text-color: #ffffff;
    --bg-color: #000000;
    --primary-text-color: #ffffff;
    --font-primary: "Helvetica Neue", Helvetica, Arial, "Inter", sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    background-color: var(--bg-color);
    font-family: var(--font-primary);
}

/* 1. Force the Header to overlay over the Content Layer */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999; /* Ensures header sits safely above the hero text and overlay layers */
    background: transparent; /* Seamless blend */
}

/* 2. Global Container Sizing */
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 4%;
    box-sizing: border-box;
}

/* 3. Branding/Logo Styling */
.site-branding .site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.site-branding .site-title a {
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
}

/* 4. Horizontal Inline Navigation Blueprint */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding-top: 20px;
    display: flex;
    gap: 30px; /* Clean spacing between links */
}

.main-navigation ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.main-navigation ul li a:hover {
    opacity: 0.8;
}



