/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #f4f4f4;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h2 {
    padding-top: 20px;
}


/* Hero Section background: url('/Users/aribeiroloureiro/Private/Sercys/Test/web-backgroundr.png') no-repeat center center/cover;*/
.hero {
    background: url('web-backgroundr.png') no-repeat center center/cover;
    color: white;
    height: 100vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
    background: rgba(0, 0, 0, 0);
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 15px;
}

.nav-links li {
    display: inline;
    margin: 0 5px;
    padding-right: 15px;
}

.hero-content {
    padding-top: 120px;
    max-width: 700px;
    color: black;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: white;
}

.hero-content .btn {
    background: #e63946;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.2em;
    margin-top: 20px;
    display: inline-block;
}

/* Sections */
section {
    text-align: center;
}

.menu-section, .about-section, .contact-section {
    background: #f4f4f4;
}

/* Menu Section */
.menu-container {
    display: flex;
    justify-content: space-between;
    align-items: top;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    height: fit-content;
}

.menu-left {
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    height: fit-content;
}
.menu-right {
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    height: fit-content;
    align-self: center;
}

.Lieferando{
    margin: 50px;
}

.button-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;

}

.button-speisekarte{
    align-items: center;
    margin-bottom: 20px;
}

.button-left{
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}
.button-right {
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}


.menu-left {
    background: #f4f4f4; /* Light background for left half */
    font-size: 1.2em;
}

.menu-right {
    background: #f4f4f4; /* White background for right half */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-right p {
    margin-bottom: 20px;
    font-size: 1.2em;
}

.order-button {
    background: #e63946;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}


.lieferando-button {
    background: #333333;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.order-button:hover {
    background: #d0273a;
}

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

.map-container {
    position: relative;
    width: 100%;
    max-width: 1200px; /* Limit the maximum width */
    margin: 0 auto; /* Center the container */
    padding-top: 30%; /* Maintain 16:9 aspect ratio */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer-buttons {
    text-align: center;
    margin-top: 20px;
}

.footer-button {
    text-decoration: underline;
    color: white; /* Adjust to match your design */
    font-size: 14px;
    padding: 5px 10px;
    display: inline-block;
}


.footer-separator {
    margin: 0 20px; /* Adds space between links */
    color: #000;
    font-size: 14px;
    vertical-align: middle;
}


@media (max-width: 768px) {
    .map-container {
        padding-top: 75%; /* Adjust for smaller screens (e.g., 4:3 ratio) /Users/aribeiroloureiro/Private/Sercys/Test/hintergrund.png*/
    }

    .hero {
    background: url('hintergrund.png') no-repeat center center/cover;
    color: white;
    height: 100vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


