/* nate.css */

/* General Styles */
body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #EFF5F8;
    color: #4B4B4B;
    margin: 0;
    padding: 0;
}

/* Wrapper to center content */
#wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    background-color: #000;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.header-logo img {
    width: 150px;
    cursor: pointer;
}

h1 {
    font-size: 2em;
    margin: 10px 0;
}

/* Navigation Styles */
nav {
    background-color: #b89a2f;
    padding: 10px;
    text-align: center;
}

#navlinks {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#navlinks li {
    display: inline-block;
    margin: 0 15px;
}

#navlinks li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

#navlinks li a:hover {
    text-decoration: underline;
}

/* Search Bar Styles */
.search-container {
    text-align: center;
    margin: 20px 0;
}

.search-box {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.search-button, .clear-button {
    background-color: #CDAC37;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

.search-button:hover, .clear-button:hover {
    background-color: #b89a2f;
}

.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%; /* Adjust the width as needed */
    margin: 0 auto; /* Center the flex container */
    padding: 20px 0; /* Add padding for better spacing */
}

.hebcal-left {
    flex: 1; /* Ensures equal space distribution */
    text-align: left;
}

.logo-center {
    flex: 1;
    text-align: center;
}

.button-right {
    flex: 1;
    text-align: right;
}

.logo {
    max-width: 150px; /* Adjust size of the logo as needed */
    height: auto;
}

.button {
    max-width: 100px; /* Adjust size of the button as needed */
    height: auto;
}

/* Hero Section */
#hero {
    text-align: center;
    margin: 50px 0;
}

#hero img {
    max-width: 400px;
}

#hero p {
    font-size: 1.5em;
    margin-top: 10px;
}

/* Footer Styles */
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
    font-size: 0.9em;
}

footer p {
    margin: 5px 0;
}
