/* Animation Keyframes */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Shimmer Effect */
.shimmer-effect {
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.7) 50%,
        transparent 60%
    );
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

/* Gradient Background */
.gradient-bg {
    background: linear-gradient(135deg, #b2181a 0%, #ffc8b4 100%);
}

/* Card Hover Effect */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Float Animation */
.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #b2181a;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8a1315;
}

/* Mobile Menu Animation */
#mobile-menu {
    transition: all 0.3s ease;
}

/* FAQ Icon Rotation */
.rotate-180 {
    transform: rotate(180deg);
}

/* Aspect Ratio for Videos */
.aspect-\[9\/16\] {
    aspect-ratio: 9/16;
}

/* Additional Responsive Utilities */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
}

/* Loading State for Images */
img {
    background-color: #f3f4f6;
}

/* Custom Focus States */
a:focus,
button:focus {
    outline: 2px solid #b2181a;
    outline-offset: 2px;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Print Styles */
@media print {
    .no-print,
    nav,
    #mobile-menu,
    .floating-buttons {
        display: none !important;
    }
}