:root {
    /* Brand Colors */
    --brand-primary: #5eead4;    /* Example: Flames-inspired Orange/Red */
    --brand-dark: #1a1a1a;
    --brand-light: #f8f9fa;
    
    /* Typography */
    --font-main: 'Raleway';
    --font-heading: 'Raleway';
    
    /* Backgrounds */
    --bg-page: #ffffff;
    --text-main: #333333;

    /* Brand Colors */
    --color-black: #0d0d0d;        /* Deepest background */
    --color-grey-dark: #1a1a1a;   /* Surface/Tile color */
    --color-grey-light: #333333;  /* Border/Highlight color */
    
    /* Neon Accents */
    --color-seafoam: #5eead4;     /* Primary Accent */
    --color-neon-purple: #a855f7; /* Secondary Accent */
    --color-neon-glow: rgba(94, 234, 212, 0.3); /* Seafoam glow */

    /* Typography */
    --text-primary: #f3f4f6;      /* Off-white for readability */
    --text-muted: #9ca3af;        /* Grey for secondary text */
}

.header {
    position: fixed;
    top: 0;
    display: flex;
    width: 100%;
    z-index: 10;
    background: transparent;
    gap: min(1vw, 1rem);
    padding: min(2rem, 2%);
}

.logo{
    display: flex;
}

.logo img {
    width: min(8vw, 50px);
    filter: drop-shadow(0 0 15px #FFF);
}

.banner {
    display: flex;
    align-items: center;
}

.banner a {
    font-size: min(5vw, 1.5rem);
    text-shadow: 0 0 30px #FFF;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #000;
}

.parallax-container {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto; /* The actual scroll happens here */
    
    /* The 3D Lens */
    perspective: 1px;
    perspective-origin: center center;
    transform-style: preserve-3d; 
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* This height ensures the background spans the entire length of your content */
    height: 100%; 
    min-height: 100vh;
    
    background-image: url('/media/3popgprt/web-background.png');
    background-size: cover;
    background-position: top center; /* Keeps the 'Hero' part of the image visible first */
    
    transform: translateZ(-1px) scale(2);
    transform-origin: center center;
    z-index: -1;
}

.parallax-content {
    position: relative;
    z-index: 1;
    /* No translateZ needed; default is 0 */
    background: transparent; 
}

h1, h2, .logo {
    color: var(--color-seafoam);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1, h2, h3, h4 {
    font-family: 'Roboto';
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

* {
    box-sizing: border-box;
}

a {
    color: #FFF;
    font-family: 'Roboto';
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    filter: brightness(1.2);
}

.hero-header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    background-color: transparent;
    margin: -2rem; /* Offsets master padding */
    width: calc(100% + 4rem);
}

.hero-container {
    text-align: center;
}

.hero-row-top {
    display: flex;
    justify-content: center;
    align-items: baseline; 
    gap: 1rem;
}

.hero-row-bottom {
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    gap: 1rem;
}

.brand-highlight {
    font-family: 'Raleway', sans-serif;
    font-size: min(10vw, 4rem); 
    font-weight: 900;
    color: var(--color-seafoam);
    line-height: 1;
    text-shadow: 0 0 30px var(--color-neon-glow);
}

.hero-text {
    font-family: 'Raleway', sans-serif;
    font-size: min(5vw, 2rem); 
    font-weight: 300;
    color: #a0a0a0;
    line-height: 1;
}

::selection {
    background: var(--color-seafoam);
    color: var(--color-black);
}
