* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    position: relative;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 2rem 2rem 110px;
    position: relative;
}

/* Coffee beans background decoration */
.container::before {
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 250px;
    background-image: url('coffee-beans.jpg');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    opacity: 0.8;
    background-position: -30px center; /* Soldan 20px sola kaydırır */
    z-index: -1;
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.menu {
    display: grid;
    gap: 1.5rem;
}

.menu-item {
    border-bottom: 1px dotted #ccc;
    padding-bottom: 1rem;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.price::after {
    content: ' ₺';
}

.description {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

footer p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}
footer p a {
text-decoration:none;

color:#333;
}
/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem 1rem 1rem 110px;
    }

    .container::before {
        width: 180px;
    }

    h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem 1rem 1rem 90px;
    }

    .container::before {
        width: 120px;
    }

    h1 {
        font-size: 1.8rem;
    }
} 