/* Custom Styles */
html {
    scroll-behavior: smooth;
}

/* Hero section image */
.hero-image {
    max-width: 300px;
    margin: 0 auto;
}

/* Feature section images */
.feature-card img {
    max-width: 180px;
    margin: 0 auto;
    height: auto;
    object-fit: cover;
    margin-top: 20px;
}

/* Screenshots section */
.screenshots-swiper {
    padding: 20px 0 40px;
    width: 100%;
    position: relative;
}

.screenshots-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
}

.swiper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 1;
    position: relative;
}

.swiper-slide {
    flex-shrink: 0;
    width: 166px;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease;
}

.swiper-slide img {
    width: 188px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.swiper-slide p {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #4b5563;
    font-weight: 500;
    text-align: center;
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%);
    width: 40px !important;
    height: 40px !important;
    margin-top: -20px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb !important;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.swiper-button-next {
    right: 10px !important;
}

.swiper-button-prev {
    left: 10px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold;
}

/* Pagination */
.swiper-pagination {
    position: absolute;
    bottom: -30px !important;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    background: #cbd5e1;
    opacity: 0.5;
    margin: 0 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #2563eb !important;
    transform: scale(1.2);
}

/* About section image */
.about-image {
    max-width: 400px;
    margin: 0 auto;
}

/* Custom animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-image {
    animation: float 6s ease-in-out infinite;
}

/* Mobile menu animation */
#mobile-menu {
    transition: all 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(-10px);
}

#mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
}

/* Feature card hover effect */
.feature-card {
    padding: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .screenshots-container {
        padding: 0 20px;
    }
    
    .swiper-slide {
        width: 166px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
    
    .feature-card img {
        max-width: 166px;
    }
    
    .about-image {
        max-width: 320px;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .swiper-slide {
        width: 166px;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .swiper-slide {
        width: 166px;
    }
}

@media (min-width: 1280px) {
    .swiper-slide {
        width: 166px;
    }
    
    .screenshots-container {
        padding: 0 60px;
    }
} 