:root {
    /* Color Palette */
    --forest-green: #1E352F;
    --forest-green-light: #2E4F45;
    --redwood-brown: #5B3A29;
    --redwood-brown-light: #7B5146;
    --muted-gold: #D4AF37;
    --muted-gold-light: #BFA25C;
    --fog-gray: #CED3D6;
    --fog-gray-dark: #9BA1A4;
    --magic-violet: #3F2A56;
    --magic-violet-light: #5C3E77;
    
    /* UI Palette */
    --bg-dark: #0f1a17;
    --text-light: #f0f2f1;
    --text-muted: #9BA1A4;
    --accent: var(--muted-gold);
    --glass-bg: rgba(30, 53, 47, 0.7);
    --glass-border: rgba(212, 175, 55, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Lora', serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .nav-logo {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Base Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    color: var(--muted-gold);
    text-decoration: none;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--muted-gold);
}

/* Fog Overlay */
.fog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(to right, rgba(206, 211, 214, 0.05), transparent, rgba(206, 211, 214, 0.05));
    opacity: 0.5;
    animation: fogPulse 8s ease-in-out infinite alternate;
}

@keyframes fogPulse {
    from { opacity: 0.3; }
    to { opacity: 0.6; }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--muted-gold);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--muted-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--muted-gold);
    border: 1px solid var(--muted-gold);
}

.btn-outline:hover {
    background-color: var(--muted-gold);
    color: #000;
}

/* Footer */
footer {
    background-color: #080d0c;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--muted-gold);
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.social-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
}

.mailing-list-form {
    display: flex;
    gap: 0.5rem;
}

.mailing-list-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 0.8rem;
    color: var(--text-light);
    flex: 1;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* In a real app we'd add a hamburger menu */
    }
    .container {
        padding: 0 1.5rem;
    }
}
