/* Otomobilyeri.com Light Theme CSS (Borusan Next Style) */

/* Base Typography & Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    background: radial-gradient(circle at top right, #f8fafc 0%, #ffffff 100%);
    color: #0f172a;
    font-family: 'Inter', sans-serif;
}

/* Colors from logo:
   - Blue: #0076c0 (from "otomobil")
   - Orange: #f47920 (from "yeri")
   - Red: #e30613 (from ".com" & slogan bar)
*/

:root {
    --logo-blue: #0076c0;
    --logo-orange: #f47920;
    --logo-red: #e30613;
    --bg-light: #f8fafc;
}

/* Minimalist Premium Card Styles */
.premium-card {
    background: #ffffff;
    border: 1px solid #e2e8f0; /* Slate-200 */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e1; /* Slate-300 */
}

/* Hover Lift Effect */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -8px rgba(0, 0, 0, 0.1);
}

/* Hero Section Gradients */
.hero-gradient {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.hero-gradient::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #ffffff, transparent);
    pointer-events: none;
}

/* Expertise Status Colors */
.status-orijinal { background-color: #10b981 !important; } /* Emerald */
.status-boyali { background-color: #3b82f6 !important; }   /* Blue */
.status-degisen { background-color: #ef4444 !important; }  /* Red */
.status-lokal { background-color: #f59e0b !important; }    /* Amber */

/* Interactive Part Button Styles for Website Detail */
.web-car-part {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
}

/* Web Car Diagram Overlay Badge */
.web-diagram-part {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    border: 2px solid white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    z-index: 10;
    width: 30px;
    height: 30px;
    font-size: 10px;
    transition: transform 0.2s ease;
}
.web-diagram-part:hover {
    transform: scale(1.15);
    z-index: 20;
}

/* Custom Scrollbar for Light Theme */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Custom Transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Gallery Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 20;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 0;
    outline: none;
}

.slider-btn:hover {
    background-color: var(--logo-blue);
    border-color: var(--logo-blue);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 118, 192, 0.45);
}

.slider-btn.left-4 {
    left: 1rem;
}

.slider-btn.right-4 {
    right: 1rem;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
