/* ============================
   Roaring Rapids Ranch Theme
   For The Parkhurst Group
   ============================ */

:root {
    --rrr-bg: #f8f3ea;          /* parchment */
    --rrr-bg-alt: #f1e3cf;      /* lighter parchment */
    --rrr-header: #3b2618;      /* deep coffee brown */
    --rrr-header-alt: #5b3a23;  /* warm saddle brown */
    --rrr-border: #d1b28a;      /* soft tan border */
    --rrr-accent: #c78a3a;      /* golden accent */
    --rrr-link: #1e4ea8;        /* river blue link */
    --rrr-link-hover: #296be0;  /* brighter river blue */
    --rrr-text: #2b1b12;        /* dark ranch text */
    --rrr-muted: #5a4a3a;       /* muted brown */
}

/* Reset-ish */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #fffdf8 0, var(--rrr-bg) 55%, #efe1cf 100%);
    color: var(--rrr-text) !important;
    line-height: 1.6;
    text-align: center;
}

/* Make images fluid */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Header with banner and tagline */
header {
    background: linear-gradient(135deg, var(--rrr-header) 0%, var(--rrr-header-alt) 70%);
    color: #fdf8f2;
    padding: 1.2rem 0.75rem;
    border-bottom: 4px solid var(--rrr-accent);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

header img {
    border-radius: 0.6rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    background-color: #fff;
}

header h1 {
    margin-top: 0.6rem;
    margin-bottom: 0;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f7e7cf;
}

/* Headings used throughout the page */
h1, h2, h3 {
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0.35rem 0;
}

h1 {
    font-size: clamp(1.4rem, 1.1rem + 0.8vw, 1.9rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rrr-header);
}

h2 {
    font-size: clamp(1.05rem, 0.9rem + 0.35vw, 1.25rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(0.96rem, 0.9rem + 0.22vw, 1.08rem);
    font-weight: 500;
}

/* So the very first non-header title stands out */
header + h1 {
    margin-top: 1.4rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid rgba(199, 138, 58, 0.7);
    display: inline-block;
}

/* Links */
a {
    color: var(--rrr-link);
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--rrr-link-hover);
    text-decoration: underline;
}

/* Give section blocks a soft card feel using heading groupings */
h1 + h2,
h1 + h2 + h2,
h1 + h2 + h2 + h3 {
    /* handled by wrapper below */
}

/* Wrap general body content visually */
body > h1,
body > h2,
body > h3 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Create soft "cards" by grouping blocks between H1s using background stripes */
body {
    }

/* Paragraphs */
p {
    max-width: 70ch;
    margin: 0.4rem auto;
    text-align: left;
    color: var(--rrr-text);
}

/* Emphasized descriptive text inside headings */
h2[style],
h3[style] {
    color: var(--rrr-muted) !important;
}

/* Footer at the bottom of the file */
footer {
    border-top: 3px solid rgba(111, 84, 52, 0.3);
    background: linear-gradient(135deg, #f0dfc7, #e6d1b3);
    padding: 0.9rem 1rem 1.2rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--rrr-muted);
    margin-top: 1.5rem;
}

footer a {
    color: var(--rrr-link);
    font-weight: 600;
}

footer a:hover {
    color: var(--rrr-link-hover);
}


/* ---------- Decorative HR: Option B (Western Double Bar) ---------- */
.hr-double {
    border: none !important;
    height: 0 !important;
    border-top: 4px solid #8b4a1f !important;
    border-bottom: 4px solid #c78a3a !important;
    width: 85% !important;
    margin: 2rem auto !important;
    border-radius: 3px;
    display: block;
}
