/* Genel Gövde Stili */
body {
    font-family: 'Raleway', sans-serif; /* Modern ve profesyonel yazı tipi */
    background-color: #f8f9fa; /* Hafif açık gri arka plan */
    margin: 0;
    padding: 0;
}

/* Navbar */
.navbar {
    background-color: #121212 !important; /* Beyaz arka plan */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
    padding: 1rem 0.8rem;
    transition: all 0.3s ease-in-out;
}

.navbar-brand img {
    height: 70px !important;
    width: auto;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.navbar-brand img:hover {
    transform: scale(1.1);
}

.navbar-brand .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6f00;
    transition: color 0.3s ease-in-out;
}

.navbar-brand .logo-text:hover {
    color: #ff6f00;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    color: white !important; /* Varsayılan metin rengi */
    padding: 0.5rem 1rem;
    transition: all 0.3s ease-in-out;
}

.nav-link:hover {
    color: #ff6f00 !important; /* Turuncu vurgu */
    background-color: rgba(255, 111, 0, 0.1); /* Hafif arka plan */
    border-radius: 5px;
}

.nav-link.active {
    color: #ff6f00 !important;
    font-weight: bold;
}

.social-icon {
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #ff6f00 !important; /* Turuncu renk vurgusu */
}

.navbar-toggler {
    border: none;
    background: none;
    outline: none;
    box-shadow: none;
    transition: transform 0.3s ease-in-out;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
    transform: rotate(90deg); /* Döndürme efekti */
}

/* Hamburger Menüyü Turuncu Yap */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='orange' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    filter: brightness(0.8); /* Daha koyu turuncu tonu için */
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

/* Hover Efekti */
.navbar-toggler:hover .navbar-toggler-icon {
    filter: brightness(1); /* Daha parlak turuncu tonu */
    transform: scale(1.1); /* Hafif büyütme efekti */
}

/* Slider */
#slider .carousel-item img {
    object-fit: contain;
    width: 100%;
    height: 700px;
    background-color: #f8f9fa;
    padding: 10px;
}

.carousel-caption {
    position: absolute;
    bottom: 15%;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    animation: fadeIn 1s ease-in-out;
}

.carousel-caption h3 {
    font-size: 2.8rem;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    font-weight: bold;
}

.carousel-caption p {
    font-size: 1.3rem;
    color: #ff6f00;
    margin-top: 10px;
    font-weight: 500;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.carousel-indicators button {
    background-color: #ff6f00;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.carousel-indicators .active {
    background-color: #ffffff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Ürün Kartları */
.card {
    background-color: white; /* Turuncu kart arka planı */
    border: none; /* Çerçeve kaldırıldı */
    border-radius: 10px; /* Hafif yuvarlatılmış kenarlar */
    overflow: hidden; /* Kenar taşmalarını engelle */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4); /* Siyah gölge efekti */
}

.card:hover {
    transform: translateY(-5px); /* Hover sırasında yukarı kaldır */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6); /* Daha koyu siyah gölge */
}

.card-img-top {
    height: 200px; /* Resim yüksekliği */
    width: 100%; /* Resim genişliği */
    object-fit: contain; /* Resmi tamamen görünür şekilde sığdır */
    background-color: #f8f9fa; /* Siyah arka plan (boş alanlar için) */
    border-bottom: 2px solid #ff6f00; /* Siyah alt çizgi */
    transition: transform 0.3s ease, border 0.3s ease;
}

.card-img-top:hover {
    transform: scale(1.05); /* Hover sırasında resim büyütme efekti */
    border-color: #000000; /* Daha koyu siyah hover efekti */
    border-bottom: 2px solid #ff6f00; /* Siyah alt çizgi */
}

.card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #121212; /* Siyah yazı rengi */
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    text-transform: uppercase; /* Yazıyı büyük harf yap */
}

.card-text {
    font-size: 1rem;
    color: #121212; /* Beyaz metin */
    text-align: center;
    margin-bottom: 15px;
}

.btn-outline-primary {
    border-color: #000000; /* Siyah çerçeve */
    color: #000000; /* Siyah metin */
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase; /* Yazıyı büyük harf yap */
    border-radius: 20px; /* Yuvarlak köşeler */
    padding: 0.5rem 1rem;
    transition: all 0.3s ease-in-out;
}

.btn-outline-primary:hover {
    background-color: #121212; /* Siyah arka plan */
    color: #ffffff; /* Beyaz metin */
    border-color: #ffffff; /* Beyaz çerçeve */
}




/* Footer Genel Stili */
.footer-custom {
    background-color: #121212; /* Siyah arka plan */
    color: #f8f9fa; /* Beyaz metin */
    font-size: 0.95rem;
}

