﻿/*
    Author:Stephen Friend
    Date:8/30/2025 - 11/--/2025
*/

/* Set the background color and text color for the whole page */

	/* Basic branding */
	h1 {
	color: #F64E82;
	font-family: Arial, sans-serif;
	text-align: center;
	}
	
	h2 {
		color: #F64E82;
	}

	body {
	margin: 0;
	font-family: Arial, sans-serif;
	}

	/* Sticky navigation bar */
	nav {
	position: sticky;
	top: 0;
	background-color: #ffffff;
	padding: 10px 0;
	border-bottom: 2px solid #04ABA1;
	text-align: center;
	}

	/* Navigation links */
	nav a {
	text-decoration: none;
	color: #04ABA1;
	margin: 0 15px;
	font-weight: bold;
	transition: color 0.3s ease;
	}

	/* Rollover (hover) effect */
	nav a:hover {
	color: #F64E82;
	}

	/* Layout spacing */
	main {
	padding: 20px;
	}

	/* Decorative image styling */
	.about-image {
	display: block;
	margin: 0 auto;
	max-width: 250px;
	border: 3px solid #04ABA1;
	border-radius: 15px;
	}

	h1 {
		color: #F64E82;
	}
		
	main {
		color: #04ABA1;
	}
		
	body {
		background-color: #FEFBEF;
	}
	
	/* Frame wrapper */
	.site-wrapper {
		max-width: 1100px;      /* controls inner content width */
		margin: 30px auto;      /* centers the framed area */
		padding: 24px;          /* space between border and content */
		box-sizing: border-box; /* include padding in width */
		background: #fffff6;    /* inner background (optional) */
		border: 6px solid #F64E82; /* visible frame color */
		border-radius: 12px;    /* rounded corners */
		box-shadow: 0 10px 30px rgba(0,0,0,0.12); /* subtle depth */
	}
	
	footer {
		color: #000000;
		text-align: center;
	}
	
	dd {
		margin-bottom: 15px;
	}
		
	.contact-email { display: inline; }
	.contact-phone { display: none; }

	
	@media (max-width: 481px){
	.contact-phone { display: inline; }
	.contact-email { display: none; }
	}


	