/* Default CSS */
/* Generated by the CoffeeCup HTML Editor - www.coffeecup.com */
/* =========================
PAGE LAYOUT WITH HEADER IMAGE + COLUMNS
========================= */
body {
    font-family: Arial, Helvetica, sans-serif;
	background: #CFAC52;
}
/* Main page wrapper */
.page-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* =========================
HEADER IMAGE ROW
========================= */
.header-image-row {
    width: 100%;
    height: auto;;
    overflow: hidden;
background: #00539B;
display:flex;
justify-content:center;
flex-direction: column;
}

.header-image-row img {
    
	width: auto%;
    height: 150px;
    object-fit: contain;
    object-position: center center;

}

/* =========================
CONTENT AREA
========================= */
.content-row {
    display: grid;
    grid-template-columns: 50% 50%; /* default = 2 columns */
    grid-template-rows: auto auto;
	gap: 5px;
    padding: 20px;
}

/* Left column */
.column-left {
    background-color: #00539B; /* matches your gold */
    margin: 5px;
	padding: 15px;
}
h1{
	color: white;
	text-align:center; 
	font-size: 30px;
}
h3{
	color: pink;
	text-align:center; 
}
p{
   color: white;
   text-indent: 3em; }
li {
   color: white;
 }

/* Main content column */
.column-main {
    background-color: #C6011F;
    margin: 5px;
	padding: 15px;
height:auto;
min-height: min-content;
}

/* Optional third column */
.column-right {
    background-color: #00539B;
    margin: 5px;
	padding: 15px;
}

/* =========================
ENABLE 3-COLUMN LAYOUT
(Add class "three-columns" to content-row)
========================= */
.content-row.three-columns {
    grid-template-columns: 33% 33% 33%;
}


/* =========================
RESPONSIVE (STACK ON MOBILE)
========================= */
@media (max-width: 800px) {
    .content-row,
    .content-row.three-columns {
        grid-template-columns: 1fr;
    }

    .header-image-row {
        height: 180px;
    }
}
/*Officers Color Blocking used in CHARTERS.PHP */
.name-card {
    background: #E9E9E9;
    border: 4px solid #CFAC52;   /* gold border */
    border-radius: 18px;         /* rounded corners */
    overflow: hidden;            /* keeps title bar rounded too */
    max-width: 500px;
    margin: 10px auto;
    box-shadow: 0 4px 8px rgba(0,0,0,.25);
}

.name-card .name {
    color: #00539B;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    padding: 10px 5px;
}

.name-card .title {
    background: #C6011F;
    color: white;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 0;
}

/* HOURS TABLE */
.table {
    width: 100%;
    border-collapse: collapse;   /* single grid lines */
    table-layout: auto;
    border: 4px solid #000;      /* thick outer border */
    background-color: #00539B;
}

.table th,
.table td {
    border: 1px solid #FFFFFF;   /* interior borders */
    padding: 10px;
    text-align: center;
    color: #FFFFFF;              /* default text color */
}

/* Header row */
.table thead th {
    background-color: #C6011F;
    color: #FFFFFF;
    font-weight: bold;
    border-bottom: 4px solid #000; /* thick separator under header */
}

/* Day of week column */
.table tbody td:first-child {
    color: #000000;
    font-weight: bold;
    background-color: #CFAC52;
}

/* Closed row cell */
.table td[colspan] {
    font-weight: bold;
    color: #FFFFFF;
}

/* Optional hover effect */
.table tbody tr:hover {
    background-color: rgba(255,255,255,0.08);
}