/* Landing Page Styles */

.hero-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    will-change: transform;
}

.transform-rotate-3d {
    transition: transform 0.3s ease;
}

.transform-rotate-3d:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) scale(1.05);
}

.floating-element {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(5deg); 
    }
    50% { 
        transform: translateY(-10px) rotate(5deg); 
    }
}

.scroll-indicator {
    cursor: pointer;
}

.feature-image img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Parallax scrolling effect */
@media (min-width: 768px) {
    .parallax-bg {
        transform: translate3d(0, 0, 0);
        will-change: transform;
    }
}

/* Feature section enhancements */
.feature-content {
    z-index: 2;
    position: relative;
}

.feature-image-grid img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-image-grid img:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Hero content animations */
.hero-content {
    z-index: 2;
    position: relative;
}

/* Call to action section */
.cta-section {
    position: relative;
    z-index: 1;
}

.cta-buttons .btn {
    margin-bottom: 1rem;
}

@media (max-width: 767px) {
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0 !important;
    }
}
