@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&family=Noto+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");

html {
	font-size: 100%;
}

/*** 1. Reset Legacy Wrappers (Safe, Zero-Values) ***/
/* Target both wrappers with high specificity (no !important if possible) */
body #content,
body #minute {
  margin: 0;
  padding: 0;
  width: auto;
  max-width: none;
}

/* If legacy styles are stubborn, use :where() (modern browsers) */
@supports (selector(:where(*))) {
  :where(#content, #minute) {
    margin: 0;
    padding: 0;
  }
}

/*** 2. Responsive Body Margins (All Screens) ***/
/* Mobile-first (default: small padding) */
body {
    margin: 0;
  padding: 0 0.5rem 0.5rem; /* Top: 0, Right/Left: 0.5rem, Bottom: 0.5rem */
  box-sizing: border-box;
  font-family: "Noto Sans", Arial, Verdana, sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Tablets/small laptops (768px+) */
@media (min-width: 768px) {
  body {
    padding: 0 3rem 1.5rem; /* Top: 0, Sides: 3rem, Bottom: 1.5rem */
  }
}

/* Large monitors (1200px+) - Optimized for 27" */
@media (min-width: 1200px) {
  body {
    padding: 0 10% 2rem; /* Top: 0, Sides: 10%, Bottom: 2rem */
    max-width: 1600px; /* Prevents ultra-wide text lines */
    margin: 0 auto; /* Center content */
  }
}

/*** 3. Responsive Images (For Legacy Pages) ***/
/* 
img {
  max-width: 100%;
  height: auto;
}
 */
/* 
body {
	background-color: #FFF;
	font-family: "Noto Sans", Arial, Verdana, sans-serif;
	font-weight: 400;
	font-style: normal;
}

#content {
	max-width: 50em;
	margin: 1em auto;
	background: #FFF;
	padding: 1em 6em;
}

#minute {
	max-width: 50em;
	margin: 1em auto;
	background: #FFF;
	padding: 0em 6em;
}
 */

.quote {
	margin-right: 10em;
	margin-left: 10em;
}

.border {
	border: thin solid #C0C0C0;
}

h1,
h2,
h3,
h4 {
	color: #000080;
	text-align: center;
}

img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
    height: auto;
}

.caption {
	color: #000080;
	text-align: center;
	font-size: small;
	margin-right: 10em;
	margin-left: 10em;
}

.indent {
	margin: 0px 6em 0px 6em;
}

.note {
	font-size: small;
	color: #800000;
}

.officers {
	margin: 0px 0px 0px 5em;
}

.prevnext {
	margin: 3em 3em 0px;
}

.previous {
	margin: 0px 7em 0px 0px;
}

.next {
	margin: 0px 0px 0px 7em;
}

a:link {
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

a:active {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
	color: #800080;
	background-color: transparent;
}

table {
	background-color: #FFFFFF;
	margin-right: auto;
	margin-left: auto;
}


td.number {
	text-align: right;
	padding-right: 1rem;
}

.textcenter {
	text-align: center;
}

th {
	text-align: center;
}

td {padding: 0 1em;}

td.top {vertical-align: top;}

td.nowrap {white-space: nowrap;}

.red {
	color: #FF0000;
}

.maroon {
	color: maroon;
}


.agendaitem {
	color: #800000;
	font-weight: bold;
}

.faqitem {
	color: maroon;
}

.center {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}


.navbar {
	display: flex;
	justify-content: space-between;
	/* Pushes children to opposite sides */
	align-items: center;
	/* Vertically centers items */
	border-bottom: thin solid;
/* 	background-color: #E6E6E6; */
	background-color: azure;
	padding: 4px 8px;
}


.navbar-a  {
	display: flex;
	justify-content: space-between;
	/* Pushes children to opposite sides */
	align-items: center;
	/* Vertically centers items */
	border-bottom: thin solid;
/* 	background-color: #E6E6E6; */
	background-color: azure;
	padding: 4px 8px;
}


.navbar-d
{
	display: flex;
	justify-content: space-between;
	/* Pushes children to opposite sides */
	align-items: center;
	/* Vertically centers items */
	border-bottom: thin solid;
    background-color: #FFFACD;
	padding: 4px 8px;
}

.navbar-n
{
	display: flex;
	justify-content: space-between;
	/* Pushes children to opposite sides */
	align-items: center;
	/* Vertically centers items */
	border-bottom: thin solid;
/* 	background-color: #E6E6E6; */
	background-color: #FFF0F5;
	padding: 4px 8px;
}

/* Font Awesome 4.7.0 base styles */
.nav-arrow .fa,
.nav-home .fa {
	font-size: 24px;
	/* Match your original image sizes */
	line-height: 1;
	/* Fixes vertical alignment quirks */
}

/* Navigation bar - Spacing tuned for ergonomics */
.album-navigation {
	display: flex;
	justify-content: center;
	gap: 40px;
	/* Optimal spacing (try 24px-40px) */
	max-width: 280px;
	margin: 2em auto;
	/* Added vertical margin */
}

/* Unified button styles */
.nav-arrow,
.nav-home {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: #333;
	transition: transform 0.15s ease;
}

/* Hover feedback */
.nav-arrow:hover,
.nav-home:hover {
	color: #0066cc;
	transform: scale(1.15);
	text-decoration: none;
}

/* Document navigation bar - Flexible spacing with date */
.doc-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 400px; /* Wider to accommodate dates */
    margin: 2em auto;
}

