﻿/* St. Ann's Home - Site Core Stylesheet */
/* Root Variables, Resets, Base Body Setup */

/* Color Palette inspired by warmth, care, and nature */
:root {
    /* Primary Colors - Warm, burnt orange/terra cotta */
    --primary-orange: #B9694B; /* Brand Core */
    --primary-orange-light: #C7856D;
    --primary-orange-dark: #9E5A40;
    /* Secondary Colors - Calming teals */
    --secondary-teal: #58A291;
    --secondary-teal-light: #79B5A7;
    --secondary-teal-dark: #468173;
    /* Warm Accent Colors */
    --accent-yellow: #EDCF3D;
    --accent-background: #FAF6F4;
    --accent-brown: #4B3D2A;
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --border-gray: #dee2e6;
    /* Text Colors */
    --text-primary: #2c3e50;
    --text-secondary: var(--accent-brown);
    --text-muted: #7a8288;
    /* Semantic Colors */
    --success: #28a745;
    --info: var(--secondary-teal-light);
    --warning: #ffc107;
    --danger: #dc3545;
}

/* Reset & Base Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
}

/* General Utility Defaults */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

    a:hover {
        text-decoration: underline;
    }

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

/* Print Defaults */
@media print {
    body {
        font-size: 12pt;
        color: black;
        background: white;
    }

    a {
        text-decoration: underline;
        color: black;
    }
}
