﻿.video-container {
    width: 100%;
    overflow: hidden;
}

.background-video {
    height: 90vh;
    width: 100%;
    margin-bottom: -8px;
    object-fit: cover;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 48px;
}

.line {
    height: 56px;
    width: calc(100% + 200px);
    margin: 0;
    padding-top: 6px;
    position: relative;
    background-color: var(--fry-time-yellow);
    overflow: hidden;
}

.potato-strip-right {
    height: 60px;
    background-image: url('../assets/images/fries-mirror.svg');
    background-repeat: repeat-x;
    background-position: 0 center; /* Başlangıç pozisyonu */
    background-size: 120px 75%;
    animation: slide-right 5s linear infinite; /* Süreyi istediğin gibi ayarla */
}

@keyframes slide-right {
    0% {
        background-position: -120px center; /* Başlangıç: Sola kaydırılmış */
    }

    100% {
        background-position: 120px center; /* Bitiş: Sağa kaydır */
    }
}

.potato-strip-left {
    height: 60px;
    background-image: url('../assets/images/fries.svg');
    background-repeat: repeat-x;
    background-position: 0 center; /* Başlangıç pozisyonu */
    background-size: 120px 75%;
    animation: slide-left 2.5s linear infinite;
}

@keyframes slide-left {
    0% {
        background-position: 0 center;
    }

    100% {
        background-position: -120px center; /* Arka plan resminin genişliği kadar kaydır */
    }
}

.potato-image {
    width: 36px;
    margin-right: 36px;
    pointer-events: none;
    user-select: none;
}

.non-selectable {
    pointer-events: none;
    user-select: none;
}

.menu-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    padding: 1rem;
}

.row {
    overflow: hidden;
}

.menu-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

@media (max-width: 768px) {
    .menu-text {
        text-align: left;
        margin-top: 2rem;
    }

    .background-video {
        height: 50vh;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 32px;
    }

    .sauce-image {
        max-width: 100%;
        height: auto;
        width: 100px;
    }

    .menu-div {
        padding-left: 0px;
        padding-right: 0px;
    }
}

.rotate-right {
    transform: skewY(2deg);
}

.rotate-left {
    transform: skewY(-2deg);
}

.menu-div {
    background-color: var(--fry-time-bright-yellow);
    transform: skewY(2deg);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 60px;
    padding-right: 60px;
    margin-right: auto;
    margin-left: auto;
}

.menu-container {
    padding: 20px;
    overflow: hidden;
}

.sauce-image {
    max-width: 100%;
    height: auto;
    width: 300px;
}

.our-restaurant {
    color: silver;
    background: linear-gradient(to bottom, transparent, var(--fry-time-red) 10%, var(--fry-time-black));
}

.our-restaurant h1 {
    color: var(--fry-time-white);
}

.our-restaurant-info {
    font-size: 24px;
}

.about {
    background-color: var(--fry-time-black);
    color: var(--fry-time-white);
}

    .about h2 {
        font-weight: 700;
        color: var(--fry-time-yellow);
    }

    .about p {
        line-height: 1.6;
        color: var(--fry-time-white);
    }

img {
    border-radius: 10px;
    max-height: 400px;
    object-fit: cover;
}

