body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    overflow-x: hidden;
}

/* Üst Şerit Stilleri */
/* Top Bar Wrapper */
.top-bar-wrapper {
    background-color: #ffffff; /* Beyaz arka plan */
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

/* Üst Şerit Stilleri */
.top-bar {
    background-color: #000000; /* Koyu siyah renk */
    color: #fff; /* Yazı rengi beyaz */
    border-radius: 0 0 20px 20px;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    height: 25px;
    margin: 0 auto; /* Ortala */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Hafif gölge */
}

/* Diğer stiller aynı kalacak */
.top-bar .container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    align-items: center;
}

.icon-link {
    color: #bcbbbb; /* İkonlar beyaz */
    font-size: 18px;
    margin-right: 50px;
    margin-left: -10px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info i {
    color: #00008b;
    margin-right: 10px;
}

.order-button1 {
    background-color: #28a745; /* Butonun arka plan rengi */
    color: white; /* Buton metin rengi */
    border: none;
    height: 37px;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    transition: background-color 0.3s, transform 0.3s;
    margin-top: 0px;
    margin-left: 280px;
}

.order-button1:hover {
    background-color: #218838; /* Hover rengini ayarlayın */
    transform: scale(1.05); /* Hover efekti */
}

.icon-link:hover {
    color: #525252; /* Hover efekti */
    border-bottom: 2px solid #00008b;
}
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 40px; /* Üstteki şeridin hemen altına */
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container .logo {
    margin-right: 20px;
}

.container .image1 {
    margin-left: 250px;
    border-radius: 20%;
    
    width: 180px;
    height: 100px;
    margin-top: 3px;
}
/*
.container .image2 {
    margin-left: 250px;
    border-radius: 20%;
    border: 5px solid #e9dfdf;
    width: 162px;
    margin-top: 5px;

}*/

/* Menü Stilleri */
nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-start; /* Menüyü sola hizalar */
    margin-right: 280px;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #2f2f2f;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    transition: background-color 0.3s, transform 0.3s;
    border-radius: 3px;
}

nav ul li a:hover {
    color: #525252;
    border-bottom: 2px solid #00008b;
}
.content-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 80%; 
    margin-left: auto; 
    margin-right: auto;
    margin-top: 150PX;
    margin-bottom: 80px;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.text {
    width: 45%; /* Yazı alanını biraz küçülttük */
    padding-right: 20px;
}

.slider {
    width: 45%; /* Slider alanını da yazıyla eşitlemek için küçülttük */
    position: relative;
}

.slides img {
    width: 100%;
    height: 350px;
    display: none;
}

.slides img.active {
    display: block;
}

.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 15px;
    width: 15px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #717171;
}

footer {
    background-color: black;
    color: #fff;
    padding: 30px 0;
    font-size: 14px;
}

.footer-container {
    display: flex;
    justify-content: space-between; /* Elemanlar arasında boşluk oluştur */
    padding: 0 50px; /* Sağ ve sol kenarlara boşluk ekle */
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
    max-width: 1200px; /* İçeriği maksimum genişlik ile sınırlayarak ortala */
    margin: 0 auto; /* Ortalamak için margin */
}

.footer-section {
    flex: 1; /* Tüm footer bölümleri eşit yer kaplasın */
    padding: 0 20px; /* Sağ ve sol boşluk ekle */
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #00008b;
    text-align: center; /* Başlıkları ortala */
}

.footer-section p {
    margin: 10px 0; /* Başlıklar ve paragraflar arasına boşluk ekle */
    text-align: center; /* Paragrafları ortala */
    line-height: 1.5; /* Satır arası boşluğu artır */
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
}


