* {
    overflow: hidden;
}
body {
    background-color: #f7f7f7;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
    overflow: hidden; /* Dikey kaydırmayı engelle */ /* Dikey dokunma hareketlerini engelle */
    display: flex;
    align-items: start;
    justify-content: center;
    height: 100vh;
    overflow-y: hidden;
}
.scroll-wrapper {
    width: 90vw;
    height: calc(90vw * 16 / 9);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}
.scroll-container {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory ;
    scroll-behavior: smooth;
}
.menu-item {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    scroll-snap-align: center;
    position: relative;
}
.menu-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 10%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
    color: white;
    text-align: center;
}
.menu-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.dots-container {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}
.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s ease;
}
.dot.active {
    background-color: white;
}

