/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f7f7f7;
    line-height: 1.6;
}


/* Header Styling */
header {
    background: url('images/header_bkgnd_sf.jpg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.header-logo {
    max-width: 80%;
    height: auto;
}


/* Navigation Styling */
nav {
    background-color: #252422;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

nav ul li a:hover {
    background-color: #575757;
    border-radius: 5px;
}


/* Main Content Styling */
main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

section p {
    margin-bottom: 10px;
}



/* About Section Styling */
.about-container {
    background-color: #B3BFB8; /* Light grey background for differentiation */
    width: 100%;
    padding: 0; /* Remove padding from the container */
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
}

.about-wrapper {
    max-width: 1200px; /* Set a max-width for the content */
    margin: 0 auto; /* Center the content */
    padding: 40px 20px; /* Add padding to the content */
    text-align: center;
}

.about-wrapper h2 {
    margin-bottom: 20px;
    font-size: 2em; /* Adjust font size as needed */
    color: #333; /* Adjust color as needed */
}

.about-section {
    display: flex;
    justify-content: space-around; /* Space the items out evenly */
}

.about-item {
    flex: 1; /* Allows each item to grow equally */
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px; /* Optional: Set a max-width for each item */
}

.about-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.about-item p {
    margin: 0 auto;
    line-height: 1.6;
}


/* Carousel Styling */
.carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 150px; /* Adjust height as needed */
}

.carousel-track {
    display: flex;
    animation: scroll 40s linear infinite;
    width: calc(400px * 10); /* Adjust according to the number of items */
}

.carousel-item {
    flex: 0 0 auto;
    width: 150px; /* Adjust width as needed */
    margin: 0 10px;
}

.carousel-item img {
    width: 100%;
    height: auto;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
}

form label, form input {
    margin-bottom: 10px;
    font-size: 1em;
}

form input[type="text"], form input[type="email"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

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

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


/* Footer Styling */
footer {
    background-color: #252422;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* This should stack the About items for small screens */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
    }

    .about-item {
        max-width: none;
    }
}

