/* Design tokens, element defaults and shared utilities.
   Load order: 1st of 5 — base, header, content, footer, responsive.
*/

:root {
    --primary: #2C5F58;
    /* Soft sage — part of the brand palette, not currently used */
    --secondary: #A6C4C0;
    --accent: #D4AF37;
    --bg-light: #F9FBFB;
    --text-dark: #2D3436;
    --text-muted: #4E5A5E;
    --text-light: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --radius: 8px;
    --container-width: 1200px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

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

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #224a44;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 95, 88, 0.3);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-light);
}

/* Outline button sitting on a dark hero — must follow .btn-outline */
.btn-outline-light {
    color: var(--text-light);
    border-color: var(--text-light);
    margin-left: 15px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.section-alt {
    background-color: var(--bg-light);
}

.section-white {
    background-color: #FFFFFF;
}
