:root {
    --primary-color: #9b2226;
    /* Ruby Red */
    --secondary-color: #ca6702;
    /* Burnt Orange */
    --accent-color: #e9d8a6;
    /* Vanilla/Cream */
    --background-color: #fdfcf0;
    /* Ivory/Warm White */
    --text-color: #3d2b1f;
    /* Dark Coffee */
    --white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

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

.site-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin-left: 20px;
}

nav a {
    color: var(--text-color);
    font-weight: 600;
}

nav a:hover {
    color: var(--secondary-color);
}

/* Logo */
.site-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo {
    height: 50px;
    margin-right: 15px;
    width: auto;
}

/* Hero Section (Home) */
.hero {
    text-align: center;
    padding: 0;
    /* Remove padding to let image fill */
    background-color: var(--primary-color);
    /* Fallback */
    color: var(--white);
    margin-bottom: 2rem;
    border-radius: 0 0 20px 20px;
    position: relative;
    overflow: hidden;
}

.full-width-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/banner_full.webp');
    background-size: cover;
    background-position: center;
    height: 60vh;
    /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    /* Semi-transparent background for text readability */
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

/* Removed .hero-banner as it is no longer used */

.hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Content */
main {
    padding: 2rem 0;
    min-height: 60vh;
}

.page header {
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 1rem;
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
}

.contact-info {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
    }

    nav ul {
        margin-top: 1rem;
    }
}