* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Genel Stil */
html, body {
    margin: 0;
    padding: 0;
    width: 100%; /* Tam genişlik */
    overflow-x: hidden; /* Yatay kaydırmayı gizle */
}

body {
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #111;
    padding: 10px 20px;
    color: white;
    position: fixed; /* Navbar sabit hale geliyor */
    top: 0;
    width: 100%; /* Ekranın tamamını kaplaması için */
    z-index: 1000; /* Üstte kalması için */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Gölge efekti */
}

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-logo span {
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.navbar-logo:hover span {
    color: #999;
}

.navbar-logo .logo {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

.navbar-links {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-grow: 1;
    margin-right: 100px;
}

.navbar-links li {
    margin-right: 30px;
}

.navbar-links a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: color 0.3s ease;
}

.navbar-links a:hover {
    color: #999;
}

/* Hero Section with Video */
.hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    margin-top: 20px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 24px;
}
/*---------------------------------------*/



/*---------------------------------------*/
.image-slider {
    position: relative;
    width: 100%;
    max-width: 1200px; /* Maksimum genişlik */
    height: 400px; /* Sabit yükseklik */
    overflow: hidden;
    margin: 50px auto; /* Ortaya hizalama */
    background-color: #ffffff; /* Boş alan için arka plan rengi */
}

.slider-wrapper {
    display: flex;
    width: 300%; /* 3 resim için toplam genişlik */
    height: 100%;
    animation: slide-animation 6s infinite; /* 6 saniyelik animasyon döngüsü */
}

.slide {
    flex: 1; /* Her slide eşit genişlikte */
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    width: auto;
    height: 100%; /* Yükseklik tam alanı kaplar */
    object-fit: cover; /* Görüntünün düzgün görünmesini sağlar */
    border-radius: 10px; /* Köşeleri yuvarlama (isteğe bağlı) */
    
}

/* Animasyon */
@keyframes slide-animation {
    0%, 20% {
        transform: translateX(0%); /* İlk resim ekranda kalır */
    }
    25%, 45% {
        transform: translateX(-34%); /* İkinci resme geçiş */
    }
    50%, 70% {
        transform: translateX(-66.8%); /* Üçüncü resme geçiş */
    }
    75%, 100% {
        transform: translateX(0%); /* Başa döner */
    }
}


.comment-section1 {
    display: flex;
    justify-content: space-around;
    margin: 50px auto;
    padding: 20px;
    max-width: 1200px;
    background-color: #f4f4f4;
}

.single-comment1 {
    max-width: 600px; /* Yorum kutusunun genişliğini daralttık */
    width: 100%;
    font-size: 20px; /* Yorum metni boyutu */
    line-height: 1.5; /* Satır yüksekliği */
    text-align: center; /* Metni ortaladık */
    margin: 0 auto; /* Ortalamak için */
    color: #000000; /* Metin rengi */
}


/* Highlight Sections */
.highlight-section {
    display: flex;
    align-items: center;
    padding: 40px;
    background-color: #f4f4f4;
    max-width: 1200px; /* Genişlik sınırlanıyor */
    margin: 40px auto; /* Ortalanıyor */
}

.highlight-section:nth-child(even) {
    background-color: #fff;
}

.highlight-content {
    flex: 1;
    padding: 20px;
}

.highlight-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.highlight-content p {
    font-size: 18px;
}