@media (max-width: 768px) {
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        overflow-x: hidden;
    }

    /* Header başlık font boyutu */
    header h1 {
        font-size: 1.5em;
    }

    /* Genel konteyner genişliği */
    .container {
        width: 95%;
    }

    /* Menü İkonu Stilleri */
    .menu-icon {
        display: flex;
        cursor: pointer;
        flex-direction: column;
        position: relative;
        z-index: 1000;
    }

    /* Üst Şerit Mobil Stilleri */
    .top-bar {
        height: 60px;
        width: 100%;
        border-radius: 0%;
    }

    .top-bar .container {
        padding-left: 0px;

    }

    .icon-link {
        color: #bcbbbb;
        /* İkonlar beyaz */
        font-size: 16px;
        margin: 10px 7px;
        text-decoration: none;
        transition: color 0.3s;
    }

    .contact-info i {
        margin-right: 7px;
    }


    .contact-info .navbar {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 35px;
        padding: 10px 20px;
    }

    .navbar .menu {
        flex-direction: column;
        width: 90%;
        align-items: flex-start;
    }

    .navbar .menu li {
        width: 90%;
        margin: 10px 0;
    }

    .navbar .menu li a {
        font-size: 18px;
        padding: 10px 20px;
        width: 90%;
    }


    /* Sipariş Butonu Mobil Uyumu */
    .order-button1 {
        position: fixed;
        bottom: 20px;
        /* Alt taraftan 20px uzaklıkta */
        right: 20px;
        /* Sağ taraftan 20px uzaklıkta */
        width: 20%;
        height: 10%;
        /* Genişlik, ekranın %20'si kadar */
        /* İsteğe bağlı olarak padding, border, vb. eklemeleri yapabilirsiniz */
        z-index: 1000;
        /* Üstte görünmesi için yüksek bir z-index değeri */
    }

    /* İkon ve yazı ayarları */
    .contact-info a {
        display: flex;
        align-items: center;
    }

    /* İkonların yanında yazılar mobilde gizlensin */
    .contact-info i+span {
        display: none;
    }

    .menu-icon .bar {
        width: 25px;
        height: 3px;
        background-color: #2d2d2d;
        margin: 2px 0;
        transition: 0.4s;
        margin-right: 10px;
    }
    .navbar-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: white;
        padding: 20px 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        position: fixed;
        top: 50px; /* Üstteki şeridin hemen altına */
        left: 0;
        width: 100%;
        height: 60px;
        z-index: 1000;
    }
    .logo-container {
        display: flex;
        align-items: center;
    }
    
    .logo-container .logo {
        margin-right: 120px;
    }
    .container  .image1 {
        border-radius: 20%;   
        width: 100px;
        height: 70px;
        margin-top: 3px;
        margin-left: 20px;
    }
    .navbar-container{
        height: 70px;
    }

    /* Menü Mobil Stilleri */
    #menu {
        display: none;
        /* Başlangıçta menüyü gizle */
        flex-direction: column;
        width: 100%;
        background-color: rgba(13, 13, 14, 0.9);
        /* Arka plan rengini ayarlayın */
        position: fixed;
        top: 48px;
        /* Menüyü navbar'ın altına yerleştirin */
        left: 0px;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        /* Sol yerine transform kullanarak menüyü kaydırma */
        transform: translateX(-100%);
        /* Başlangıçta menüyü ekran dışına kaydır */
        z-index: 999;
        /* Menü her zaman üstte olsun */
    }

    /* Menü Açılınca Görünsün */
    #menu.active {
        display: flex;
        /* Menü açıldığında göster */
        transform: translateX(0);
        /* Menü görünür hale gelsin */
    }

    /* Menü Öğeleri */
    #menu li {
        margin: 15px 0;
        text-align: center;
    }

    #menu li a {
        display: block;
        padding: 5px;
        color: #fff;
        text-decoration: none;
        transition: background-color 0.3s;
    }

    #menu li a:hover {
        background-color: #3a3c3d;
    }

    /* Menü İkonu Dönüşüm Stilleri */
    .menu-icon.toggle .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
        background-color: #fff;
        position: relative;
        bottom: 2px;
    }

    .menu-icon.toggle .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-icon.toggle .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
        background-color: #fff;
    }



    .content-section {
        flex-direction: column;
        align-items: center;
    }

    .text, .slider {
        width: 100%;
        padding-right: 0;
    }

    .slider {
        margin-top: 20px;
    }
    
    .slides img {
        height: auto; /* Slider resimlerini mobil görünümde daha uyumlu hale getirir */
    }

       /* Footer Mobil Düzenleme */
       .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        width: 91%;
        margin-bottom: 20px;
    }
    .footer-bottom{
        margin-top: 20px;
        margin-left: 71px;

    }
}