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

/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #002244;
    color: #fff;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 150px;
}

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

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.hero {
    text-align: center;
    padding: 50px 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #daa520;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    text-decoration: none;
}

/* About Section */
.about-section {
    background-color: #f4f4f4;
    padding: 50px 0;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.about-section p {
    margin-bottom: 20px;
}

/* Tours Section */
.tours-section {
    padding: 50px 0;
}

.tours-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.tour-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-card h3 {
    padding: 20px;
    margin-bottom: 10px;
}

.tour-card p {
    padding: 0 20px 20px;
}

.tour-button {
    background-color: #002244;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: block;
    margin: 0 auto 20px;
    width: fit-content;
}

/* Kosher Section */
.kosher-section {
    background-color: #f4f4f4;
    padding: 50px 0;
}

.kosher-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.kosher-section p {
    margin-bottom: 20px;
}

.kosher-section ul {
    list-style: disc;
    margin-left: 40px;
}

/* Contact Section */
.contact-section {
    padding: 50px 0;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.contact-section p {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form textarea {
    resize: vertical;
}

.submit-button {
    background-color: #daa520;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    display: block;
    width: 100%;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}
