/* Genel Stiller */
body {
    padding-top: 76px;
}

/* Navbar Stili */
.navbar-brand {
    font-weight: bold;
}

/* Slider Stili */
.carousel-item img {
    height: 600px;
    object-fit: cover;
}

/* Ürün Galerisi */
#products img {
    transition: transform 0.3s;
    cursor: pointer;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

#products .gallery-item {
    display: block;
    height: 200px;
    overflow: hidden;
    border-radius: 5px;
}

#products img:hover {
    transform: scale(1.05);
}

/* WhatsApp Butonu */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    color: white;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .carousel-item img {
        height: 400px;
    }
}

/* Şube Kartları */
.card {
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* Footer Link */
footer a:hover {
    text-decoration: underline !important;
}

/* Lightbox Özelleştirmeleri */
.lb-data .lb-close {
    opacity: 1;
    filter: alpha(opacity=100);
    padding: 10px;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
    opacity: 1;
    filter: alpha(opacity=100);
}

.lb-data .lb-details {
    width: 100%;
    text-align: center;
}

.lb-data .lb-caption {
    font-size: 16px;
    font-weight: bold;
}

.lb-data .lb-number {
    font-size: 14px;
    padding-top: 5px;
}

.lb-closeContainer {
    position: absolute;
    top: -30px;
    right: 0;
}

/* Lightbox Arka Plan */
.lb-outerContainer {
    background-color: transparent;
}

.lightbox .lb-image {
    border: none;
    border-radius: 5px;
}

/* Lightbox Loading Animasyonu */
.lb-loader {
    position: absolute;
    top: 43%;
    left: 0;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
}

/* Fancybox Özelleştirmeleri */
.fancybox__toolbar {
    --f-button-width: 46px;
    --f-button-height: 46px;
    --f-button-color: #fff;
    --f-button-hover-color: #fff;
    --f-button-bg: rgba(0, 0, 0, 0.6);
    --f-button-hover-bg: rgba(0, 0, 0, 0.8);
}

.fancybox__button--close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.fancybox__button--close:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Fancybox Navigation */
.fancybox__nav {
    --f-button-width: 46px;
    --f-button-height: 46px;
    --f-button-color: #fff;
    --f-button-hover-color: #fff;
    --f-button-bg: rgba(0, 0, 0, 0.6);
    --f-button-hover-bg: rgba(0, 0, 0, 0.8);
}

.fancybox__button--prev,
.fancybox__button--next {
    background: rgba(0, 0, 0, 0.6);
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

.fancybox__button--prev:hover,
.fancybox__button--next:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Hakkımızda Bölümü */
#about img {
    margin-bottom: 20px;  /* Mobilde alt boşluk */
}

@media (min-width: 768px) {
    #about img {
        margin-bottom: 0;  /* Masaüstünde alt boşluk kaldır */
    }
    
    #about .row {
        min-height: 600px;  /* Minimum yükseklik belirle */
    }
}

/* Sosyal Medya Butonları */
.social-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.social-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    transition: transform 0.3s;
}

.social-button:hover {
    transform: scale(1.1);
}

.whatsapp-button {
    background-color: #25d366;
    color: white !important;
}

.instagram-button {
    background: #f09433;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white !important;
}

.facebook-button {
    background-color: #4267B2;
    color: white !important;
}

.social-button:hover {
    color: white !important;
    text-decoration: none;
} 