/* 	File Name: toc.css		Description: Shared stylesheet for Sites
	Date Revised: Jan. 10, 2026	Author: Ronald B. Kopelman
	© Copyright 2025 Ronald B. Kopelman All Rights Reserved */

@font-face {
	font-family: "textile";
	src: url("../../../fonts/textile/textile.woff2") format("woff2"),
	url("../../../fonts/textile/textile.woff") format("woff"),
	url("../../../fonts/textile/textile.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

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

html {font-family: Georgia, Times, serif; font-size: 16pt;}

body {height: 100vh; background-color: #938978;}

.xycentered {
	position: absolute; top: 50%; left: 50%;
	transform: translate(-50%, -50%);
}

.content {
	width: 95%; height: 95%;
	color: #941100;
	border-radius: 20px;
	border: 12px #011993 double;
	background-color: bisque;
	/* following pins footer to window bottom */
	display: flex; flex-direction: column; justify-content: space-between;
}

main {
	margin: 2.5%;
	width: 95%;
	height: 100%;
	text-align: center;
	border-radius: 10px;
	background-color: #938978;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: 100% 100%;
	overflow-x: hidden;
	overflow-y: scroll;
}

#p1 {background-image: url("media/slide1.jpeg");}

#p2 {background-image: url("media/slide2.jpeg");}

#p1>div {
	position: fixed; bottom: 20%; right: 15%;
	border-radius: 18px;
	box-shadow: 4px 4px 6px 2px beige;
	}

footer {
	position: fixed;
	bottom: 0;
	width: 95%;
	padding: 8px;
	margin: 2.5%;
	border-radius: 0 0 10px 10px;
	border-top: 3px #011993 solid;
	background-color: tomato;
	font-family: textile, helvetica, arial, sans-serif;
	color: beige;
	font-size: 1rem;
	font-style: italic;
	text-align: center;
}

.aqua {
	/* Basic button styling */
	font-family: 'Lucida Grande', 'Lucida Sans Unicode', sans-serif;
	font-size: 24px;
	font-weight: bold;
	color: white;
	text-shadow: rgba(0, 0, 0, 0.5) 0px 1px 1px;
	padding: 8px 20px;
	border: 1px solid #336699;
	border-radius: 18px;
	cursor: pointer;
	outline: none;
	position: relative;
	overflow: hidden;
	/* For inner glow effect */
	/* Aqua Gradient Background */
	background-color: #6699cc;
	/* Fallback color */
	background-image: linear-gradient(to bottom, #88bbff 0%, #6699cc 100%);
	/* Inner Glow (light reflection) */
	box-shadow: inset rgba(255, 255, 255, 0.7) 0px 1px 0px, rgba(0, 0, 0, 0.3) 0px 2px 3px;
	/* Outer shadow */
}

.aqua:hover {
    /* Pressed state */
    background-image: linear-gradient(to bottom, #6699cc 0%, #88bbff 100%);
    box-shadow: inset rgba(0, 0, 0, 0.3) 0px 2px 3px,
                rgba(255, 255, 255, 0.7) 0px 1px 0px;
}

video {
	position: fixed;
	bottom: 10%;
	right: 20%;
}