:root {
    --bg-deep-black: #050505;
    --bg-charcoal: #111111;
    --text-soft-white: #f0f0f0;
    --text-muted: #aaaaaa;
    --accent-gold: #d4af37;
    --accent-gold-glow: rgba(212, 175, 55, 0.4);
    --timeline-glow: rgba(255, 255, 255, 0.1);
    
    --font-heading: 'Cinzel', serif; /* Represents authority and timelessness */
    --font-body: 'Inter', sans-serif; /* Represents clarity and modernity */
    
    --transition-smooth: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-deep-black);
    color: var(--text-soft-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

a {
    color: var(--text-soft-white);
    text-decoration: none;
    transition: color var(--transition-smooth);
}

a:hover {
    color: var(--accent-gold);
}

/* Base Layout & Utilities */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 100px 0;
}

.gold-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation - Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: all var(--transition-smooth);
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    text-transform: uppercase;
}

.logo span {
    font-size: 0.8rem;
    font-family: var(--font-body);
    color: var(--text-muted);
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-gold);
    transition: width var(--transition-smooth);
}

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

/* Standard Footer */
footer {
    background-color: var(--bg-charcoal);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links h3, .footer-contact h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--text-soft-white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-contact a {
    color: var(--accent-gold);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    transition: all var(--transition-smooth);
}

.social-icons a:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
}

.social-icons svg {
    width: 18px;
    fill: var(--text-soft-white);
    transition: fill var(--transition-smooth);
}

.social-icons a:hover svg {
    fill: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.creaa-link {
    color: var(--accent-gold);
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Timeline specific globals */
.timeline-track {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--timeline-glow), var(--accent-gold), transparent);
    left: 50px;
    z-index: 0;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
    }
}
