@charset "utf-8";

/*
   Hiking Arkansas Website
   Author: Mitchell Martin
   Date: November 4, 2025

   Filename: base.css
   Base structural styles for Hiking Arkansas
*/


/* ===== ROOT & BODY STYLES ===== */
html {
	height: 100%;
	font-size: 16px;
}

body {
	font-family: Aptos, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	background-color: #e8f5e9;
	color: #333;
	min-height: 100vh;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
	font-family: Georgia, serif;
	color: #2c5f2d;
	margin: 20px 0;
	font-weight: normal;
}

p {
	margin: 15px 0;
}

/* ===== LINKS ===== */
a {
	color: #2c5f2d;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #87ceeb;
}

a:focus {
	outline: 2px solid #2c5f2d;
	outline-offset: 2px;
}

