/* Genel Stil (Mevcut kodunuz) */
body {
    font-family: 'Georgia', serif;
    background-color: #fce8e6;
    color: #4a2323;
    display: flex;
    justify-content: center;
    padding: 20px;
    margin: 0;
}

.menu-container {
    background-color: #fffaf0;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 100%;
    text-align: center;
}

.header-content {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    margin-bottom: 25px;
}

.logo {
    margin-top: 20px;
    margin-right: 20px;
}

.logo img {
    max-height: 200px;
    width: 250px;
    border: 3px solid #e1b181;
}


.social-icons a {
    color: #c9825b; 
font-size:2rem;
    text-decoration: none; 
    transition: color 0.3s ease; 
}

.social-icons a:hover {
    color: #6a3d34; 
font-size:2rem;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9em;
    color: #6a3d34;
    margin-top: 0;
    margin-bottom: 30px;
    letter-spacing: 2px;
}


.category {
    margin-top: 35px;
}

.category h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    color: #c9825b;
    border-bottom: 2px solid #e1b181;
    padding-bottom: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #e1b181;
}

.item:last-child {
    border-bottom: none;
}

.product-name {
    font-weight: bold;
    font-size: 1.1em;
}

.price {
    color: #4a2323;
    font-weight: bold;
    font-size: 1.1em;
}

.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed #e1b181;
    text-align: center;
    font-size: 0.9em;
    color: #7d4d4d;
}

.footer p {
    margin: 5px 0;
}

.footer .copyright {
    margin-top: 15px;
    font-size: 0.8em;
}

@media (max-width: 768px) {
    .menu-container {
        padding: 20px;
    }

    h1 {
        font-size: 2em;
    }

    .logo img {
        max-width: 100px; 
    }

    .social-icons a {
        font-size: 2em; 
    }
}