
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(to bottom, #ffffff, #f0f0f0);
    color: #002F6C;
}

header {
    background-color: #002F6C;
    color: white;
    padding: 1em;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.logo {
    width: 250px;
    margin-bottom: 0.5em;
}

nav {
    margin-top: 10px;
}

nav a.btn {
    margin: 5px 8px;
}

nav a {
    margin: 0 15px;
    color: #F6BE00;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #F6BE00;
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.hero {
    text-align: center;
    padding: 4em 2em;
    background: url('pretzel-bg.jpg') no-repeat center center/cover;
    color: white;
    box-shadow: inset 0 0 0 2000px rgba(0, 47, 108, 0.6);
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 1em;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #F6BE00;
    color: #002F6C;
    border-radius: 25px;
    margin: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.btn:hover {
    background: #002F6C;
    color: #F6BE00;
}

.menu, .schedule, .contact {
    padding: 3em 1em;
    text-align: center;
    max-width: 1000px;
    margin: auto;
}

.menu .item {
    background: white;
    border: 1px solid #ccc;
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.05);
}

form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: auto;
    background: white;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.1);
}

form input, form textarea {
    margin-bottom: 1em;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

form button {
    padding: 12px;
    background-color: #002F6C;
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

form button:hover {
    background-color: #F6BE00;
    color: #002F6C;
}

footer {
    background-color: #002F6C;
    color: white;
    text-align: center;
    padding: 1.5em 1em;
    margin-top: 2em;
}

/* Responsive Layout Adjustments */
@media only screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }
    header nav a {
        display: block;
        margin-bottom: 10px;
    }
    .container {
        width: 100%;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    .nav-menu {
        flex-direction: column;
    }
}
