/* Landing Page Styles */

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
}

/* Platform Page Styles */
.platforms-page .platform-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.platforms-page .platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.platforms-page .platform-icon {
    transition: transform 0.3s ease;
}

.platforms-page .platform-card:hover .platform-icon {
    transform: scale(1.1);
}

/* Feature Cards */
.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(40, 167, 69, 0.1);
}

/* Screenshot Cards */
.screenshot-card {
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

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

.screenshot-card img {
    border: 3px solid rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.screenshot-card:hover img {
    border-color: rgba(40, 167, 69, 0.8);
}

/* Testimonial Cards */
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-section .btn-group {
        justify-content: center;
    }
    
    .screenshot-card {
        margin-bottom: 3rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Animasyon elementleri başlangıçta gizli */
.animate-element {
    opacity: 0;
}

/* Animasyon sınıfları */
.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-600 {
    animation-delay: 0.6s;
}
