:root {
    /* Palette */
    --color-bg-dark: #0a1128;   /* Deep Royal Blue */
    --color-bg-light: #f4f4f9;  /* Noble White */
    --color-gold: #c5a059;      /* Classic Gold */
    --color-gold-hover: #dbc184;
    --color-text-main: #1a1a2e;
    --color-text-light: #e6e6e6;
    --color-accent-red: #8b0000; /* For warnings if needed */
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Roboto', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-light);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* --- Container --- */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* --- Utilities --- */
.text-gold { color: var(--color-gold); }
.text-center { text-align: center; }
.bg-dark { background-color: var(--color-bg-dark); color: white; }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.3s;
}

.btn-gold {
    background: linear-gradient(135deg, #b8860b 0%, #c5a059 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.6);
}

.btn-outline-gold {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-outline-gold:hover {
    background-color: var(--color-gold);
    color: white;
}

/* --- Header --- */
header {
    background-color: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(10px);
    height: var(--header-height);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo img {
    height: 50px;
    width: auto;
}

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

.nav-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--color-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 17, 40, 0.8), rgba(10, 17, 40, 0.6)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--color-bg-light), transparent);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 300;
}

/* --- Features / Mission --- */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--color-bg-dark);
}

.section-title .divider {
    width: 80px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 0 auto;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.card {
    background: white;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-top: 3px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    border-top-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 25px;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.card p {
    color: #666;
    font-size: 0.95rem;
}

/* --- Stats --- */
.stats-section {
    background-color: var(--color-bg-dark);
    color: white;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* --- Footer --- */
footer {
    background-color: #050914;
    color: #888;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

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

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
}

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

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

.footer-col a {
    color: #888;
}

.footer-col a:hover {
    color: var(--color-gold);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
}

/* --- Mobile --- */
@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        display: none; /* simple hidden for now, need burger later */
    }
}
