/* Gilroy font yer tutucuları: dosyaları fonts/ klasörüne ekleyin */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.woff2') format('woff2'),
         url('../fonts/Gilroy-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Medium.woff2') format('woff2'),
         url('../fonts/Gilroy-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.woff2') format('woff2'),
         url('../fonts/Gilroy-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Black.woff2') format('woff2'),
         url('../fonts/Gilroy-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}



/* Swiper okları için büyük hedef alanı */
.swiper-button-next, .swiper-button-prev {
    width: 56px; height: 56px; backdrop-filter: blur(4px);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 18px; }

/* Ana slider pagination */
.swiper .swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}
.swiper .swiper-pagination-bullet-active {
    background: white;
}

/* Ürün carousel pagination */
.products-swiper .swiper-pagination {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    z-index: 10;
    margin-top: 1rem;
}
.products-swiper .swiper-pagination-bullet {
    background: #d1d5db;
    opacity: 1;
    width: 10px;
    height: 10px;
}
.products-swiper .swiper-pagination-bullet-active {
    background: #374151;
}

/* Scroll animasyonu */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

/* Breadcrumb Overlay Styles */
.breadcrumb-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    padding: 12px 24px;
    border-radius: 8px 0 0 0;
    z-index: 2;
}

.breadcrumb-overlay nav {
    color: white;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Gilroy', sans-serif;
}

.breadcrumb-overlay span {
    transition: color 0.3s ease;
}

.breadcrumb-overlay .separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.6);
}

/* Parallax Effect */
.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 120%;
    will-change: transform;
    transform: translateZ(0);
}

.parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

/* Parallax scroll effect */
@media (prefers-reduced-motion: no-preference) {
    .parallax-bg {
        transform: translate3d(0, 0, 0);
    }
}

/* Timeline Styles */
.timeline-container {
    position: relative;
}

