/* Regular Font */
@font-face {
  font-family: 'Glenshaw';
  src: url('fonts/Forum-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Italic Font */
@font-face {
  font-family: 'Glenshaw';
  src: url('fonts/DidotLTPro-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

body {
  font-family: 'Glenshaw', serif;
}

/* Base Styles */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Glenshaw", sans-serif;
  font-size: 14px;
  line-height: 1.4286;
  color: #000000;
  text-align: center;
  font-weight: normal;
}

/* Remove any overlay */
body::before {
  content: none;
}

/* Links */
a {
  color: black;
  text-decoration: none;
}
a:hover, a:focus {
  color: #3282e6;
  text-decoration: underline;
}

/* Top Bar */
.top-bar {
  height: 20px;
  background: linear-gradient(to bottom, #71a100 0%, #6fa100 100%);
}

/* Navigation */
#nav {
  background-color: #ffffff;
  font-size: 18px;
}


/*Containers*/
.container {
  margin: 48px auto 0;
  max-width: 90%;
  padding: 0 10px;
}

/*Footer*/
footer {
  background-color: #000000;
  color: white;
  padding: 25px 10px;
  font-size: 14px;
  text-align: center;
  margin-top: 80px;
  border-top: 4px solid #3282e6;
}

/* Images*/
img {
  max-width: 175px;
  height: auto;
  margin: -13px auto;
  margin-bottom: 3px;
  box-sizing: border-box;
}

/*Headings*/
h1, h2, h3, h4, h5, h6 {
  font-family: "Glenshaw", sans-serif;
  font-weight: normal;
  line-height: 1.1;
  color: #000000;
}

h1 { font-size: 79px; line-height: 110px; }
h2 { font-size: 46px; line-height: 48px; }
h3 { font-size: 30px; line-height: 32px; }
h4 { font-size: 26px; line-height: 28px; }
h5 { font-size: 20px; line-height: 24px; }
h6 { font-size: 18px; line-height: 22px; }

h1 {
	margin-top: 14px;
	margin-bottom: 0px;
	font-style: italic;
	font-weight: normal;
	font-size: 79px;
	line-height: 1;
}

h3 {
	text-align: center;
	margin-top: 15px;
	margin-bottom: 15px;
}

/*Links*/
a {
  color: #3282e6;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover, a:focus {
  color: #71a100;
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid #3282e6;
  outline-offset: 2px;
}

/* ========================================
   Top Bar
======================================== */
.top-bar {
  height: 20px;
  background: linear-gradient(to bottom, #71a100 0%, #6fa100 100%);
}


/* Sections */
section {
  margin-bottom: 60px;
}

section p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #000000;
}

section ul {
  margin: 15px 0;
  padding-left: 20px;
}

section ul li {
  margin-bottom: 10px;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1; /* pushes footer down */
}

/*Maintenance Request*/
#maintenancecontact {
  max-width: 1500px;
  margin: 60px auto;
  padding: 30px 20px;
  background-color: #ffffff;
  border-radius: 12px;
  text-align: justify;
}

#maintenancecontact h1 {
  text-align: center;
  margin-bottom: 10px;
  color: #00000;
}

#maintenancecontact h2 {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #00000;
}

#maintenancecontact h3 {
	text-align: center;
	margin-bottom: 0px;
	font-weight: bold;
}

#maintenancecontact h4 {
	text-align: center;
	margin: 10px auto;
	font-weight: bold;
}

#maintenancecontact h6 {
  text-align: center;
  margin: 10px auto;
  color: #00000;
}

#maintenancecontact p {
  text-align: center;
  margin-bottom: 25px;
  color: #00000;
}

#maintenancecontact form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#maintenancecontact label {
  font-weight: 500;
  color: #00000;
  margin-bottom: 4px;
}

#maintenancecontact input[type="text"],
#maintenancecontact input[type="email"],
#maintenancecontact select,
#maintenancecontact textarea {
	width: 75%;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-family: "Glenshaw", sans-serif;
	font-size: 18px;
	color: #000000;
	background-color: #fafafa;
	box-sizing: border-box;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	text-align: center;
    margin: 0 auto;
}

#maintenancecontact input:focus,
#maintenancecontact select:focus,
#maintenancecontact textarea:focus {
  outline: none;
  border-color: #3282e6;
  box-shadow: 0 0 0 3px rgba(50, 130, 230, 0.2);
  background-color: #fff;
}

#maintenancecontact textarea {
  resize: vertical;
}

#maintenancecontact input[type="submit"] {
  background-color: #22382b;
  width: 75%;
  color: white;
  padding: 6px 10px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 5px auto;
}

#maintenancecontact input[type="submit"]:hover {
  background-color: #757575;
}

#maintenancecontact input[type="submit"]:active {
  transform: translateY(0);
}

#maintenancecontact input[type="submit"]:focus-visible {
  outline: 2px solid #3282e6;
  outline-offset: 3px;
}

/*Table*/
.formFieldsTable {
	width: 100%;
	max-width: 1250px;
	margin: 20px auto;
	font-family: 'Glenshaw', serif;
	border: 5px solid #cccccc; 
}

.formFieldsTable td {
	padding: 10px 12px;
	border: 3px solid #e0e0e0;
	vertical-align: middle;
	text-align:center;
    font-size: 16px;
}

/*Navigation*/
.site-nav ul {
  list-style-type: none;
  margin-top: 26px;
  margin-right: 15px;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.site-nav a {
  text-decoration: none;
  color: #000000;
  font-family: 'Glenshaw', serif;
  font-size: 18px;
  transition: color 0.2s ease;
}

/* Hover effect */
.site-nav a:hover {
  color: #757575;
}

.section-break {
	border: none;
	height: 2px;
	background-color: #000000;
	margin: 0px;
	width: auto;
	margin-top: -75px;
	background: linear-gradient(to right, transparent, #000000 20%, #000000 80%, transparent);
	margin-left: auto;
    margin-right: auto;
    width: 100%;
}
}