/* Modern ve şık bir restoran teması için temel CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Nunito:wght@700&display=swap');

/* Koyu turuncu: #e65100 */
:root {
    --main-orange: #e65100;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: #f8f6f3;
    color: #222;
    margin: 0;
    padding: 0;
}
h1, h2, h3 {
    text-align: center;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', 'Inter', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--main-orange);
}
.menu-item h4, .nav-link, .menu-tab, .footer-bottom {
    font-family: 'Inter', Arial, sans-serif;
}

.navbar {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--main-orange);
}
.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
}
.logo img {
    height: 48px;
    border-radius: 8px;
}
.navbar-links {
    display: flex;
    gap: 1.5rem;
}
.nav-link {
    text-decoration: none;
    color: var(--main-orange);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.2s;
    padding: 0.3rem 0.9rem;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, var(--main-orange) 0%, #b85c38 100%);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.nav-link:hover::after, .nav-link.booking-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}
.icon {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}
.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: var(--main-orange);
    border-radius: 2px;
}

.tagesmenu-container, .about-container, .menu-container, .contact-container {
    max-width: 1100px;
    margin: 3rem auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(184,92,56,0.07);
    padding: 2.5rem 2rem;
}
.tagesmenu-selection {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    max-width: 100%;
    box-sizing: border-box;
}
.tagesmenu-item {
    background: #f3e9e2;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(184,92,56,0.08);
    padding: 1.5rem;
    width: 320px;
    max-width: 100%;
    text-align: center;
    box-sizing: border-box;
    word-break: break-word;
}
.tagesmenu-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}
.tagesmenu-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.tagesmenu-list li {
    position: relative;
    padding-left: 0;
    margin-bottom: 0.5rem;
}

.about-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}
.about-img {
    width: 320px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(184,92,56,0.10);
}
.about-text {
    flex: 1;
    font-size: 1.1rem;
}

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.menu-tab {
    background: #f3e9e2;
    border: none;
    border-radius: 8px 8px 0 0;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    color: var(--main-orange);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.menu-tab.active, .menu-tab:hover {
    background: var(--main-orange);
    color: #fff;
}
.menu-category {
    display: none;
    animation: fadeIn 0.5s;
}
.menu-category.active {
    display: block;
}
.menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.menu-item {
    background: #f8f6f3;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(184,92,56,0.07);
    padding: 1rem 1.2rem;
    min-width: 260px;
    flex: 1 1 260px;
    margin-bottom: 0.10rem;
    position: relative;
}
.menu-item h4 {
    margin: 0 0 0.3rem 0;
    color: var(--main-orange);
    font-size: 1.1rem;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
}
.menu-item h4 .allergens {
    font-size: 0.85em;
    font-style: italic;
    color: #a97c50;
    font-weight: 400;
    margin-left: 0.3em;
}
.menu-item p {
    margin: 0 0 0.5rem 0;
    color: #555;
    font-size: 0.87rem;
}
.menu-price {
    position: static;
    display: inline;
    background: none;
    color: #555;
    border-radius: 0;
    padding: 0;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Inter', Arial, sans-serif;
    margin-left: 0rem;
}

.contact-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-form input, .contact-form textarea {
    border: 1px solid #e0d6d0;
    border-radius: 6px;
    padding: 0.7rem;
    font-size: 1rem;
    background: #f8f6f3;
    transition: border 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
    border: 1.5px solid #b85c38;
    outline: none;
}
.contact-form button {
    background: var(--main-orange);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button:hover {
    background: #b84300;
}
.contact-info {
    flex: 1;
    background: #f3e9e2;
    border-radius: 10px;
    padding: 1.5rem;
    font-size: 1rem;
}

.footer-container {
    background: var(--main-orange);
    color: #fff;
    border-radius: 18px 18px 0 0;
    margin-top: 3rem;
    padding: 2rem 0 0 0;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-section {
    flex: 1;
    min-width: 220px;
    margin-bottom: 1.5rem;
}
.footer-section h4 {
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
}
.footer-section a {
    color: #f3e9e2;
}
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}
.footer-social-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    transition: filter 0.2s;
}
.footer-social-icon img:hover {
    filter: brightness(0.7) invert(0.7);
}
.footer-bottom {
    text-align: center;
    padding: 0.7rem 0 0.7rem 0;
    font-size: 0.98rem;
    color: #f3e9e2;
    background: #111;
    border-radius: 0 ;
}
.footer-legal-link {
    color: #f3e9e2;
    font-size: 0.98rem;
    margin: 0 0.3em;
    text-decoration: underline;
    transition: color 0.2s;
}
.footer-legal-link:hover {
    color: #fff;
}
.legal-container {
    max-width: 700px;
    margin: 3rem auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(184,92,56,0.07);
    padding: 2.5rem 2rem;
    font-size: 1.1rem;
    color: #222;
}
.legal-container h1, .legal-container h2 {
    color: var(--main-orange, #e65100);
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(34, 34, 34, 0.45);
    justify-content: center;
    align-items: center;
}
.booking-modal-content {
    background: #fff;
    margin: 5% auto;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    max-width: 420px;
    box-shadow: 0 4px 32px rgba(184,92,56,0.13);
    position: relative;
}
.booking-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--main-orange);
    cursor: pointer;
}
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.booking-form input, .booking-form textarea {
    border: 1px solid #e0d6d0;
    border-radius: 6px;
    padding: 0.7rem;
    font-size: 1rem;
    background: #f8f6f3;
    transition: border 0.2s;
}
.booking-form input:focus, .booking-form textarea:focus {
    border: 1.5px solid #b85c38;
    outline: none;
}
.booking-form button {
    background: var(--main-orange);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.booking-form button:hover {
    background: #b84300;
}

/* Slayt Gösterisi */
.slideshow-container {
    position: relative;
    max-width: 900px;
    margin: 2.5rem auto 2rem auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(184,92,56,0.10);
    background: #fff;
    min-height: 340px;
}
.slideshow-slide {
    display: none;
    width: 100%;
    height: 340px;
    text-align: center;
}
.slideshow-slide.active {
    display: block;
    animation: fadeIn 0.7s;
}
.slideshow-slide img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 18px;
}
.slideshow-prev, .slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(184,92,56,0.85);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}
.slideshow-prev:hover, .slideshow-next:hover {
    background: #a14d2a;
}
.slideshow-prev {
    left: 18px;
}
.slideshow-next {
    right: 18px;
}
@media (max-width: 900px) {
    .navbar-container, .tagesmenu-container, .about-container, .menu-container, .contact-container, .footer-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .about-content, .contact-content, .tagesmenu-selection {
        flex-direction: column;
        align-items: stretch;
    }
    .about-img, .tagesmenu-item {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .slideshow-container {
        max-width: 100vw;
        min-height: 200px;
    }
    .slideshow-slide, .slideshow-slide img {
        height: 200px;
        border-radius: 12px;
    }
    .menu-item {
        padding: 0.2rem 0.2rem;
        min-width: 100px;
        flex: none;
    }
}
@media (max-width: 700px) {
    .tagesmenu-selection {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
    .tagesmenu-item {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}
@media (max-width: 600px) {
    .navbar-links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100vw;
        box-shadow: 0 2px 12px rgba(0,0,0,0.07);
        z-index: 1000;
    }
    .navbar-links.active {
        display: flex;
    }
    .icon {
        display: block;
    }
    .navbar-container {
        padding: 0.5rem 1rem;
    }
    .menu-item {
    flex: none;
        width: auto;
        height: auto;
        box-sizing: border-box;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
