/* --- New Metallic Color Palette --- */
:root {
    --primary-bg-color: #1a1a1a; /* Dark Metallic Grey from the logo background */
    --light-bg-color: #2a2a2a; /* Lighter grey for contrast (e.g., cards) */
    --accent-color: #b59a67; /* Brushed Gold from the VL icon */
    --text-color: #ffffff; /* White for body text */
    --title-color: #d3d3d3; /* Silver for headings */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--primary-bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Merriweather', serif;
    color: var(--title-color);
}

a {
    text-decoration: none;
    color: var(--text-color); /* Links are white */
    transition: color 0.3s;
}

a:hover {
    color: var(--accent-color); /* Hover to Gold */
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
}

.section-padding {
    padding: 4rem 0;
}

.text-center {
    text-align: center;
}

/* Background classes now use dark and lighter grey */
.bg-light {
    background-color: var(--light-bg-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* --- Header & Nav (Now Dark) --- */
/* --- Clean Header & Nav --- */
.site-header {
    background: var(--primary-bg-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.flex-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-link {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color) !important; /* This shows your name in Gold */
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav li {
    margin-left: 20px;
}

.main-nav a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* --- Hero Section --- */
/* --- Updated Hero Section with YOUR Logo --- */
/* --- Hero Section with Foreground Logo --- */
/* --- Centered Hero Section --- */
/* --- Clean Hero Section - Background Image Removed --- */
/* --- Hero Section - Background Image DELETED --- */
/* --- Centered Hero Section --- */
.hero {
    /* Solid background color - ensuring the ghost logo is gone */
    background: #1a1a1a !important; 
    background-image: none !important;
    
    height: 80vh;
    display: flex;
    align-items: center;      /* Centers vertically */
    justify-content: center;   /* Centers horizontally */
    text-align: center;
    color: var(--text-color);
}

.hero-content {
    display: flex;
    flex-direction: column;    /* Stacks logo over text */
    align-items: center;      /* Centers the children (logo, h2, p) */
    width: 100%;
    max-width: 900px;
}

.hero-logo-wrapper {
    margin-bottom: 30px;      /* Space between logo and headline */
}

.foreground-logo {
    max-width: 400px;         /* Adjust this to change logo size */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;           /* Redundant centering for safety */
}
}
.hero h2 {
    margin-bottom: 15px;
    font-size: 2.8rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* --- Buttons (Now Gold) --- */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.btn-primary {
    background: var(--accent-color);
    color: #ffffff; /* Button text is white */
}

.btn-primary:hover {
    background: #a3895e; /* A slightly darker gold */
}

/* --- Grid & Cards (Now Dark Grey) --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--light-bg-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Darker shadow */
    border-top: 4px solid var(--accent-color); /* Card top is gold */
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* --- Forms (Dark) --- */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--light-bg-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #4a4a4a; /* Subtle dark border */
    border-radius: 4px;
    font-family: inherit;
    background-color: var(--primary-bg-color);
    color: var(--text-color);
}

/* --- Footer (Dark) --- */
.site-footer {
    background: var(--primary-bg-color);
    color: var(--text-color);
    padding: 3rem 0 1rem;
    text-align: center;
}

.site-footer h3 {
    color: var(--title-color);
    text-shadow: 1px 1px 2px rgba(181, 154, 103, 0.2); /* Subtle gold glow on footer title */
}

.copyright {
    margin-top: 2rem;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
}