.footer-custom a {
    color: #f8f9fa; /* Beyaz link */
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.footer-custom a:hover {
    color: #ff6f00; /* Turuncu hover rengi */
    text-decoration: underline;
}

.footer-custom .fw-bold {
    font-size: 1.2rem;
    color: #ff6f00; /* Turuncu başlık */
}

.footer-custom .social-link {
    font-size: 1.8rem; /* Sosyal medya ikon boyutu */
    margin-right: 15px;
    color: #f8f9fa; /* Beyaz ikon */
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-custom .social-link:hover {
    color: #ff6f00; /* Turuncu hover rengi */
    transform: scale(1.2); /* Hafif büyütme efekti */
}

.footer-custom .text-muted {
    color: white !important; /* Açık gri metin */
}

.footer-custom .border-top {
    border-color: rgba(255, 255, 255, 0.2); /* Şeffaf beyaz sınır */
}

/* Hızlı Linkler İkonları */
.footer-custom .fas.fa-chevron-right {
    color: #ff6f00; /* Turuncu renk */
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-custom .fas.fa-chevron-right:hover {
    color: #ffffff; /* Beyaz hover */
}

/* Alt Bilgi Vurgu Yazısı */
.footer-custom .text-warning {
    color: #ff6f00 !important; /* Turuncu renk */
}


/* Ürün Detayları */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6f00; /* Turuncu başlık */
}

.text-muted {
    font-size: 1rem;
    color: #aaa;
}

.text-accent {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff6f00; /* Turuncu fiyat */
}

pre {
    font-family: 'Courier New', Courier, monospace;
    background-color: #222; /* Siyah */
    border: 1px solid #444; /* Gri çerçeve */
    padding: 10px;
    font-size: 0.95rem;
    color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5); /* Daha koyu gölge */
}

.btn-success {
    font-size: 1rem;
    font-weight: bold;
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    color: #ffffff;
    background-color: #25D366; /* WhatsApp Yeşili */
    transition: all 0.3s ease-in-out;
}

.btn-success:hover {
    background-color: #1da852;
    color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Thumbnail Galeri */
.thumbnail-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.thumbnail-img {
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    width: 80px;
    height: 80px;
    object-fit: cover; /* Resmi tam çerçeveye sığdır */
    cursor: pointer;
}

.thumbnail-img:hover {
    border-color: #ff6f00; /* Turuncu hover */
    transform: scale(1.1); /* Büyütme efekti */
}

.thumbnail-img.active-thumbnail {
    border-color: #ff6f00; /* Turuncu aktif kenarlık */
    transform: scale(1.15);
}

/* Büyük Resim */
#main-image {
    max-height: 500px;
    object-fit: contain;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    cursor: pointer;
}

/* Lightbox */
#lightboxModal .modal-content {
    background-color: #121212;
    border-radius: 10px;
}

#lightboxModal img {
    max-height: 80vh;
    object-fit: contain;
}


/* Thumbnail Galeri */
.thumbnail-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.thumbnail-img {
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    width: 80px;
    height: 80px;
    object-fit: cover; /* Resmi tam çerçeveye sığdır */
    cursor: pointer;
}

.thumbnail-img:hover {
    border-color: #ff6f00; /* Turuncu hover */
    transform: scale(1.1); /* Büyütme efekti */
}

.thumbnail-img.active-thumbnail {
    border-color: #ff6f00; /* Turuncu aktif kenarlık */
    transform: scale(1.15);
}

/* Büyük Resim */
#main-image {
    max-height: 500px;
    object-fit: contain;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    cursor: pointer;
}

/* Lightbox */
#lightboxModal .modal-content {
    background-color: #121212;
    border-radius: 10px;
}

#lightboxModal img {
    max-height: 80vh;
    object-fit: contain;
}

/* Hakkımızda Başlık */
h1, h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: #ff6f00; /* Turuncu başlık */
}

/* Başlık için Özel Renk */
.text-accent {
    color: #ff6f00; /* Turuncu vurgu */
}

/* Metinler */
.text-muted {
    font-size: 1rem;
    line-height: 1.6;
    color: black !important; /* Beyaz metin */
}

/* Görseller */
.img-fluid {
    border-radius: 10px; /* Görsel kenarları yuvarlatılmış */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Hafif koyu gölge efekti */
    transition: transform 0.3s ease;
}

.img-fluid:hover {
    transform: scale(1.05); /* Hover sırasında büyüme efekti */
}

/* Container Arkaplan */
main {
    background-color: #f8f9fa; /* Siyah arkaplan */
    color: black; /* Beyaz metin */
    padding: 20px;
    border-radius: 10px;
}

/* Linkler */
a {
    color: #ff6f00; /* Turuncu bağlantı rengi */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffffff; /* Beyaz hover rengi */
}

/* Bölüm Başlıkları */
h2 {
    border-left: 5px solid #ff6f00; /* Turuncu şerit */
    padding-left: 10px;
    margin-bottom: 20px;
}

/* Gölge ve Çerçeve */
.rounded {
    border: 2px solid #ff6f00; /* Turuncu kenarlık */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8); /* Daha koyu gölge */
}

/* Hamburger Menüyü Turuncu Yap */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23ff6f00' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    filter: brightness(0.9); /* Daha koyu turuncu tonu */
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

/* Hover Efekti */
.navbar-toggler:hover .navbar-toggler-icon {
    filter: brightness(1); /* Daha parlak turuncu tonu */
    transform: scale(1.1); /* Hafif büyütme efekti */
}


