/* Custom styles */
:root {
    --primary-color: #4F46E5;
    --secondary-color: #818CF8;
}

body {
    font-family: 'Inter', sans-serif;
}

.hero-section {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    padding-top: 80px;
}

.hero-section img {
    border-radius: 24px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.text-primary {
    color: var(--primary-color) !important;
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-section img {
        margin-top: 2rem;
    }
}

.navbar-logo {
    height: 30px;
    width: auto;
    vertical-align: middle;
}

/* Screenshot Slider Styles */
.screenshot-slider {
    gap: 20px;
    padding: 20px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.screenshot-slider::-webkit-scrollbar {
    display: none;  /* Chrome, Safari and Opera */
}

.screenshot-item {
    padding: 2px;
}

.screenshot-item img {
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    object-fit: contain;
}

.screenshot-item:hover img {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .screenshot-slider {
        padding: 10px;
        gap: 10px;
    }
    
    .screenshot-item {
        padding: 1px;
    }
}

/* Showcase Styling */
.showcase-container {
    display: grid;
    gap: 20px;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.showcase-content {
    position: relative;
    width: 100%;
    height: 600px;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.showcase-card:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.showcase-overlay p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Masaüstü görünümü */
@media (min-width: 768px) {
    .showcase-container {
        grid-template-columns: repeat(4, 280px);
        justify-content: center;
    }

    .showcase-card:hover {
        transform: translateY(-10px);
    }

    .showcase-content {
        height: 550px;
    }
}

/* Mobil görünüm */
@media (max-width: 767px) {
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 10px;
    }

    .showcase-card {
        border-radius: 16px;
    }

    .showcase-content {
        height: calc(100vh - 250px);
    }

    .showcase-img {
        object-fit: contain;
    }
}

/* Daha geniş ekranlar için */
@media (min-width: 1400px) {
    .showcase-container {
        max-width: 1200px;
    }
}

.screenshot-carousel {
    padding: 20px 0;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.owl-nav button:hover {
    background: #fff !important;
}

.owl-prev {
    left: -20px;
}

.owl-next {
    right: -20px;
}

.owl-nav button span {
    font-size: 24px;
    line-height: 1;
    color: #333;
}

.owl-dots {
    margin-top: 20px;
}

.owl-dot span {
    background: #ddd !important;
}

.owl-dot.active span {
    background: #007bff !important;
}

/* Screenshot Carousel Styles */
#screenshotCarousel {
    position: relative;
    padding: 0 40px;
}

#screenshotCarousel .carousel-control-prev,
#screenshotCarousel .carousel-control-next {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
}

#screenshotCarousel .carousel-control-prev {
    left: 0;
}

#screenshotCarousel .carousel-control-next {
    right: 0;
}

#screenshotCarousel .carousel-control-prev-icon,
#screenshotCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.screenshot-item {
    padding: 2px;
}

.screenshot-item img {
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    object-fit: contain;
}

.screenshot-item:hover img {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    #screenshotCarousel {
        padding: 0 30px;
    }
    
    #screenshotCarousel .carousel-control-prev,
    #screenshotCarousel .carousel-control-next {
        width: 30px;
        height: 30px;
    }
    
    #screenshotCarousel .carousel-control-prev-icon,
    #screenshotCarousel .carousel-control-next-icon {
        width: 15px;
        height: 15px;
    }
    
    .screenshot-item {
        padding: 1px;
    }
} 