body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Times New Roman', Times, serif;
}

.page-container {
	background-color: #000000;
    width: 100%;
}

.page-details {
	color: #f37422;
	margin-left: 50px;
}

.listitems {
    color: #ffffff;
    text-decoration: none;
	font-size: 1.5em;
}

.youtubelinks {
	text-decoration: none;
	color: #ffffff;
}

.youtubelinks:hover {
  color: #f37422;
}

.top-section {
    position: relative;
    width: 100%;
}

header {
    position: absolute;
    top: 0;
    width: 92%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: transparent;
    z-index: 2; /* Ensures header is above the hero image */
}

header .logo {
    width: 30%;
    height: auto;
}

header .logo img {
    width: 100%;
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
}

.hero {
    width: 100%;
    height: 400px; /* Adjust as needed */
    background: url('../images/Header-Background.jpg') no-repeat center center / cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3em; /* Adjust size as needed */
    margin-bottom: 0.5em;
}

.hero p {
    font-size: 1.5em; /* Adjust size as needed */
}

.messagesent {
    font-size: 2em;
	justify-content: center;
	align-items: center;
	position: relative;
	display: flex;
	color: #ffffff;
}


.cta {
    position: absolute;
    left: 50%;
    top: 75%; /* Positions the top of the CTA at the third quarter of the hero image */
    transform: translate(-50%, -50%); /* Adjusts the position to center it horizontally and slightly up vertically */
    /* Other styles remain unchanged */
    text-align: center;
    color: #fff;
}

.cta h1 {
    font-weight: bold;
    color: #f37422;
}

.cta-button {
    background-color: #f37422;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
}

.gcta {
    color: #fff;
}

.feature-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin: 30px 0;
}

.feature {
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-position: center;
    padding: 30px;
    margin: 0 20px;
    color: #fff;
    text-align: center;
    height: 402px;
    width: 344px;
}

.feature h2 {
    margin-bottom: 10px; /* Adjust spacing as needed */
    align-self: flex-start; /* Aligns to the top */
    font-weight: bold;
    color: #f37422;
    font-size: 2em;
}

.feature h3 {
    margin-top: 0;
    margin-bottom: 5px; /* Adjust spacing above and below the date */
    font-size: 1em; /* Adjust font size as needed */
    color: #fff; /* Adjust color as needed, assuming a light color for visibility */
    font-style: italic;
}

.feature p {
    flex-grow: 1; /* Allows the paragraph to take up available space, pushing the CTA to the bottom */
    display: flex;
    align-items: center; /* Centers the paragraph text vertically */
}

.feature .feature-cta {
    background-color: #f37422;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    align-self: center; /* Centers the CTA button horizontally */
}

.secondary-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 700px; /* Adjust based on your design */
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    padding-left: 5%; /* Adjust this value to align text left */
}

.quote-container .quote {
    font-style: italic;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    font-size: 3em;
}

.quote-container .author {
    text-transform: uppercase;
    color: #f37422;
     font-size: 2em;
}

.instagram-logo {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center; /* Centers the content within the container */
}
.instagram-logo img {
    width: 40%; /* Adjusts the logo's width to 10% of its container */
    height: auto; /* Keeps the aspect ratio of the image */
}

.contact-form-section h2 {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1em;
    font-size: 2em;
    color: #f37422;
    margin: 40px 0;
}

.email-direct {
    text-align: center;
    margin-top: 20px; /* Adds space above the text */
    font-weight: bold;
    font-size: 1.2em;
}

.email-direct a{

    color: #f37422;
}

#contact-form {
    display: flex;
    flex-direction: column;
    max-width: 500px; /* Adjust based on your layout */
    margin: 20px auto;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
    margin-bottom: 1em;
    padding: 0.5em;
    border: 1px solid #ccc; /* Style as needed */
    background-color: #FFEBCD; /* Light orange background */
    font-family: 'Times New Roman', Times, serif;
}
#contact-form button {
    padding: 10px 20px;    
    background-color: #f37422; /* Orange background */
    color: black; /* White text */
    border: none;
    cursor: pointer;
    font-weight: bold; /* Optional: makes the text bold */
    font-family: 'Times New Roman', Times, serif;
    font-size: 1em;
}

footer {
    background: linear-gradient(45deg, #f37422, #000000);
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-top: 40px;  */
    height: 120px;
}

.footer-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    height: 110px; /* Adjust as needed */
}

footer p {
    margin: 0 20px;
    text-align: right;
    font-size: 1.5em;
}

footer a {
    color: white; /* Ensures email link is white */
    text-decoration: none;
    color: #f37422;
}



@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 20px 0; /* Adds space around the header content */
    }

    header .logo {
        width: 50%; /* Adjusts logo to 50% of screen width */
        margin-bottom: 20px; /* Adds space between logo and navigation */
    }

    nav ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap; /* Allows nav items to remain inline */
    }

    nav ul li {
        display: inline-block; /* Keeps nav items inline */
    }

    nav ul li a {
        padding: 10px 15px; /* Adjusts padding for clickable area */
    }
    
    .feature-container {
        flex-direction: column;
        align-items: center; /* Centers the feature divs */
    }

    .feature {
        width: 90%; /* Adjusts width to take more of the screen */
        margin: 10px 0; /* Adds vertical space between stacked divs */
        height: auto; /* Adjusts height automatically based on content */
    }
}
