
/* color palette 
   #8EC63F - green
   #FBFBE5 - light yellow * background
   #FFFFED - new background
   #212624 - dark grey
   #CBEA9F - light green

*/


body
{
    background-color: #FFFFFD;
    font-family: 'Questrial', sans-serif;
     margin: 0;
    width: 100%;
    height: 100%;
}


/*promo-banner */

.promo-banner-link {
    display: block; /* Tüm alanı kaplaması ve tıklanabilir olması için */
    text-decoration: none; /* Link altı çizgisini kaldır */
    color: inherit; /* Varsayılan metin rengini alır (aşağıda ezilecek) */
	
    position: sticky;         /* 'fixed' yerine 'sticky' kullanın */
    top: 0;                   /* Sayfanın en üstüne yapışmasını sağlar */
    /* left: 0; */            /* Genellikle tam genişlikli bir 'sticky' eleman için 'left: 0;' gerekmez ama kalabilir. */
    width: 100%;
    z-index: 1000;
}

.promo-banner {
    background-color: #FF5757 ; /* YEŞİL - Bant arka planı */
    color: #FBFBE5;           /* AÇIK SARI - Genel metin rengi */
    padding: 12px 15px;      /* Bant içi boşluklar */
    text-align: center;
    font-size: 0.95em;       /* Yazı boyutu (isteğe bağlı) */
    line-height: 1.4;
}

.promo-banner-content {
    display: flex;
    flex-wrap: wrap; /* Küçük ekranlarda alt alta geçiş için */
    justify-content: center; /* İçeriği ortala */
    align-items: center; /* Dikeyde ortala */
    gap: 10px 25px; /* Dikey ve yatay boşluklar */
}

.promo-banner .promo-text {
    flex-grow: 1; /* Metnin uygun alanı kaplamasını sağlar */
    text-align: center; /* Metni ortala (flex içinde zaten ortalı ama yine de belirtelim) */
}

.promo-banner .promo-text .highlight-promo {
    color: #FBFBE5;; /* KIRMIZI - Vurgu metni rengi */
    font-weight: bold; /* Vurguyu artır */
}

.promo-banner .countdown-timer-container {
    font-weight: bold;
    white-space: nowrap; /* "Kalan süre: HH:MM:SS" metninin tek satırda kalmasını sağlar */
    color: black; */ /* Saf beyaz da tercih edilebilir açık sarı yerine */
}

#promoBannerCountdown {
    /* Sayaç rakamları için özel bir stil gerekirse buraya eklenebilir */
}


/*promo-banner-last */

.questrial-regular {
  font-family: "Questrial", serif;
  font-weight: 400;
  font-style: normal;
}


/*ilk nav  
nav
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav img
{
    width: 40%;
    margin-left: 10%;
}

nav ul
{
    display: flex;
    justify-content: space-between;
    width: 50%;
    margin-right: 10%;
}

.nav-buttons
{
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    width: 60%;
    margin-right: 5%;
}

*/
/* son eklenen nav */
nav {
display: flex; /* Ana taşıyıcıyı flex container yapar */
  justify-content: space-between; /* Öğeler arasına boşluk koyar, ilk öğeyi başa, son öğeyi sona yaslar */
  align-items: center; /* Öğeleri dikeyde ortalar */
  padding: 10px 5%; /* İsteğe bağlı: Kenarlara biraz boşluk ekleyebilirsiniz */
  /* width: 100%; */ /* Genellikle nav etiketi blok seviyesinde olduğu için tam genişlikte olur, gerekirse ekleyebilirsiniz */
}

