/* Root variables for consistent theming */
:root {
    --primary-color: #2f4a1e; /* dark forest green */
    --secondary-color: #6b4c3a; /* wood brown */
    --accent-color: #8c3b20; /* burnt orange */
    --light-color: #f5f5f5;
    --dark-color: #1a1a1a;
    --font-base: 'Arial', sans-serif;
}

/* Global resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-base);
    background-color: var(--light-color);
    color: var(--dark-color);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header & Navigation */
.site-header {
    /* Darken the wood texture so text remains legible */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/wood-grain-texture.jpg') center/cover;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-title {
    font-size: 1.6rem;
    font-weight: bold;
}

.site-nav ul {
    display: flex;
    gap: 1rem;
}

.site-nav a {
    color: #f0e8df;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.site-nav a:hover,
.site-nav a.active {
    background-color: rgba(255,255,255,0.2);
}

/* Hero section */
.hero {
    position: relative;
    height: 60vh;
    /* Lighten the overlay so the background image is visible */
    /* Use the scenic landscape for the hero background */
    /* Use a subtle overlay so the scenic background image is visible */
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('../images/beautiful-landscape.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 80%;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content .highlight {
    color: var(--accent-color);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.primary-btn {
    background-color: var(--accent-color);
    color: #fff;
}

.primary-btn:hover {
    background-color: #742d18;
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: #fff;
}

.secondary-btn:hover {
    background-color: #503524;
}

/* Quotes section */
.quotes-section {
    background: linear-gradient(rgba(107,76,58,0.8), rgba(107,76,58,0.8)), url('../images/wood-grain-texture.jpg') center/cover;
    color: #fefefe;
    padding: 3rem 0;
    text-align: center;
}

.quotes-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.quote-display {
    font-size: 1.3rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    min-height: 80px;
}

.quote-display .author {
    font-style: normal;
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #f1d4b7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/brushed-metal-texture.jpg') center/cover;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Sample images section */
.samples-section {
    padding: 3rem 0;
    /* use a subtle forest image as the backdrop with a light overlay */
    background: linear-gradient(rgba(248,245,242,0.9), rgba(248,245,242,0.9)), url('../images/forest.jpg') center/cover no-repeat;
    text-align: center;
}

.samples-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.samples-section p {
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.samples-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.sample-box {
    flex: 1 1 200px;
    max-width: 250px;
    height: 150px;
    border: 2px dashed #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    background-color: #fff;
}

/* Main content (About & Contact pages) */
.main-content {
    padding: 3rem 0;
}

.main-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.main-content p {
    margin-bottom: 1rem;
    max-width: 800px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.site-footer {
    background-color: var(--dark-color);
    color: #ccc;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    .quotes-section h3,
    .cta-section h3,
    .samples-section h3 {
        font-size: 1.5rem;
    }
    .sample-box {
        flex: 1 1 45%;
    }
}

/* Parallax effect for backgrounds on larger screens */
@media (min-width: 769px) {
    .hero,
    .quotes-section,
    .cta-section,
    .samples-section {
        background-attachment: fixed;
    }
}