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;
}
.section {
    padding: 50px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Fullscreen Slider Stilleri */
.fullscreen-slider {
    position: relative;
    top: -9px;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* Fullscreen Slider Stilleri */
.fullscreen-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-position: center;
    background-size:cover;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateY(50px);
    /* Resimler ilk başta aşağıda olsun */
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    /* Daha uzun süreli geçiş */
}

.fullscreen-slider .slide.active {
    opacity: 1;
    transform: translateY(0);
    /* Resimler yukarıya çıksın */
}

.fullscreen-slider .slide-text {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    color: #000000;
    font-size: 2em;
    padding: 10px;
    border-radius: 5px;
    transition: transform 2s ease, opacity 2s ease;
    /* Daha yavaş geçiş */
    opacity: 0;
}

.fullscreen-slider .slide.active .slide-text {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Slider Noktaları */
.slider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.slider-dots .dot {
    display: inline-block;
    height: 30px;
    width: 30px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
    line-height: 30px;
    text-align: center;
    color: #333;
    font-size: 1em;
}

.slider-dots .dot.active,
.slider-dots .dot:hover {
    background-color: rgba(255, 255, 255, 1);
    color: #333;
    font-weight: bold;
}




iframe {
    width: 100%;

}



.urunler-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.urun-card {
    position: relative;
    width: calc(30% - 20px);
    height: 400px;
    background-color: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    perspective: 1000px;
    /* Kartlara derinlik efekti verir */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.urun-card:hover {
    transform: rotateY(5deg) translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.urun-image-wrapper {
    position: relative;
    width: 100%;
    height: 70%;
    overflow: hidden;
    perspective: 1000px;
    /* Resimlerin 3D görünümü için */
}

.urun-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.urun-card:hover .urun-image {
    transform: scale(1.15) rotate(2deg);
    /* Hafif dönüş ve büyüme efekti */
}

.urun-content {
    padding: 20px;
    text-align: center;
    background-color: #00008bd1;
    /* Soft turuncu */
    height: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Yazı kısmına da gölge eklenir */
    transform-style: preserve-3d;
}

.urun-content h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #fff;
    /* Beyaz renk yazı */
}

.urun-content p {
    font-size: 1rem;
    color: #fff;
    /* Beyaz renk yazı */
    margin-top: 10px;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #fff;
    /* Arka plan rengi beyaz */
    color: #000;
    /* Yazı rengi siyah */
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    position: relative;
    transition: color 0.3s ease;
    /* Renk geçişi */
}

.btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #000;
    /* Çizginin rengi siyah */
    left: 24%;
    /* "i" harfinin altına göre konumlandırma */
    bottom: 10px;
    transition: width 0.3s ease;
    /* Genişleme efekti */
}

.btn:hover::after {
    width: 50%;
    /* "e" harfine kadar olan genişlik */
}

.btn:hover {
    background-color: #cecece;
    color: #000;
    /* Hover sırasında yazı rengi değişmeden siyah kalacak */
}


/* Hakkımızda Bölümü Stili */
#hakkimizda {
    padding: 50px 0;
    text-align: center;
    position: relative;
    z-index: 1;
    background-color: #fff;
    /* Kart arka plan rengi */
    border-radius: 8px;
    /* Köşe yuvarlama */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Kart gölgesi */
    margin: 20px auto;
    /* Üst ve alt margin */
    max-width: 1400px;
    /* Maksimum genişlik */
    overflow: hidden;
    /* Taşmaları gizle */
}

/* Başlık Stili */
#hakkimizda h2 {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

/* Paragraf Stili */
#hakkimizda p {
    font-size: 1em;
    color: #555;
    line-height: 2;
    margin-left: 160px;
    width: 80%;
}

/* Animasyon Stili */
.fade-in-up {
    opacity: 0;
    /* Başlangıçta gizli */
    transform: translateY(20px);
    /* Başlangıçta aşağıda */
    transition: opacity 1s ease-out, transform 1s ease-out;
    /* Geçiş animasyonu */
}

.animated {
    opacity: 1;
    transform: translateY(0);
    /* Son durumda normal pozisyonda */
}

/* Animasyon Gecikme */
#hakkimizda h2.animated {
    animation-delay: 0.3s;
}

#hakkimizda p.animated {
    animation-delay: 0.6s;
}

/* Footer Stilleri */
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;
}



/* Genel Mobil Uyumluluk */
/* Genel Mobil Uyumluluk */
@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;
    }


    #hakkimizda{
        width: 90%;
    }

    #hakkimizda p {
        font-size: 1em;
        color: #555;
        margin-right: 90px;
        line-height: 2;
        width: 85%;
        margin-left: 30px;
    }

    .urun-card {
        width: 90%;
        margin-left: 20px;
    }

    /* Slider genişliği mobilde %100 */
    .slider {
        width: 100%;
    }

    .slider img {
        width: 100%;
    }


    /* 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;

    }
}