html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a:link, a:visited, a:hover {
    text-decoration: none;
}

main {
    display: grid;
    min-height: 100vh;
    grid-template-columns: 1fr 2fr 2fr 2fr 2fr 1fr;
    grid-template-rows: 100px 60px 480px 8fr;
}

header {
    grid-row: 1/2;
    grid-column: 1/7;
    
    width: 90%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    display:block;
    margin-right: auto;
    margin-left: auto;
}

header h1 {
    font-size: 45px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

header h3 {
    font-size: 35px;
    font-family: 'Times New Roman', Times, serif;
}

nav {
    grid-row: 2/3;
    grid-column: 2/6;
    width: 100%;
}

nav #currentPage {
    font-weight: bolder;
    font-style: italic;
    color: #000000;
    background-color: #ffee00;
    
    
}

nav ul {
    margin: 10px;
    display: flex;
    justify-content: space-around;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

nav li {
    width: 250px;
    text-align: center;
}

nav li a {
    display: block;
    background-color: #100c0c;
    padding: 5px 0px;
    color: #ffee00;
}

nav li a:hover {
    color: #000000;
    background-color: #38373c;
}

#sidebar {
    background-color: #464747;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0px;
    overflow-x: hidden;
    transition: 0.3s;
    line-height: 2em;
    font-size: 25px;
    font-family: 'Times New Roman', Times, serif;
}

#sidebar h2 {
    font-size: 30px;
}

#sidebar p {
    font-size: 20px;
    padding-left: 10px;
}

#sidebar a {
    font-size: 20px;
    color: #000000;
    padding-left: 10px;
}

#sidebar div {
    padding: 20px;
}

#sidebar button {
    background: none;
	color: inherit;
	border: none;
	padding-right: 10px;
	font: inherit;
	cursor: pointer;
	outline: inherit;
    text-align: end;
    width: 100%;
}

#sidebarOpen {
    z-index: 1;
    position: fixed;
    text-align: end;
    background: none;
    background-color: #817d7d;
	color: inherit;
	border: 1px solid #ffee00;
    border-radius: 10px;
    width: 45px;
	padding: 10px;
    margin-top: 35px;
    margin-left: -10px;
	font: inherit;
	cursor: pointer;
	outline: inherit;
    
}
#sidebar a, #sidebar h2, #sidebar p {
    color:rgb(205, 198, 198);
}
#heroPic {
    grid-row: 3/4;
    grid-column: 1/7;
    text-align: center;
    margin-bottom: 7vh;
}

#heroPic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section h2 {
    font-size: 35px;
}

#section1 {
    grid-row: 4/5;
    grid-column: 2/4;
    line-height: 2em;
    font-size: 25px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding: 0 15px;
}

#readMoreButton1 {
    color: #ffee00;
    font-weight: bold;
    cursor: pointer;
}

#readMoreButton1:hover {
    color: #ffee00;
}

#more1 {
    display: none;
}

#section1 ul {
    list-style: disc;
    padding-left: 25px;
}

#section2 {
    grid-row: 4/5;
    grid-column: 4/6;
    line-height: 2em;
    font-size: 25px;
    font-family: 'Times New Roman', Times, serif;
    padding: 0 15px;
}

#section2 h3 {
    font-weight: bold;
}

#more2 {
    display: none;
}

#readMoreButton2 {
    color: #ffee00;
    font-weight: bold;
    cursor: pointer;
}

#readMoreButton2:hover {
    color: #ffee00;
}

#section2 ul {
    list-style: disc;
    padding-left: 25px;
}
#section1, #section2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#section1 ul, #section2 ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#section1 h2, #section2 h2, #section1 ul h2, #section2 ul h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.5em;
}

#section1 li, #section2 li {
    margin-bottom: 5px;
}

/* Styling for the "Read More" and "See More" buttons */
a#readMoreButton1, a#readMoreButton2 {
    color:  #ffee00; /* Adjust color to match your design */
    cursor: pointer;
    margin-top: 10px;
    display: inline-block;
}


#section3 {
    grid-row: 4/5;
    grid-column: 2/6;
    width: 100%;
    line-height: 2em;
    font-size: 25px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding: 0 15px;
}

#section3 form {
    width: 100%;
}

#section3 form h2 {
    padding-top: 10px;
    padding-left: 50px;
}

form input, form textarea {
    font-size: 16px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    width: 100%;
}

#section3 form p {
    width: 90%;
    margin: 10px auto;
}

#section3 form p span {
    color: #ff3838;
    font-size: 16px;
}

#address {
    display: none;
}

/* #section4 {
    grid-row: 4/5;
    grid-column: 5/6;
} */

footer {
    grid-row: 6/7;
    grid-column: 1/7;
    width: 100%;
    height: 85px;
    margin-top: 175px;
    font-size: 20px;
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: #000000 3px solid;
}

header h1, header h3, footer p, .center-form {
    text-align: center;
}

.center-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav ul {
    display: flex;
    justify-content: center;
}

#heroPic {
    text-align: center;
}
@media (max-width: 768px) {
    header {
        font-size: 18px; 
        padding: 15px;   
    }
    
    header:hover {
        transform: scale(1.05) rotate(1deg); 
    }
    
    nav li a {
        font-size: 14px; 
        padding: 15px;   
    }

    nav li a:hover {
        transform: scale(1.05) rotate(1deg);
    }
    
   
}
:root {
    --main-bg-color: #575757; 
    --header-bg-color: #464747; 
    --sidebar-bg-color: #38373c; 
    --footer-bg-color: #000000; 
}


body {
    background-color: var(--main-bg-color);
    font-family: Arial, sans-serif;
}

header {
    background-color: var(--header-bg-color);
    color: #ffee00;
}

#sidebar {
    background-color: var(--sidebar-bg-color);
    color: #000000;
}

footer {
    background-color: var(--footer-bg-color);
    color: #b3b3b3;
}
header {
    padding: 20px;
    color: #ffee00;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.4s ease, background-color 1s, color 0.4s;
}

header:hover {
    transform: scale(1.1) translateZ(10px); 
    background-color: #292727;
    color: #ffee00; 
}


nav li a {
    padding: 20px;
    color: #ffee00;
    text-transform: initial;
    letter-spacing: 2px;
    transition: transform 0.4s ease, background-color 1s, color 0.4s;
}

nav li a:hover {
    transform: scale(0.9) translateZ(0);  
    background-color: #ffee00;
    color: #000000;
}

img {
    transition: transform 0.4s ease, background-color 1s, filter 0.4s;
}

img:hover {
    transform: scale(0.9) translateZ(0);  
    filter: brightness(1.2);
}
@media screen and (max-width:410px) {
    button {
        padding: 8px 15px; 
        margin: 10px 5px; 
        font-size: 14px; 
        width: auto; 
    }
    header {
        width:85vw;
        display:block;
        margin-left:auto;
        margin-right:auto;
    }
    #header2{
        font-size:20pt;
    }
}
blockquote {
    margin-top: 40px;
}
iframe {
    width:90vw;
}

.center-form{
    background-color: #464747;
}