/* Custom styles for the HTML version */

/* Slide container styles */
.slide-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Slide navigation buttons */
.slide-nav {
    z-index: 10;
}

.slide-nav:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

/* Slide indicators */
.indicator {
    z-index: 10;
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8) !important;
}

.indicator.active {
    background-color: white !important;
}

/* Custom font styles */
.font-pacifico {
    font-family: 'Pacifico', cursive;
}

/* Responsive design adjustments */
@media (max-width: 768px) {
    .slide h1 {
        font-size: 2.5rem !important;
    }
    
    .slide h2 {
        font-size: 1.5rem !important;
    }
    
    .slide p {
        font-size: 1rem !important;
    }
    
    .slide .flex {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Smooth transitions */
* {
    transition: all 0.3s ease;
}

/* Custom button hover effects */
.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Card hover effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Animation for stats */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-animation {
    animation: countUp 0.8s ease-out;
}

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

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

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Mobile menu styles */
.mobile-menu {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    
    .desktop-menu {
        display: none;
    }
}

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better accessibility */
button:focus,
a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .slide-nav,
    .slide-indicators,
    .mobile-menu {
        display: none !important;
    }
} 