/* Global Styles */
body {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h2 {
    text-align: center;
    font-size: 40px;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #5D1725;
    padding: 15px 20px;
    color: white;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    flex-grow: 1;
    text-align: center;
}

/* Navigation Menu */
.menu-toggle {
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #5D1725;
    padding-top: 60px;
    transition: 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.nav-menu.show {
    left: 0;
}

.nav-menu a {
    padding: 15px 20px;
    text-decoration: none;
    font-size: 18px;
    color: white;
    display: block;
    transition: 0.3s;
}

.nav-menu a:hover {
    background-color: #C1C6C8;
    color: black;
}

.close-btn {
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    position: absolute;
    right: 20px;
    top: 10px;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a img {
    width: 24px;
    height: 24px;
}

.about {
    background-color: #DAC79D;
}
.about#story {
    text-align: left;
}
#story h1 {
    text-align: center;
    font-size: 24px;
}
#story h2 {
    text-align: left;
    font-size: 22px;   
}
#story h3 {
    text-align: left;
    font-size: 20px;
}
#story h4 {
    text-align: left;
    font-size: 18px;
}
#story hr, .sept {
    height:2px;
    border-width:0;
    color:gray;
    width: 50%;
    background-color:gray;
    margin: 3% auto;

}
/* Image Styling */
img {
    width: 50vw;
    height: auto;
    display: block;
    margin: 20px auto;
}

img.headshot {
    width:15vw;
    height: auto;
    display: block;
    align-items: left;
}

.about img.smlogo {
    width: 25vw;
    height: auto;
    display: block;
}

/* Section Styles */
.bg-grey {
    width: 80%;
    background-color: #CCC;
    padding: 2% 10%;
}

.bg-darkgrey {
    width: 80%;
    background-color: #75787B;
    padding: 2% 10%;
}

.values section {
    width: 30%;
    float: left;
    margin: 5% 1.6%;
}

.values section img {
    height: 10vh;
    width: auto;
}

.about {
    padding:10% 10% 10% 10%;
}

/* Top Banner */
.top {
    background-image: url('img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top img {
    width: 50%;
    height: auto;
    display: block;
}

a.home {
    color: white;
    text-decoration: none;
}

/* Form Styling */
.form-wrapper {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/bg-grass.jpg');
    background-size: cover;
    background-position: center;
    padding: 1%;
}

.form {
    position: relative;
    color: #FFF;
}

.form p {
    text-align: center;
}

form {
    max-width: 500px;
    margin: auto;
    padding: 20px;
}

label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

input, select, textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

textarea {
    resize: vertical;
}

input[type="submit"] {
    cursor: pointer;
    background-color: #660000;
    color: white;
    border: none;
    padding: 10px 15px;
    margin-top: 15px;
    border-radius: 5px;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Social Media */
.sm-container a img {
    width: 20vh;
    height:auto;
    float: left;
}
.sm-container {
    display: flex;
    justify-content: center; /* Centers items horizontally */
    align-items: center; /* Aligns items vertically */
    gap: 10%; /* Adjusts space between images */
}

.sm-container a {
    display: inline-block;
}


/* Footer */
footer {
    background-color: #5D1725;
    width: 100%;
    color: #FFF;
    padding: 2% 0;
    text-align: center;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .values section, .social-media div {
        width: 100%;
    }
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.form a {
    color: #000;
    text-decoration: none;
}
.form-wrapper.tryout-register {
    color: #FFF;
    padding: 5% 10%;
}
.form-wrapper.tryout-register h2 {
    font-size: 25px;
}