/* Custom styles to complement Tailwind CSS */

/* Hero section background */
.hero-section {
    background-color: #000;
}

.hero-section img {
    transition: transform 8s ease;
}

.hero-section:hover img {
    transform: scale(1.05);
}

/* Smooth transitions */
a, button {
    transition: all 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
    }
    
    h1 {
        font-size: 2.5rem !important;
    }
    
    .text-2xl {
        font-size: 1.25rem !important;
    }
}

/* Ensure images don't break layout */
img {
    max-width: 100%;
    height: auto;
}

/* Enhance accessibility */
:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Custom animations */
.hover\:scale:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Video container responsive */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* CTA cards hover effect */
.shadow-lg {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.shadow-lg:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Fade-in animation for content */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section > div {
    animation: fadeIn 1s ease-out forwards;
}

/* Social media icons hover effect */
.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
}
