:root {
    --primary-color: #8B0000;
    --secondary-color: #006400;
    --accent-color: #FFD700;
    --text-color: #333;
    --background-color: #f4f4f4;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background-color: var(--primary-color);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-color);
}

/* CTA Button styles */
.cta-button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Hero section styles */
.hero {
    background-image: url('./images/crimsonhill_web8.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 40px;
}

.hero .container {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.hero .lead {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
}

/* Main content styles */
main {
    padding-top: 80px;
}

article {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 40px;
}

section {
    margin-bottom: 40px;
}

h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

p {
    margin-bottom: 15px;
}

ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

/* CTA Link styles */
.cta-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: var(--secondary-color);
}

/* Call-to-action section styles */
#call-to-action {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

#call-to-action h2 {
    color: var(--white);
}

#call-to-action .cta-button {
    font-size: 1.2rem;
    padding: 15px 30px;
    margin-top: 20px;
}

/* Footer styles */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 40px 0;
    margin-top: 40px;
}

footer .cta-button {
    margin: 20px 0;
}

/* Responsive design */
@media (max-width: 768px) {
    nav .container {
        flex-direction: column;
    }

    nav ul {
        margin-top: 20px;
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .lead {
        font-size: 1.2rem;
    }

    .cta-button {
        display: block;
        text-align: center;
        margin: 10px auto;
    }
}