.timeline-item {
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.timeline-item.active {
    opacity: 1 !important;
    transform: scale(1.1);
}

.timeline-item.inactive {
    opacity: 0.3;
    transform: scale(0.9);
}

/* Modern number animation */
.timeline-number {
    position: relative;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Bounce and scale animation */
.timeline-number.bounce {
    animation: bounceScale 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceScale {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: scale(1.3) rotate(-5deg);
        opacity: 0.8;
    }
    50% {
        transform: scale(0.8) rotate(5deg);
        opacity: 0.6;
    }
    75% {
        transform: scale(1.1) rotate(-2deg);
        opacity: 0.9;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Glow effect - removed to eliminate black shadow */
.timeline-number.glow {
    /* No glow effect */
}

/* Spinning animation for other numbers */
.timeline-number.spin {
    animation: spinAround 1.2s ease-in-out;
}

@keyframes spinAround {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: rotate(90deg) scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.7;
    }
    75% {
        transform: rotate(270deg) scale(0.9);
        opacity: 0.6;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

/* Wave animation */
.timeline-number.wave {
    animation: waveEffect 0.8s ease-in-out;
}

@keyframes waveEffect {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(5px) rotate(-3deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Morphing animation */
.timeline-number.morph {
    animation: morphShape 0.6s ease-in-out;
}

@keyframes morphShape {
    0% {
        transform: scale(1) skew(0deg);
        border-radius: 0%;
    }
    25% {
        transform: scale(1.2) skew(-10deg);
        border-radius: 20%;
    }
    50% {
        transform: scale(0.9) skew(10deg);
        border-radius: 50%;
    }
    75% {
        transform: scale(1.1) skew(-5deg);
        border-radius: 30%;
    }
    100% {
        transform: scale(1) skew(0deg);
        border-radius: 0%;
    }
}

/* Timeline scroll animation */
@keyframes timelineSlide {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

.timeline-items {
    animation: timelineSlide 20s linear infinite;
}

.timeline-items:hover {
    animation-play-state: paused;
}

/* Button hover effects */
.btn-orange-hover:hover {
    background-color: #f97316 !important;
    transition: background-color 0.3s ease !important;
}

button.btn-orange-hover:hover {
    background-color: #f97316 !important;
    transition: background-color 0.3s ease !important;
}

/* Custom Scrollbar Styles */
.scrollbar-thin {
    scrollbar-width: thin;
}

.scrollbar-thumb-black::-webkit-scrollbar-thumb {
    background-color: #000000;
    border-radius: 4px;
}

.scrollbar-track-gray-200::-webkit-scrollbar-track {
    background-color: #e5e7eb;
    border-radius: 4px;
}

.scrollbar-thin::-webkit-scrollbar {
    width: 8px;
}

.scrollbar-thin::-webkit-scrollbar-thumb {
    background-color: #000000;
    border-radius: 4px;
}

.scrollbar-thin::-webkit-scrollbar-track {
    background-color: #e5e7eb;
    border-radius: 4px;
}

/* Force scrollbar to always be visible */
.overflow-y-scroll::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 12px !important;
    display: block !important;
    background-color: #e5e7eb !important;
}

.overflow-y-scroll::-webkit-scrollbar-thumb {
    background-color: #000000 !important;
    border-radius: 6px !important;
    border: 2px solid #e5e7eb !important;
    min-height: 30px !important;
}

.overflow-y-scroll::-webkit-scrollbar-track {
    background-color: #e5e7eb !important;
    border-radius: 6px !important;
    display: block !important;
}

.overflow-y-scroll::-webkit-scrollbar-corner {
    background-color: #e5e7eb !important;
}

/* Force scrollbar visibility for all browsers */
.overflow-y-scroll {
    scrollbar-width: auto !important;
    scrollbar-color: #000000 #e5e7eb !important;
    overflow-y: scroll !important;
    overflow-x: hidden !important;
}

/* Additional force for scrollbar visibility */
.h-96.overflow-y-scroll {
    overflow-y: scroll !important;
    scrollbar-gutter: stable !important;
}

.h-96.overflow-y-scroll::-webkit-scrollbar {
    width: 12px !important;
    background: #e5e7eb !important;
}

.h-96.overflow-y-scroll::-webkit-scrollbar-thumb {
    background: #000000 !important;
    border-radius: 6px !important;
    border: 2px solid #e5e7eb !important;
}

.h-96.overflow-y-scroll::-webkit-scrollbar-track {
    background: #e5e7eb !important;
    border-radius: 6px !important;
}

/* Force scrollbar with specific class - Always visible */
.force-scrollbar {
    overflow-y: scroll !important;
    overflow-x: hidden !important;
    scrollbar-width: auto !important;
    scrollbar-color: #000000 #e5e7eb !important;
    scrollbar-gutter: stable !important;
}

.force-scrollbar::-webkit-scrollbar {
    width: 12px !important;
    background: #e5e7eb !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.force-scrollbar::-webkit-scrollbar-thumb {
    background: #000000 !important;
    border-radius: 6px !important;
    border: 2px solid #e5e7eb !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.force-scrollbar::-webkit-scrollbar-track {
    background: #e5e7eb !important;
    border-radius: 6px !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.force-scrollbar::-webkit-scrollbar-corner {
    background: #e5e7eb !important;
}

/* Chrome specific fixes */
.force-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #000000 !important;
}

.force-scrollbar::-webkit-scrollbar-track:hover {
    background: #e5e7eb !important;
}

/* Force scrollbar to always be visible in Chrome */
.force-scrollbar {
    scrollbar-gutter: stable both-edges !important;
}

/* Fancybox white background */
.fancybox__container {
    background-color: white !important;
}

.fancybox__backdrop {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.fancybox__slide {
    background-color: white !important;
}

.fancybox__content {
    background-color: white !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* Mobile header white background */
    header {
        background-color: white !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .breadcrumb-overlay {
        padding: 8px 16px;
        border-radius: 4px 0 0 0;
    }
    
    .breadcrumb-overlay nav {
        font-size: 12px;
    }
    
    .parallax-bg {
        top: -10%;
        height: 110%;
    }
    
    .timeline-item {
        right: 8px !important;
    }
    
    .timeline-item[data-year="2018"] .text-8xl {
        font-size: 4rem;
    }
    
    .timeline-item[data-year="1998"] .text-6xl,
    .timeline-item[data-year="2025"] .text-6xl {
        font-size: 3rem;
    }
}


.label {
    font-weight: 700;
    font-size: 14px;
    text-align: left; /* label text left-aligned within fixed column */
    word-break: break-word;
  }

  .colon {
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    color: #111;
  }

  .value {
    font-weight: 600;
    font-size: 14px;
    color: #6b6b6b;
    text-align: left;
  }


