﻿/* =========================================================
                   DESIGN TOKENS
                   ========================================================= */
:root {
    --bg: #f9f8f3; /* Alabaster White */
    --forest: #2c5f2d; /* Deep Forest Green */
    --forest-dark: #234a24; /* Darker green for hover */
    --terracotta: #e2725b; /* Terracotta accent */
    --charcoal: #2a2a2a; /* Body text */
    --card: #ffffff; /* Card background */
    --hero-bg: #e8e5d9; /* Hero placeholder */
    --muted: #6b6b63; /* Muted text */
    --border: #e7e5dc; /* Subtle borders */

    --font-head: "Lora", Georgia, serif;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;
    --maxw: 1200px;
    --radius: 10px;
    --shadow: 0 6px 24px rgba(42, 42, 42, 0.08);
}

/* =========================================================
                   RESET & BASE
                   ========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--font-head);
    line-height: 1.2;
    color: var(--charcoal);
}

h1:focus {
    outline: none;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section {
    padding: 4.5rem 0;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

/* =========================================================
   REUSABLE BUTTON
   ========================================================= */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    background-color: var(--forest);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.8rem 1.6rem;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.btn:hover {
    background-color: var(--forest-dark);
    transform: translateY(-1px);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}
