/*
Theme Name: Black Anvil Cinematic
Theme URI: https://blackanvil.com
Author: Black Anvil Productions
Description: A high-impact, custom cinematic theme and secure investor portal.
Version: 1.0
*/

:root {
    --primary-gold: #c5a059;
    --bg-dark: #0a0a0a;
    --glass: rgba(255, 255, 255, 0.05);
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-dark);
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    opacity: 0.5;
    transition: background-image 0.8s ease-in-out;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, var(--bg-dark) 100%);
    z-index: -1;
}

header {
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo {
    font-size: 2rem;
    letter-spacing: 6px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 5px;
}

.investor-btn {
    background: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}

.investor-btn:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

.content {
    height: 55vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
}

.status-tag {
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

h1 {
    font-size: 4.5rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    transition: all 0.3s ease;
}

.film-strip {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    background: var(--glass);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 10;
}

.film-item {
    flex: 1;
    padding: 25px 10px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s background;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.film-item:last-child {
    border-right: none;
}

.film-item:hover {
    background: rgba(255,255,255,0.1);
}

.film-item:hover h3 {
    color: var(--primary-gold);
}

.film-item h3 {
    margin: 0;
    font-size: 0.75rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s color;
}