.evimden-logo img {
  width: 45%; /* Logonuzun boyutunu buradan ayarlayabilirsiniz. %40 çok büyük olabilir. */
  /* margin-left: 10%; Bu artık gerekmeyebilir, space-between halledecektir. */
  display: block; /* Resmin gereksiz boşluk bırakmasını engeller */
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.my-orders-btn {
    background-color: #8EC63F;
    color: #FBFBE5;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font: 1.1em 'Questrial', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
}

.my-orders-btn:hover {
    background-color: #FBFBE5;
    color: #8EC63F;
    border: 1px solid #8EC63F;
}


/* Eski CSS kurallarınızdan bazıları artık gereksiz olabilir veya düzenlenmesi gerekebilir: */
/*
nav img {
  width: 40%;
  margin-left: 10%;
}

nav ul {
  display: flex;
  justify-content: space-between;
  width: 50%;
  margin-right: 10%;
}

.nav-buttons {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  width: 60%;
  margin-right: 5%;
}
*/
/* son eklenen son */

.order-button a {
    background-color: #8EC63F;
    color: #FBFBE5;
    padding: 12px 30px 12px 45px;
    border-radius: 5px;
    font: 1.3em 'Questrial', sans-serif;
    text-decoration: none;
    border: 2px solid #8EC63F;
    box-shadow: 0 4px 6px rgba(142, 198, 63, 0.2);
    transition: all 0.3s ease;
    font-weight: bold;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.order-button a:hover {
    background-color: #8EC63F;
    color: #FBFBE5;
    border: 2px solid #8EC63F;
    box-shadow: 0 6px 12px rgba(142, 198, 63, 0.4);
    transform: translateY(-2px) scale(1.02);
}

.order-button a:before {
    content: '🍽️';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.order-button a:hover:before {
    opacity: 1;
    left: 20px;
}


.sss a
{
    text-decoration: none;
    color: #8EC63F;
    font: 1.4em 'Questrial', sans-serif;
}

.register-button a{

    background-color: #8EC63F;
    color: #FBFBE5;
    padding: 10px 20px;
    border-radius: 5px;
    font: 1.2em 'Questrial', sans-serif;
    text-decoration: none;
}

.sss a:hover
{
    background-color: #FBFBE5;
    color: #8EC63F;
    font: 1.42em 'Questrial', sans-serif;
}


.register-button a:hover
{
    background-color: #FBFBE5;
    color: #8EC63F;
    border: 1px solid #8EC63F;
}


.entry-page {
    position: relative; /* Konumlandırma için gerekli */
    display: inline-block; /* Resimlerin birbiriyle uyumlu olması için */
}

/* Ana resim */
.main-image {
    width: 100%;
    height: 100%; /* Yükseklik ayarla */
}
.overlay-image {
    position: absolute; /* Üst üste koymak için */
    top: 10%; /* Yatay konumu ayarla */
    left: 2%; /* Sağdan hizalama */
    width: 37%; /* Eklenen resmin boyutunu ayarla */
}


.about-us-chef h2{
    text-align: center;
    font: 2.5em 'Questrial', sans-serif;
    color: #8EC63F;
    margin-top: 5%;
    margin-bottom: 5%;
    padding: 0 20%; /* Sağdan ve soldan 20px boşluk */
    box-sizing: border-box; /* Padding dahil genişliği doğru hesaplar */
}


.about-us h2{
    text-align: center;
    font: 2.5em 'Questrial', sans-serif;
    color: #8EC63F;
    margin-top: 5%;
    margin-bottom: 5%;
    padding: 0 20%; /* Sağdan ve soldan 20px boşluk */
    box-sizing: border-box; /* Padding dahil genişliği doğru hesaplar */
}


.about-us h3 {
    text-align: center;
    font: 1.7em 'Questrial', sans-serif;
    color: #8EC63F;
    margin-top: 5%;
    margin-bottom: 5%;
    padding: 15px 20%;
    box-sizing: border-box;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 1.5px;
    border-top: 2px solid #8EC63F;
    border-bottom: 2px solid #8EC63F;
    transition: all 0.3s ease-in-out;
}

.about-us h3:hover {
    color: #76A52F;
    text-shadow: 3px 3px 7px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}


.restaurant{
    font-size: 2em;

}

.hw-title {
    font: 2.5em 'Questrial', sans-serife:
    color: #8EC63F;
    text-align: center;
    box-sizing: border-box; /* Padding dahil genişliği doğru hesaplar */
}

.how-it-works {
    margin-top: 5%;
    padding: 0 10%; /* Sağdan ve soldan boşluk */
    box-sizing: border-box; /* Padding'i genişliğe dahil et */
    text-align: center; /* Başlık için hizalama */
    font: 1.5em 'Questrial', sans-serif;
    color: #8EC63F;
    margin-bottom: 5%;
    display: flex; /* Flexbox kullanımı */
    justify-content: space-between; /* Görseller arasında eşit boşluk */
    align-items: center; /* Dikey ortalama */
    flex-wrap: wrap; /* Görsellerin taşması durumunda yeni satıra geçmesi */
}

/*
.how-it-works img {
    width: 20%; 
    margin: 0 10px; 
    flex-shrink: 0;
}
*/

.register-h1
{
    text-align: center;
    font: 1.5em 'Questrial', sans-serif;
    color: #8EC63F;
    margin-top: 5%;
    padding: 0 10%; /* Sağdan ve soldan 20px boşluk */
    box-sizing: border-box; /* Padding dahil genişliği doğru hesaplar */
}


.register-form-container
{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
}

.register-form
{
    width: 33%;
    padding: 20px;
    background-color: #CBEA9F;
    border-radius: 10px;
    box-sizing: border-box; /* Padding dahil genişliği doğru hesaplar */
}

.form-class
{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    padding: 10%;
    width: 100%;
    border-radius: 5px;
    box-sizing: border-box; /* Padding dahil genişliği doğru hesaplar */
}

.form-class input
{
    padding: 5%;
    margin-bottom: 5%;
    border: none;
    border-radius: 5px;
    box-sizing: border-box; /* Padding dahil genişliği doğru hesaplar */
}
.form-class label
{
    font: 1em 'Questrial', sans-serif;
    color: #212624;
    margin-bottom: 5px;
}

.form-class select
{
    padding: 5%;
    margin-bottom: 5%;
    border: none;
    border-radius: 5px;
    box-sizing: border-box; /* Padding dahil genişliği doğru hesaplar */
}

.question-cook-routine {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    align-items: center;
}

.option-buttons {
    display: flex;
    box-sizing: border-box;
    align-items: center;
}

.option-button{
    display: inline-block;
    cursor: pointer;
    box-sizing: border-box;
    background-color: #8EC63F;
    color: #FBFBE5;
    margin: 20px;
    padding: 10px 20px;
    border-radius: 5px;
    align-items: center;
    font: 1.2em 'Questrial', sans-serif;
    text-decoration: none;
    justify-content: space-between;
}

.option-button:hover {
    background-color: #FBFBE5;
    color: #8EC63F;
    border: 1px solid #8EC63F;
}
.option-button.selected {
    background-color: #FBFBE5;
    color: #8EC63F;
    border: 1px solid #8EC63F;
}


.form-class button
{
    cursor: pointer;
    background-color: #8EC63F;
    color: #FBFBE5;
    padding: 20px 20px;
    border-radius: 5px;
    font: 1.2em 'Questrial', sans-serif;
    text-decoration: none;
    border: 1px solid #FBFBE5;
    margin-top: 10%;
    /* shadow */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.form-class button:hover
{
    background-color: #FBFBE5;
    color: #8EC63F;
    border: 1px solid #8EC63F;
}

.customer-comments
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
    padding: 0 10%; /* Sağdan ve soldan boşluk */
    box-sizing: border-box; /* Padding'i genişliğe dahil et */
}

.customer-comments img
{
    width: 75%; /* Görsellerin genişliği (yüzdeyle) */
    margin: 0 10px; /* Sağ ve sol boşluk */
    flex-shrink: 0; /* Görsellerin küçülmesini engeller */
}

.CX-title {
    padding: 5%;
    text-align: center;
    color: #8EC63F;
    box-sizing: border-box; /* Padding dahil genişliği doğru hesaplar */
}

.SSS{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15%;
    padding: 0 10%; /* Sağdan ve soldan boşluk */
    box-sizing: border-box; /* Padding'i genişliğe dahil et */
}

.SSS img{
    width: 70%; /* Görsellerin genişliği (yüzdeyle) */
    margin: 0 10px; /* Sağ ve sol boşluk */
    flex-shrink: 0; /* Görsellerin küçülmesini engeller */
}


footer
{
     display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 5%;
    box-sizing: border-box; /* Padding'i genişliğe dahil et */
}
footer img{
    width: 100%; /* Görsellerin genişliği (yüzdeyle) */
    flex-shrink: 0; /* Görsellerin küçülmesini engeller */
}


.popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #FBFBE5;
            padding: 5%;
            box-shadow: 0 10px 8px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            border-radius: 10px;
        }
.popup.success {
            border: 2px solid #CBEA9F;
            color: #8EC63F;
}
.popup.error {
  border: 2px solid #f44336;
  color: #f44336;
}

.popup button {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #8EC63F;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


.email-popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            border: 2px solid #8EC63F;
            border-radius: 10px;
            padding: 20px;
            z-index: 1000;
            text-align: center;
            width: 30%; /* Sayfanın %30'unu kaplayacak */
            max-width: 400px; /* Maksimum genişlik ayarı */
            box-sizing: border-box; /* Padding ve border'ı genişliğe dahil et */
        }

        .email-popup input {
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #8EC63F;
            border-radius: 5px;
            width: 80%; /* Genişliği %70 yap */
            position: absolute; /* Resmin üzerine yerleştirmek için */
            bottom: 20%; /* Resmin altından %30 yukarıda */
            left: 50%;
            transform: translateX(-50%); /* Ortalamak için */
        }

        .close-btn {
            display: none;
            background: #8EC63F;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            position: absolute; /* Kapatma butonunu kutunun dışında konumlandır */
            top: 10px;
            right: 10px;
        }

        .close-btn.show {
            display: block;
        }

        /* Resim için stil ayarları */
        .email-popup img {
            width: 100%; /* Resim genişliği %100 olacak */
            height: auto; /* Orantılı yükseklik */
        }

        /* Gönder butonu için stil ayarları */
        .submitEmailDiscount {
            background-color: #8EC63F; /* Buton rengi */
            color: rgb(0, 0, 0); /* Yazı rengi */
            border: none; /* Kenar yok */
            padding: 10px 20px; /* İç boşluk */
            border-radius: 10px; /* Kenar yuvarlama */
            cursor: pointer; /* İmleç değişimi */
            position: absolute; /* Resmin üzerine yerleştirmek için */
            bottom: 10%; /* Resmin altından %10 yukarıda */
            left: 50%;
            transform: translateX(-50%); /* Ortalamak için */
        }

	.price {
    position: relative;
    font-size: 1.5em; /* Yeni fiyat boyutu */
    color: #8EC63F; /* Yeni fiyat rengi */
}

.old-price {
    text-decoration: line-through; /* Üstü çizili */
    color: red; /* Eski fiyat rengi */
    margin-bottom: 5px; /* Alt boşluk */
    font-size: 0.8em; /* Eski fiyat boyutunu küçült */
    display: block; /* Yeni satıra taşımak için */
}


.new-price {
    font-weight: bold; /* Yeni fiyat kalın */
}


.date-hint {
    display: block;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.9em;
    animation: blinkText 2s infinite;
}

@keyframes blinkText {
    0% { color: #666; }
    50% { color: #8EC63F; }
    100% { color: #666; }
}

.sliding-image {
            position: fixed;
            right: -100%;
            top: 20%;
            transform: translateY(-50%);
            transition: right 1s ease;
            z-index: 100;
        }

        .sliding-image.show {
            right: 0;
        }
        .image-link img {
            max-width: 300px;
            height: auto;
            display: block;
            border-radius: 12px;
        }


	   .whatsapp-container {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1001;
    }

    .whatsapp-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        background-color: #25D366;
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        animation: pulse 2s infinite;
    }

    .whatsapp-button i {
        font-size: 35px;
        color: white;
    }

    .whatsapp-button:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    }

    .whatsapp-bubble {
        position: absolute;
        bottom: 75px;
        right: 0;
        background-color: white;
        padding: 10px 15px;
        border-radius: 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        width: max-content;
        max-width: 200px;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.5s ease forwards;
        border: 2px solid #8EC63F;
    }

    .whatsapp-bubble p {
        margin: 0;
        font-size: 14px;
        color: #333;
        font-family: 'Questrial', sans-serif;
    }

    .whatsapp-bubble::after {
        content: '';
        position: absolute;
        bottom: -10px;
        right: 25px;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid white;
    }

    .whatsapp-bubble::before {
        content: '';
        position: absolute;
        bottom: -12px;
        right: 23px;
        width: 0;
        height: 0;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 12px solid #8EC63F;
        z-index: -1;
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
        }
        70% {
            box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

.sliding-banner-container {
    background-color: #8EC63F; /* Banner arka plan rengi */
    color: #FBFBE5; /* Banner metin rengi */
    position: fixed; /* Sayfada sabit kalmasını sağlar */
    bottom: 0; /* Sayfanın en altına hizalar */
    left: 0; /* Sol tarafa hizalar */
    width: 100%; /* Tüm sayfa genişliğini kaplar */
    padding: 10px 0; /* Üst ve alt iç boşluk */
    overflow: hidden; /* Kapsayıcı dışına taşan metni gizler */
    white-space: nowrap; /* Metnin alt satıra geçmesini engeller */
    box-sizing: border-box; /* Padding ve border'ı genişliğe dahil eder */
    z-index: 1000;
}

.sliding-text {
    display: inline-block; /* Metinlerin yan yana durmasını sağlar */
    /* Animasyon adı, süresi, zamanlama fonksiyonu, gecikmesi, tekrar sayısı, yönü */
    animation: slideToLeft 20s linear infinite;
    /* Metin içeriğinin yaklaşık iki katı genişlikte olmalı,
       ancak animasyon bunu zaten hallediyor.
       Daha hızlı veya yavaş akış için animasyon süresini (20s) ayarlayabilirsiniz.
    */

}

.sliding-text span {
    padding-right: 50px; /* İki metin arasında biraz boşluk bırakır */
}

   @keyframes slideToLeft {
    0% {
        transform: translateX(150%);
   }
    100% {
        transform: translateX(-100%);
    }
}

.promo-banner-order {
    background-color: #FF5757;
    color: #FBFBE5;
    padding: 12px 15px;
    text-align: center;
    font-size: 1.4em;
    line-height: 1.4;
    }

    .countdown-timer-container-order{
	    color:black;
    }

@media screen and (max-width: 1149px) {
/*promo-banner */

	.promo-banner-order {
    background-color: #FF5757;
    color: #FBFBE5;
    padding: 12px 15px;
    text-align: center;
    font-size: 0.95em;
    line-height: 1.4;
}

 .promo-banner-order .countdown-timer-container-order {
       font-weight: bold;
       white-space: nowrap; /* "Kalan süre: HH:MM:SS" metninin tek satırda kalmasını sağlar */
       color: black; */ /* Saf beyaz da tercih edilebilir açık sarı yerine */
   }

    .promo-banner {
        padding: 10px;
        font-size: 1.88em;
    }

    .promo-banner-content {
        flex-direction: column; /* Küçük ekranlarda elemanları dikeyde sırala */
        gap: 8px; /* Dikey sıralamada boşluk */
    }
    .promo-banner .promo-text {
        margin-bottom: 5px; /* Metin ve sayaç arasında boşluk */
    }

/*promo-banner-last  */	
      
	nav {
        align-items: center;
        padding: 5% 5%;
    }

    .evimden-logo {
        display: flex;
	width: 35%;
        justify-content: center;
        align-items: center;
	max-width:400px;
    }
	
    .evimden-logo img {
    width: 100%;
    display: block;
}
    .sliding-text span {
        font-size: 1.2rem; /* Mobil için yazı boyutunu biraz büyütüyoruz */
    }

    .sliding-banner-container {
        padding: 8px 0; /* Banner'ın üst ve alt iç boşluğunu mobil için biraz azaltabiliriz */
    }

.whatsapp-container {
            bottom: 2%;
            right: 2%;
        }

        .whatsapp-button {
           text-decoration: none;
	    width: 15vw; /* Ekran genişliğinin %20'si */
            height: 15vw; /* Ekran genişliğinin %20'si */
            min-width: 40px; /* Minimum boyut */
            min-height: 40px; /* Minimum boyut */
	    line-height: 1;
        }

        .whatsapp-button i {
            font-size: 10vw; /* İkon boyutu ekran genişliğinin %10'u */
            min-font-size: 35px; /* Minimum font boyutu */
        }

        .whatsapp-bubble {
            bottom: calc(20vw + 10px); /* WhatsApp butonunun üstünde */
            right: 0;
            width: 28vw; /* Ekran genişliğinin %60'ı */
            max-width: none;
            padding: 15px;
        }

        .whatsapp-bubble p {
            font-size: 3vw; /* Metin boyutu ekran genişliğinin %4'ü */
            min-font-size: 16px; /* Minimum font boyutu */
            margin: 0;
            line-height: 1.3;
        }
	
         .sliding-image {
        width: 35vw; /* Mobilde ekranın %35'ini kaplamasını sağlar */
        max-width: 35%;
    }


                .image-link img {
                width: 100%; /* İçindeki img, parent genişliğini alsın */
        height: auto;
object-fit: contain;
                }

            .sliding-image.show {
                right: -20px;
            }

    nav img {
        width: 66%;
        margin: 0;
    }

    ul.nav-buttons {
        flex-direction: column;
    }
	
    .sss a { 
    font-size: 2em;
    }
    ul.nav-buttons li {
        margin: 15% 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;

    }

       .overlay-image {
        width: 40%;
        top: 15%;
    }


    .about-us h2 {
        font-size: 3em;
        padding: 0 5%;
        margin-bottom: 5%;
    }

    .about-us-chef h2 {
        font-size: 3.7em;
        padding: 0 5%;
        margin-bottom: 5%;
    }

    .about-us h3 {
        font-size: 1.3em;
        padding: 0 5%;
        margin-bottom: 5%;
    }

/*
    .how-it-works {
        flex-direction: column;
        align-items: center;
    }

    .how-it-works img {
        width: 70%;
        margin-bottom: 20px;
    }*/

    .register-button a {
        width: 100%;
        text-align: center;
        padding: 3% 6%;
        font-size: 2em;
    }

    .hw-title {
        margin-top: 20%;
        margin-bottom: 12%;
        display: flex;
        font-size: 3.5em;
        align-items: center;
        justify-content: center;
        margin-left: 0;
    }

    .restaurant{
    font-size: 2em;
    }


    .register-form-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10%;
        padding: 5%;
    }

    .register-form {
    display: flex;
    width: 90%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* margin-top: 15%; */
    margin: 0 auto; 
    border: 1px solid #8EC63F;
    box-shadow: 0 1px 15px 0 #8EC63F;
    border-radius: 10px;
    font-size: 0.9rem;
  }

    .form-class {
        padding: 10%;
    }
	
    .form-class input, .form-class select, .form-class label {
	width: 100%;
        padding: 5%;
        margin-bottom: 5%;
        border: none;
        border-radius: 5px;
        box-sizing: border-box;
    }
    
    .question-cook-routine p {
        font-size: 1.5em;
    }
    .option-buttons {
        display: flex;
        align-items: center;
    }

    .option-button {
        display: inline-block;
        cursor: pointer;
        background-color: #8EC63F;
        color: #FBFBE5;
        margin: 20px;
        padding: 10px 20px;
        border-radius: 5px;
        font-size: 1.2em;
        text-decoration: none;
    }


    .form-class button{
        cursor: pointer;
        background-color: #8EC63F;
        color: #FBFBE5;
        padding: 20px 20px;
        border-radius: 5px;
        font: 1.5em 'Questrial', sans-serif;
        text-decoration: none;
        border: 1px solid #FBFBE5;
        margin-top: 10%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .CX-title {
	font-size: 2.5em 'Questrial', sans-serif;
    }
    

    .customer-comments img {
        width: 110%;
    }
    
    .SSS img {
        width: 110%;
    }

    footer img {
        width: 100%;
    }
 
    .popup {
        width: 50%;
        padding: 10%; /* Mobil cihazlarda daha fazla padding */
        font-size: 1.5rem; /* Yazı boyutunu küçült */
        top: 50%; /* Orta hizalamayı koru */
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .popup button {
        margin-top: 10%;
        padding: 10px 15px; /* Daha geniş buton */
        font-size: 1.5rem; /* Buton yazı boyutunu büyüt */
    }

    .popup.success {
        border: 3px solid #CBEA9F; /* Daha kalın kenar */
    }

    .popup.error {
        border: 3px solid #f44336; /* Daha kalın kenar */
    }
	

    .order-button a {
        font-size: 2.5em;
        padding: 15px 35px 15px 60px;
        margin: 10px 0;
    }
    .form-footer {
        font-size: 1.5em;
    }
	
    .email-popup {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        border: 2px solid #8EC63F;
        border-radius: 10px;
        padding: 30px;
        z-index: 1000;
        text-align: center;
        width: 80%; /* Sayfanın %60'ını kaplayacak */
        max-width: 800px; /* Maksimum genişlik */
        box-sizing: border-box;
    }

    .email-popup h2 {
        font-size: 3.2rem;
        margin-bottom: 15px;
    }

    .email-popup img {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }

    .email-popup input {
        padding: 15px;
        font-size: 2.4rem;
        border: 2px solid #8EC63F;
        border-radius: 5px;
        width: 80%;
        margin-bottom: 15px;
    }


    .close-btn {
        display: block;
        font-size: 18px;
        background: #8EC63F;
        color: white;
        border: none;
        padding: 8px 12px;
        border-radius: 50%;
        cursor: pointer;
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .submitEmailDiscount {
        padding: 15px;
        font-size: 2.6rem;
        background: #8EC63F;
        color: white;
        border: none;
        border-radius: 10px;
        cursor: pointer;
	width:80%;
        transition: 0.3s;
    }

    .submitEmailDiscount:hover {
        background: #74a62d;
    }
    .close-btn-show{
	
        padding: 15px;
        font-size: 18px;
        background: #8EC63F;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
   
    }
	
.action-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-direction: column;
    }

    .my-orders-btn {
	        background-color: #8EC63F;
		    color: #FBFBE5;
		        border: none;
			    padding: 19px 20px;
			        border-radius: 5px;
				    cursor: pointer;
				        font: 2.1em 'Questrial', sans-serif;
					    text-decoration: none;
					        transition: all 0.3s ease;
					}
	
}
