/* ============================================
   COLOR SCHEME - CSS VARIABLES
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');

:root {
    /* Primary Colors */
    --color-primary: #D2691E;
    --color-primary-hover: #B85A1A;
    --color-primary-light: #D9823B;

    /* Secondary Colors */
    --color-secondary: #2C5530;
    --color-footer: #435742;
    --color-footer-line: #d97c54;
    --color-secondary-light: #435741;

    /* Background Colors */
    --color-bg-white: #ffffff;
    --color-bg-cream: #fff8f1;
    --color-bg-cream-secondary: #efe7dc;
    --color-bg-cream-grey: #f0eee8;
    --color-bg-cream-light: #FEFEFD;
    --color-bg-beige: #e7d9c7;
    --color-bg-green-light: #e6eae2;
    --color-bg-green-lighter: #C8E6C9;
    --color-bg-green-very-light: #f4f8f2;
    --color-bg-beige-very-light: #f8f4ef;
    --color-bg-green-very-light-circle: #e9f3ea;
    --color-bg-beige-very-light-circle: #f8eee5;

    /* Text Colors */
    --color-text-primary: #333333;
    --color-text-secondary: #666666;
    --color-text-tertiary: #999999;
    --color-text-on-dark: #ffffff;
    --color-text-on-dark-alt: #fff8ef;
    --color-text-black: #000000;
    --color-text-on-dark-highlight: #e4d7bc;
    --color-text-secondary-light: #3c3a36;
    --color-para-text: #4e504b;

    /* Border Colors */
    --color-border-light: #e0e0e0;
    --color-border-tan: #dcc8b5;
    --color-border-accent: #e4b595;


    /* Accent Colors */
    --color-accent-gold: #FFD700;

    /* Status Colors */
    --color-success: #28a745;
    --color-error: #dc3545;
    --color-disabled: #6c757d;

    /* Link Colors */
    --color-link: #007bff;
    --color-link-hover: #0056b3;

    /* Shadow Colors */
    --color-shadow: rgba(0, 0, 0, 0.1);
    --color-shadow-medium: rgba(0, 0, 0, 0.15);

    /* Layout helpers */
    --section-spacing-vertical-large: 80px;
    --section-spacing-horizontal-large: 60px;
    --section-spacing-vertical-small: 60px;
    --section-spacing-horizontal-small: 40px;
    /* Height of the header for offsetting page banners */
    --page-banner-offset: 60px;
    /* Spacing between page titles and their underline */
    --section-heading-gap: 12px;
}

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */

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