.highlight-image {
    flex: 1;
    width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Purchase Button Section */
.purchase-section {
    text-align: center;
    margin: 40px 0;
    max-width: 1200px; /* Genişlik sınırlanıyor */
    margin: 40px auto; /* Ortalanıyor */
}

.btn-purchase {
    background-color: #098809;
    color: white;
    padding: 15px 30px;
    font-size: 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-purchase:hover {
    background-color: #005bb5;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Three Images Section */

.three-images-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 50px auto;
    padding: 20px;
    background-color: #f4f4f4;
    max-width: 1200px;
    position: relative;
}

.side-image {
    flex: 1;
    text-align: center;
    position: relative; /* Butonları bu div'in içinde konumlandır */
    margin-right: 20px;
}

.side-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.stacked-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stacked-images .image-item {
    text-align: center;
    margin-bottom: 20px;
}

.stacked-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.image-item p,
.side-image p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

/* Prev & Next Butonları */
.prevSide, .nextSide {
    background-color: transparent;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 20%; /* Yuvarlak buton */
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.prevSide {
    left: -50px; /* Side-image içinde sola sabitle */
    z-index: 100;
}

.nextSide {
    right: -50px; /* Side-image içinde sağa sabitle */
}

.prevSide:hover, .nextSide:hover {
    background-color: rgba(133, 133, 133, 0.8);
}

/************************************/




/* Comment Section */
.comment-section {
    display: flex;
    justify-content: space-around;
    margin: 50px auto;
    padding: 20px;
    max-width: 1200px;
}

.comment {
    flex: 1;
    padding: 20px;
    margin: 0 20px;
    background-color: #f4f4f4;
    border-radius: 10px;
    text-align: center;
}

.comment h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.comment p {
    font-size: 16px;
    color: #555;
}

.highlight-video {
    flex: 1;
    width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Hakkımızda Section */
.about-section {
    padding: 80px 20px;
    background-color: #f4f4f4;
    margin-top: 60px; /* Navbar yüksekliği kadar boşluk */
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

h2 {
    font-size: 28px;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 40px;
    background-color: #f4f4f4;
    text-align: center;
}

.contact-section h1 {
    margin-top: 50px;
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-section h2 {
    font-size: 28px;
    margin: 20px 0;
}

.contact-section p {
    font-size: 18px;
    margin: 10px 0;
}

.contact-section a {
    color: #0071e3;
}

.contact-section a:hover {
    color: #005bb5;
}

/* Hamburger Buton */
.hamburger {
    display: none; /* Varsayılan olarak gizle */
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    position: absolute; /* Pozisyonu kesinleştir */
    right: 10px; /* Sağdan 20 piksel uzaklıkta konumlandır */
    top: 10px; /* Üstten boşluk ver */
    z-index: 1001; /* Üstte kalması için */
}



/* Responsive Tasarım */
@media (max-width: 1200px) {
    .image-slider {
        height: 250px; /* Mobilde daha küçük yükseklik */
    }
    .navbar-links {
        display: none; /* Varsayılan olarak gizle */
        flex-direction: column; /* Dikey sıralama */
        width: 100%;
        position: absolute;
        background-color: #111; /* Arka plan rengi */
        top: 50px; /* Navbar altına yerleştir */
        left: 0;
        z-index: 999; /* Üstte kalması için */
    }

    .navbar-links.active {
        display: flex; /* Açık olduğunda göster */
    }

    .navbar-links li {
        margin-right: 20px; /* Yatay boşluk kaldırıldı */
        margin-bottom: 10px; /* Dikey boşluk */
    }
    .navbar-links a {
        font-size: 12px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .highlight-content h2 {
        font-size: 28px;
    }

    .highlight-content p {
        font-size: 16px;
    }

    .btn-purchase {
        font-size: 20px;
        padding: 10px 20px;
    }

    .three-images-section,
    .comment-section {
        flex-direction: column; /* Dikey sıralama */
    }

    .side-image,
    .stacked-images {
        margin-right: 0; /* Sağdaki boşluğu kaldır */
        margin-bottom: 20px; /* Aşağıdaki boşluk */
    }


    .prevSide, .nextSide, .prevFront, .nextFront, .prevBack, .nextBack {
        display: none;
    }
 

    .highlight-section {
        display: flex;
        flex-direction: column; /* Dikey sıralama */
    }

    .highlight-section:nth-child(even) {
        flex-direction: column-reverse; /* Alternatif sıralama */
    }

    .highlight-image,
    .highlight-video {
        width: 100%; /* Tam genişlik */
        height: auto; /* Orantılı yükseklik */
    }

    .highlight-content {
        text-align: center;
        margin-bottom: 20px; /* Mobilde yazı ile resim arasında boşluk */
    }

    .comment {
        margin: 20px 0; /* Yatay boşluk kaldırıldı */
    }

    .hamburger {
        display: block; /* Sadece mobilde göster */
    }
}

@media (max-width: 768px) {
    .image-slider {
        height: 250px; /* Mobilde daha küçük yükseklik */
    }
    .navbar-links {
        display: none; /* Varsayılan olarak gizle */
        flex-direction: column; /* Dikey sıralama */
        margin-right: 0;
        width: 100%;
        position: absolute;
        background-color: #111; /* Arka plan rengi */
        top: 50px; /* Navbar altına yerleştir */
        left: 0;
        z-index: 999; /* Üstte kalması için */
    }

    .navbar-links.active {
        display: flex; /* Açık olduğunda göster */
    }

    .navbar-links li {
        margin-right: 0; /* Yatay boşluk kaldırıldı */
        margin-bottom: 10px; /* Dikey boşluk */
    }

    .hero-content h1 {
        font-size: 28px; /* Küçük ekran için yazı boyutu */
    }

    .hero-content p {
        font-size: 18px; /* Küçük ekran için yazı boyutu */
    }

    .highlight-content h2 {
        font-size: 24px;
    }

    .highlight-content p {
        font-size: 14px;
    }

    .highlight-section {
        display: flex;
        flex-direction: column; /* Dikey sıralama */
    }

    .highlight-section:nth-child(even) {
        flex-direction: column-reverse; /* Alternatif sıralama */
    }

    .highlight-image,
    .highlight-video {
        width: 100%; /* Tam genişlik */
        height: auto; /* Orantılı yükseklik */
    }

    .highlight-content {
        text-align: center;
        margin-bottom: 20px; /* Mobilde yazı ile resim arasında boşluk */
    }

    .three-images-section {
        flex-direction: column; /* Dikey sıralama */
        margin: 0; /* Yatay boşluk kaldırıldı */
    }

    .three-images-section img {
        margin-bottom: 20px; /* Alt boşluk */
    }
    .prevSide, .nextSide, .prevFront, .nextFront, .prevBack, .nextBack {
        display: none;
    }
    .comment-section {
        flex-direction: column; /* Dikey sıralama */
    }
}

@media (max-width: 500px) {
    .hero-content h1 {
        font-size: 28px; /* Küçük ekran için yazı boyutu */
    }

    .hero-content p {
        font-size: 18px; /* Küçük ekran için yazı boyutu */
    }

    .btn-purchase {
        font-size: 20px; /* Küçük ekran için buton yazı boyutu */
        padding: 12px 24px; /* Küçük ekran için buton dolgu */
    }
    .prevSide, .nextSide, .prevFront, .nextFront, .prevBack, .nextBack {
        display: none;
    }
}


/* Yan Menü */
.side-menu {
    position: fixed;
    top: 50px; /* Üstten 50px aşağıda başla */
    left: -290px; /* Başlangıçta gizli (sola kaydır) */
    width: 250px; /* Genişlik */
    height: calc(100% - 50px); /* Yüksekliği 50px üstten ayır */
    background-color: #111; /* Arka plan rengi */
    color: white; /* Yazı rengi */
    padding: 20px; /* İçerik için boşluk */
    transition: left 0.3s ease; /* Geçiş efekti */
    z-index: 999; /* Üstte kalması için */
}


.side-menu.active {
    left: 0; /* Aktif olduğunda sola kaydır */
}

.side-menu ul {
    list-style: none; /* Noktaları gizle */
    padding: 0; /* İçerik boşluğu sıfırla */
}

.side-menu li {
    margin-bottom: 15px; /* Aşağıda boşluk */
}

.side-menu a {
    text-decoration: none; /* Alt çizgi yok */
    color: white; /* Yazı rengi */
    font-size: 18px; /* Yazı boyutu */
}