/* Custom Styles for Blood Moon Performance */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

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

/* Geometric Shape Decorations */
.geo-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #800020 0%, #580017 100%);
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

/* Image Hover Effects */
img {
    transition: transform 0.3s ease;
}

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

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

::-webkit-scrollbar-thumb {
    background: #800020;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #580017;
}

/* Mobile Menu Transitions */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

#mobile-menu.active {
    max-height: 400px;
}

/* Form Focus States */
input:focus,
textarea:focus,
select:focus {
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
}

/* Button Hover Glow */
button:hover,
a:hover {
    box-shadow: 0 10px 40px rgba(128, 0, 32, 0.3);
}

/* Responsive Typography */
@media (max-width: 640px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    nav,
    #contact-form,
    button {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .text-blood {
        color: #800020 !important;
    }
}
