/* Reset some basic elements for cross-browser consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #96d2b9; /* Minty Green */
    color: #333;
    line-height: 1.6;
    padding-top: 60px;
}

/* Header styling */
header {
    background-color: #0b3e22; /* Dark Green */
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo-container {
    flex-shrink: 0;
}

.logo {
    width: 75px;
    height: 75px;
}

.menu {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    list-style: none;
}

.menu li {
    margin: 0 20px;
}

.menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.menu li a:hover {
    color: #71c48e; /* Light Green */
}

/* Main section styling */
main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero section on the home page */
#hero {
    background-color: #0b3e22; /* Dark Green */
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 80%; /* Set this to your desired width */
    max-width: 1000px; /* Set a max-width to prevent it from getting too wide */
    margin: 0 auto; /* Centers the container */
	padding-top: 0px; /* Adjust this to move the logo closer to the top */
}

#logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5px;
}

#logo {
    width: 125px;
    height: 125px;
    border-radius: 50%; /* Makes the logo round */
    margin-bottom: 0px;
    object-fit: cover; /* Ensures the image covers the area within the circle */
}

#hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
    color: #96d2b9; /* Minty Green */
    font-family: 'Tw Cen MT', sans-serif; /* Apply Tw Cen MT font */
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Video Wrapper */
#video-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Play Button */
#playButton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.7); /* A white background */
    border-radius: 50%; /* Make it circular */
    border: 2px solid #0b3e22; /* Dark green border for contrast */
    cursor: pointer;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#playButton:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 18px solid #0b3e22; /* Dark green color */
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

#playButton:hover {
    opacity: 1.0;
}

/* Video Element */
#promoVideo {
    display: block;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Subscribe Button Container */
#subscribe-container {
    text-align: center;
    margin-top: 20px;
}

/* Subscribe Button Styling */
#subscribe-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #71c48e; /* Light Green */
    color: #0b3e22; /* Dark Green */
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

#subscribe-button:hover {
    background-color: #71c48e; /* Bright Green */
}

/* Section headings */
section h1 {
    color: #0b3e22; /* Dark Green */
    font-size: 2em;
    margin-bottom: 20px;
    border-bottom: 2px solid #71c48e; /* Bright Green */
    display: inline-block;
    padding-bottom: 10px;
}

/* Container styling for all pages */
.container {
    background-color: #0b3e22; /* Dark Green */
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 80%; /* The container takes up 80% of the available width */
    max-width: 1000px; /* The container will not exceed 1000px in width */
    margin: 20px auto; /* Centers the container and adds margin on top and bottom */
}

/* Form styling on Contact page */
form label {
    display: block;
    margin: 15px 0 5px;
    font-weight: bold;
    color: #0b3e22; /* Dark Green */
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #4c745c; /* Muted Green */
    border-radius: 4px;
    background-color: #f0f2f5; /* Light background for contrast */
}

form button {
    background-color: #71c48e; /* Light Green */
    color: #0b3e22; /* Dark Green */
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #71c48e; /* Bright Green */
}

/* Footer styling */
footer {
    background-color: #0b3e22; /* Dark Green */
    color: #fff;
    text-align: center;
    padding: 5px 0; /* Reduced padding for a more compact height */
    margin-top: 0px; /* Removed margin-top to eliminate extra space above the footer */
    position: relative;
    width: 100%;
    bottom: 0;
}

/* Media Kit List */
#media-kit ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

#media-kit ul li {
    margin-bottom: 15px;
}

#media-kit ul li a {
    color: #0b3e22; /* Dark Green */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

#media-kit ul li a:hover {
    color: #71c48e; /* Light Green */
}
