/* COLORS - PURGED OF BLUE */

:root {
    --bg-color: #000000;        /* Pure Black */
    --gold: #d4af37;
    --box: #111111;             /* Very Dark Grey (No blue tint) */
    --border-color: #222222;    /* Subtle grey for lines */
    --text-light: #ffffff;
    --text-muted: #a0a0a0;      /* For paragraphs */

    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;

    --container-width: 1000px;
}

* {
    box-sizing: border-box;
}

/* Logo Sizing */
.main-logo {
    max-width: 350px; /* INCREASE or DECREASE this number to get the perfect size */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 1rem 0;
}

/* Typography */

body {
    font-family: "Oswald", sans-serif;
    background-color: var(--bg-color);
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

header a {
    color: var(--gold);
    text-decoration: none;
}

/* Navigation - FIXED: No more blue */

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #000000; /* Pure black background */
    border-bottom: 1px solid var(--gold);
}

nav a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

nav a:hover {
    color: white;
    text-shadow: 0 0 8px var(--gold);
}

.active {
    border-bottom: 2px solid var(--gold);
}

/* Section Styling - "Stealth" Look */

section {
    max-width: var(--container-width);
    margin: var(--space-lg) auto;
    padding: var(--space-md);
    background-color: var(--box); /* Dark grey box */
    color: var(--text-light);
    border: 1px solid var(--border-color); /* No blue in border */
    border-radius: 4px; /* Sharper, professional corners */
}

h1 {
    text-align: center;
    font-size: 3rem;
    margin: var(--space-md);
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 0.5rem;
    display: inline-block;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted); /* Less harsh than pure white */
}

/* Buttons */

.btn-gold {
    background-color: var(--gold);
    color: var(--bg-color);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.2s ease;
    border: none;
    cursor: pointer;
}

btn-gold:hover {
    transform: translateY(-2px);
    background-color: #f1c40f; /* Brighter gold on hover */
}

/* Images & Tables */

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    filter: grayscale(20%); /* Makes photos look more "serious" */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background-color: #000;
}

th, td {
    padding: 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

thead {
    background-color: #111;
    color: var(--gold);
}

tbody tr:nth-child(even) {
    background-color: #080808; /* Darker stripe, not blue */
}

/* Form Styling */
fieldset {
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

legend {
    color: var(--text-light);
    font-weight: bold;
    padding: 0 0.8rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.checkbox-label {
    color: var(--text-light);
    text-transform: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    cursor: pointer;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select {
    width: 100%;
    padding: 12px;
    margin-bottom: 1.5rem;
    background-color: #000000;
    color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    transition: border 0.3s ease;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}