html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
    .carousel-caption {
        font-size: 14px;
        padding: 10px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
    }
    #heroCarousel {
        height: 50vh; /* Küçük ekranlarda daha kısa */
        max-height: 500px;
    }

        #heroCarousel .carousel-item img {
            height: 50vh;
            max-height: 500px;
        }
}
/* Ok Butonlarının Küçük Ekranlarda Uyumlu Hale Getirilmesi */
@media (max-width: 576px) {
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 30px;
        height: 30px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

:root {
    --bg-color: white;
    --text-color: black;
}

.dark-mode {
    --bg-color: #121212 !important;
    --text-color: #ffffff !important;
}

body {
    margin-bottom: 60px;
    background-color: var(--bg-color) !important;
    color: var(--text-color) !important;
    transition: background-color 0.3s, color 0.3s;
}

/* Menü öğeleri için hover efekti */
.navbar-nav .nav-item .nav-link {
    transition: all 0.3s ease; /* Geçiş efekti */
}

    /* Hover durumunda renk değişikliği ve parlama efekti */
    .navbar-nav .nav-item .nav-link:hover {
        color: #f8f9fa; /* Parlayan beyaz renk */
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.7); /* Parlaklık efekti */
    }

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    border-radius: 50%;
    background-color: #25d366;
    color: white;
    padding: 15px;
    font-size: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

    .whatsapp-btn:hover {
        background-color: #128c7e;
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    }

/* Modern kart görünümü */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-10px); /* Hoverda kartın biraz yukarı kayması */
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); /* Gölgelendirme efekti */
    }

/* Başlık rengi ve modern font */
.card-title {
    color: #007bff; /* Mavi tonları */
    font-size: 1.25rem;
    font-weight: bold;
}

/* Açıklama metni */
.card-text {
    font-size: 0.875rem;
    color: #6c757d; /* Gri tonları */
}

/* Teknoloji ikonları */
.tech-icons i {
    font-size: 1.25rem;
    margin-right: 10px;
    transition: color 0.3s ease;
}

    .tech-icons i:hover {
        color: #007bff; /* Hoverda maviye dönüşen ikonlar */
    }

/* Kartların padding ve kenar boşlukları */
.card-body {
    padding: 1.5rem;
}

/* Kart gölgelendirme */
.card.shadow-lg {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Link alt çizgisini kaldır */
a.text-decoration-none {
    color: inherit; /* Link rengini koru */
}

.card.no-hover:hover {
    transform: none !important;
    box-shadow: none !important;
    transition: none !important;
}

/* Sekmelerin etrafına çerçeve eklemek için */
#productTabs {
    border: 1px solid #ddd; /* Sekmelerin etrafına gri çerçeve */
    border-radius: 5px 5px 0 0; /* Üst köşeleri yuvarlatmak */
}

/* Tab içeriklerinin etrafına çerçeve eklemek için */
#productTabsContent {
    border: 1px solid #ddd; /* Sekmelerin etrafına gri çerçeve */
    
}

#productTabs .nav-link.active {
    color: #FFA500;
}

#productTabs{
    padding-inline-start:1.2rem;
}

.folder-item {
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
    cursor: pointer;
    width: 150px;
    text-align: center;
    font-weight: bold;
    margin: 5px;
}

    .folder-item:hover {
        background-color: #e9ecef;
    }

.selectable-image {
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.2s ease-in-out;
}

    .selectable-image:hover {
        border: 2px solid #007bff;
    }

    .selectable-image.selected {
        border: 4px solid #28a745;
    }

/* Dosya öğesinin stilini ayarlıyoruz */
.image-container {
    position: relative; /* Silme butonunu konumlandırabilmek için */
    display: inline-block;
    margin: 10px;
}

/* Klasör öğesinin stilini ayarlıyoruz */
.folder-item {
    position: relative; /* Silme butonunu konumlandırabilmek için */
    display: inline-block;
    margin: 10px;
    padding: 10px;
    background-color: #f9f9f9; /* Klasörler için arkaplan rengi */
    border: 1px solid #ddd; /* Klasörlerin etrafına ince bir sınır ekliyoruz */
    border-radius: 8px; /* Köşeleri yuvarlatıyoruz */
}

.folder-item, .image-container {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background-color: #f8f9fa;
}

    .folder-item:hover, .image-container:hover {
        background-color: #e9ecef;
        transform: scale(1.05);
    }

.create-folder-panel {
    display: none;
    position: absolute;
    top: 100%; /* Butonun hemen altına yerleşecek */
    right: 0;
    width: 250px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.img-container {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.image-panel {
    display: none;
    position: absolute;
    bottom: 50px;
    left:250px;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 8px;
    border-radius: 5px;
}

    .image-panel button {
        margin: 2px;
    }

.switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 12px;
        width: 12px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: #2196F3;
}

    input:checked + .slider:before {
        transform: translateX(14px);
    }

#heroCarousel {
    max-width: 100%;
    height: 75vh; /* Carousel için sabit yükseklik */
    max-height: 750px; /* Büyük ekranlar için sınır */
    overflow: hidden;
}

    #heroCarousel .carousel-item img {
        width: 100%;
        height: 75vh; /* Resmin yüksekliği sabit */
        max-height: 750px; /* Büyük ekranlar için sabitlenmiş maksimum yükseklik */
        object-fit: cover; /* Resmin bozulmadan sığmasını sağlar */
    }
    