/* NEXUS THEME - V7.0 */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Lato:wght@300;400;700&display=swap');

:root {
    --primary: #d4af37; /* Gold */
    --primary-glow: rgba(212, 175, 55, 0.4);
    --secondary: #1a1a2e; /* Dark Blue */
    --accent: #e94560; /* Red/Pink */
    --text: #f0f0f0;
    --glass: rgba(10, 10, 15, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    background-color: #050505;
    background-image: url('../img/v5/local_bg.jpg?v=99');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    color: var(--text);
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--primary-glow);
    text-decoration: none;
}

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 60px 0;
    position: relative;
}

/* --- Header --- */
.nexus-header {
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0));
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 0 15px var(--primary-glow);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #fff;
}

/* --- Hero Section --- */
.hero-section {
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    background: -webkit-linear-gradient(#fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.8));
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    font-weight: 300;
}

.btn-nexus {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: #000;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-transform: uppercase;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    transition: transform 0.2s, background 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    width: auto;
}

.btn-nexus:hover {
    transform: scale(1.05);
    background: #fff;
    color: #000;
    box-shadow: 0 0 30px var(--primary-glow);
}

.btn-nexus-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 13px 38px;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s;
}

.btn-nexus-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #fff;
    border-color: #fff;
}

/* --- Forms --- */
.nexus-input {
    width: 100%;
    background: rgba(0,0,0,0.5);
    border: 1px solid #333;
    color: #fff;
    padding: 12px;
    margin-bottom: 15px;
    font-family: 'Lato', sans-serif;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.nexus-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0,0,0,0.8);
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

/* --- Content Cards --- */
.nexus-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.nexus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}

.card-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

/* --- Footer --- */
.nexus-footer {
    background: #000;
    border-top: 1px solid #222;
    padding: 50px 0;
    text-align: center;
    color: #666;
}

/* --- Helpers --- */
.text-gold { color: var(--primary); }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1.5rem; }
.text-center { text-align: center; }

/* --- Grid System --- */
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col-12 { width: 100%; padding: 0 15px; box-sizing: border-box; }
.col-8 { width: 66.666%; padding: 0 15px; box-sizing: border-box; }
.col-4 { width: 33.333%; padding: 0 15px; box-sizing: border-box; }
.col-6 { width: 50%; padding: 0 15px; box-sizing: border-box; }
.m-auto { margin-left: auto; margin-right: auto; }

@media(max-width: 768px) {
    .col-8, .col-4, .col-6 { width: 100%; }
    .nav-links { display: none; } /* Mobile hidden for now */
    .hero-title { font-size: 2.5rem; }
}
