/* Header layout and padding */
header {
    background-color: #062d3a; /* Dark Blue */
    width: 100vw;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Top-align content */
    position: relative;
}

/* Footer layout and background styling */
.site-footer {
    background-color: #062d3a; /* Matches header background color */
    color: #f6efe5; /* Matches light text color used in header */
    text-align: center;
    padding: 20px;
    font-family: 'Inter', sans-serif; /* Consistent font with the rest of the design */
    margin-top: 40px; /* Adds some space between the footer and content above */
}

.site-footer p {
    margin: 0;
    font-size: 14px; /* Adjust font size for readability */
}

/* Footer menu styles */
.footer-menu {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    padding-left: 20px; /* Add some padding from the left edge */
}

.footer-menu a {
    color: #f6efe5;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #ffd700;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow-y: auto; /* Allow modal container to scroll */
}

.modal-content {
    background-color: #f6efe5;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%; /* Slightly wider on mobile */
    max-width: 600px;
    border-radius: 8px;
    position: relative;
    color: #062d3a;
    max-height: 90vh; /* Maximum height of 90% of viewport height */
    overflow-y: auto; /* Make content scrollable */
}

/* Ensure close button stays at top while content scrolls */
.close-modal {
    position: sticky;
    top: 0;
    right: 0;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #062d3a;
    background-color: #f6efe5; /* Match modal background */
    padding: 0 10px;
    z-index: 1;
}

.close-modal:hover {
    color: #ffd700;
}

.modal-content h2 {
    color: #062d3a;
    margin-bottom: 20px;
    padding-top: 10px; /* Add space below sticky close button */
}

.modal-content p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Right-align header content */
.header-right-content {
    text-align: right;
    padding-right: 20px; /* Add some space from the edge */
}

header img[src="img/Howdy_Clowdy_Vertical_Typography-light.png"] {
    max-width: 250px; /* Limit the size of the logo */
    height: auto;
    margin: 0;
}
.text-container {
    margin-bottom: 1rem; /* Space between the paragraph and the button */
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 600px; /* Control the max size of the image */
    margin: 20px auto;
    display: block;
    border-radius: 10px; /* Optional styling to round the corners */
}




