body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding-bottom: 0; /* remove extra space under footer */
}

.header {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.lang-buttons {
    position: absolute;
    top: 10px;
    right: 10px;
}

.lang-buttons button {
    background-color: #f1f1f1;
    border: none;
    color: #333;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
    margin-left: 5px;
}

.lang-buttons button:hover {
    background-color: #ddd;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    max-width: 250px;
}

.contact-info {
    display: flex;
    flex-direction: column; /* address on its own line */
    align-items: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.contact-buttons {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

.contact-info p {
    margin: 0;
    font-size: 1.1em;
    color: #555;
    cursor: pointer;
}

.contact-info p:hover {
    color: #d9534f; /* A subtle hover effect */
}

.call-button, .yemeksepeti-button {
    display: inline-flex;
    align-items: center;
    background-color: #d9534f;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.call-button:hover, .yemeksepeti-button:hover {
    background-color: #c9302c;
}

.call-button i {
    margin-right: 10px;
}

.yemeksepeti-button img {
    height: 20px;
    margin-right: 10px;
}

.yemeksepeti-button {
    background-color: #000000ba;
}

.yemeksepeti-button:hover {
    background-color: #000000;
}

.menu-container {
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

h1 {
    text-align: center;
    color: #d9534f;
    margin-bottom: 30px;
}

.accordion {
    background-color: #f1f1f1;
    color: #444;
    cursor: pointer;
    padding: 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1em;
    transition: 0.4s;
    margin-top: 10px;
    border-radius: 5px;
}

.active, .accordion:hover {
    background-color: #ddd;
}

.panel {
    padding: 0 20px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
}

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

li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    font-size: 1em;
}

li:last-child {
    border-bottom: none;
}

li span {
    margin-left: 15px;
    font-weight: 500;
    color: #d9534f;
}

.footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.social-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-link {
    color: #555;
    font-size: 1.1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.social-link:hover {
    background-color: #f1f1f1;
    color: #000;
}

.pdf-button {
    display: inline-block;
    background-color: #5bc0de;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s;
}

.pdf-button:hover {
    background-color: #46b8da;
}


@media (max-width: 768px) {
    .header {
        padding: 15px;
    }

    .logo {
        max-width: 200px;
    }

    .contact-info {
        width: 100%;
    }

    .contact-info p {
        font-size: 1em;
    }

    .call-button, .yemeksepeti-button {
        padding: 10px 20px;
        font-size: 1.1em;
        width: 80%;
        box-sizing: border-box;
        justify-content: center;
    }

    .menu-container {
        width: 100%;
        margin: 0;
        padding: 15px;
        border-radius: 0;
        box-shadow: none;
    }

    h1 {
        font-size: 1.8em;
    }

    .accordion {
        font-size: 1em;
        padding: 15px;
    }

    li {
        font-size: 0.95em;
    }
}