/* Arrow button styles (same as before) */
.nav-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #333;
    transition: transform 0.15s ease;
    flex-shrink: 0; /* Prevents arrows from shrinking */
}

/* Date display styles */
.nav-date {
    font-family: "Noto Sans", Roboto, Verdana, Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #000080;
    padding: 0 10px;
    text-align: center;
    min-width: 120px; /* Minimum width for short dates */
}

/* Hover feedback (arrows only) */
.nav-arrow:hover {
    color: #0066cc;
    transform: scale(1.15);
    text-decoration: none;
}

.right {
	text-align: right;
	float: right;
}

.textright {
	text-align: right;
}

img.center {
	margin-right: auto;
	margin-left: auto;
	display: block;
}


.photo-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    justify-items: center;
    margin: 0 auto;
    max-width: fit-content;
    align-items: stretch; /* Forces all grid items to match row height */
}

/* Let the thumbnail fill the grid item */
.thumbnail {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Fills the grid item's height */
    width: 100%;  /* Fills the grid item's width */
}

/* Ensure images scale properly */
.thumbnail img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Prevents distortion */

}

.gallery-caption {
	grid-column: 1 / -1;
	/* Spans all columns (replaces colspan="4") */
	text-align: center;
	text-size: 0.9rem;
	color: #000080;
	margin-top: 10px;
	margin-bottom: 2rem;
}

/* 
dl {
	margin-left: 10em;
	margin-right: 10em;
}

dt {
	margin-top: 1em;
	font-size: large;
}
 */

.margin {
	margin-right: 5em;
	margin-left: 5em;
}

.copyright {
	text-align: center;
	font-size: 0.8rem;
	padding-top: 1em;
}

hr.short {
	width: 50rem;
}

.hr-left-flex {
  display: flex;
  justify-content: flex-start;
  margin: 2rem 0; /* Adds 2rem space above and below the <hr> */
}

.hr-left-flex hr {
  width: 15em;
  margin: 0; /* Ensures the <hr> itself has no extra margin */
}

.signed {font-weight: 500; color: darkslateblue;}

/* Background Colours */

/* Soft UI Background Colors */

.bg-aliceblue {
	background-color: aliceblue;
	/* #F0F8FF */
}

.bg-lavender {
	background-color: lavender;
	/* #E6E6FA */
}

.bg-honeydew {
	background-color: honeydew;
	/* #F0FFF0 */
}

.bg-mintcream {
	background-color: mintcream;
	/* #F5FFFA */
}

.bg-azure {
	background-color: azure;
	/* #F0FFFF */
}

.bg-beige {
	background-color: beige;
	/* #F5F5DC */
}

.bg-lightcyan {
	background-color: lightcyan;
	/* #E0FFFF */
}

.bg-lightgoldenrodyellow {
	background-color: lightgoldenrodyellow;
	/* #FAFAD2 */
}

.bg-cornsilk {
	background-color: cornsilk;
	/* #FFF8DC */
}

.bg-mistyrose {
	background-color: mistyrose;
	/* #FFE4E1 */
}

/* Minimalist default (adjust to taste) */
ul, ol, dl {
  margin-left: 0;
  padding-left: 2rem; /* Or 0, if you prefer edge-aligned bullets */
}
/* Unordered Lists */
ul.a { list-style-type: circle; }      /* ◦ Item 1 ◦ Item 2 ◦ Item 3 */
ul.b { list-style-type: disc; }        /* • Item 1 • Item 2 • Item 3 */
ul.c { list-style-type: square; }      /* ▪ Item 1 ▪ Item 2 ▪ Item 3 */
ul.u { list-style-type: none; }        /* Item 1 Item 2 Item 3 */

/* Ordered Lists */

ol.f { list-style-type: decimal; }     /* 1. 2. 3. */
ol.g { list-style-type: decimal-leading-zero; } /* 01. 02. 03. */
ol.n { list-style-type: lower-alpha; } /* a. b. c. */
ol.q { list-style-type: lower-roman; } /* i. ii. iii. */
ol.r { list-style-type: upper-alpha; } /* A. B. C. */
ol.t { list-style-type: upper-roman; } /* I. II. III. */
ol.u { list-style-type: none; }        /* Item 1 Item 2 Item 3 */