body {
    font-family: 'Poppins', sans-serif, 'PT Sans';
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

section {
    padding: var(--section-spacing-vertical-large) var(--section-spacing-horizontal-large) 0px var(--section-spacing-horizontal-large);
    background-color: var(--color-bg-cream);
}

.last-section {
    padding-bottom: var(--section-spacing-vertical-large);
}

.divider {
    width: 60%;
    border-bottom-color: var(--color-border-tan);
    border-bottom-style: solid;
    border-bottom-width: 1.5px;
    margin: 80px auto 0px auto;
}

/* ============================================
   TYPOGRAPHY - FONT SIZES
   ============================================ */

/* Base paragraph text */
p {
    font-size: 22px;
    line-height: 1.6;
    font-family: PT Sans;
    color: var(--color-para-text);
}

/* Headings */
h1 {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    font-family: Poppins;
}

h2 {
    font-size: clamp(30px, 4vw, 36px);
    font-weight: 400;
    line-height: 1.2;
    font-family: Poppins;
    color: var(--color-text-secondary-light);
}

h3 {
    font-size: 32px;
    font-weight: 700;
    font-family: Poppins;
    color: var(--color-text-secondary-light);
}

h4 {
    font-size: 29px;
    font-weight: 700;
    font-family: Poppins;
    color: var(--color-text-secondary-light);
}

h5 {
    font-size: 22px;
    font-weight: 700;
    font-family: Poppins;
    color: var(--color-text-secondary-light);
}


/* Small text */
small,
.small-text {
    font-size: 14px;
    font-family: sans-serif;
}

/* Medium text */
.medium-text {
    font-size: 16px;
    font-family: sans-serif;
}

/* Large text */
.large-text {
    font-size: 24px;
    font-family: sans-serif;
}

/* Extra large text */
.xlarge-text {
    font-size: 32px;
    font-family: Poppins;
}

/* Extra extra large text */
.xxlarge-text {
    font-size: 48px;
    font-family: Poppins;
}

.highlight {
    color: var(--color-primary);
}

/* Stat text */
.stat-text {
    font-size: 36px;
    font-weight: 700;
}

/* Icon sizes */
.icon-small {
    font-size: 16px;
}

.icon-medium {
    font-size: 24px;
}

.icon-large {
    font-size: 42px;
}

.leaf-icon {
    font-size: 42px;
}

.has-section-header>div:first-child {
    margin-bottom: 30px;
}

.section-header {
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
    padding-inline: var(--section-pad-inline);

    .section-label {
        margin: 0;
        text-transform: uppercase;
        font-weight: 800;
        line-height: 1.1;
        font-size: 32px;
        color: var(--color-text-primary);
    }
}


.underlined-header {
    float: left;
    border-bottom-color: var(--color-border-accent);
    border-bottom-style: solid;
    border-bottom-width: 2px;
    padding-bottom: var(--section-heading-gap);
    padding-right: 30px;
}

.centered-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    .leaf-icon {
        margin-bottom: 0px;
    }

    h2,
    h3 {
        color: var(--color-text-primary);
        text-align: center;
        margin: 0;
    }

    p {
        max-width: 1200px;
        width: 200%;
        margin: 0 auto;
        text-align: center;
        color: var(--color-text-primary);
    }

    .highlight {
        color: var(--color-primary-light);
    }
}

.title-underline {
    height: 1.5px;
    background-color: var(--color-primary);
    width: 80%;
    max-width: 400px;
    margin-top: 5px;
    margin-bottom: 24px;
}



/* ============================================
   REUSABLE COMPONENTS
   ============================================ */

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-secondary-light);
    padding: 15px 40px;
    width: 100%;
    border-bottom-color: var(--color-border-tan);
    border-bottom-width: 0px;
    border-bottom-style: solid;
}

nav {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

nav a {
    color: var(--color-text-on-dark-alt);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

nav a.active {
    text-decoration: underline;
}

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

/* Buttons */
.cta-button {
    color: var(--color-text-on-dark);
    border: none;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 15px 20px;
    border-radius: 6px;
    max-width: 200px;
    min-height: 60px;
    margin: 0;
}

.cta-button.primary {
    background-color: #c9633d;
}

.cta-button.secondary {
    background-color: #e68f5c;
}

.cta-button:hover {
    background-color: var(--color-primary-hover);
}

/* Button Groups */
.button-group {
    display: flex;
    gap: 70px;
    justify-content: center;
}

/* Strong/Bold text */
strong {
    font-weight: 700;
}

.bold {
    font-weight: 800;
}

.text-normal {
    font-weight: 400;
}

.color-primary {
    color: var(--color-primary);
}

/* Footer */
footer {
    background-color: var(--color-footer);
    border-top: 2px solid var(--color-footer-line);
    width: 100%;
    padding: 30px 40px;
}

.footer-content {
    color: var(--color-text-on-dark);
    font-size: 16px;
    text-align: left;
}

/* Quote image strip (matching home page feel) */
.tree-image-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.tree-landscape {
    width: 100%;
    height: 310px;
    object-fit: cover;
    /* keep image cropped while scaling */
}

.column-content-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ============================================
   RESPONSIVE TYPOGRAPHY
   ============================================ */

@media (max-width: 1024px) {
    h2 {
        font-size: 32px;
    }

    .quote-text {
        font-size: 24px;
    }

    .xxlarge-text {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--section-spacing-vertical-small) var(--section-spacing-horizontal-small) 0px var(--section-spacing-horizontal-small);
    }

    .last-section {
        padding-bottom: var(--section-spacing-vertical-small);
    }

    .divider {
        margin: var(--section-spacing-vertical-small) auto 0px auto;

    }
}