/* 
 * KiteCalc Wind Direction AR Styles
 */

/* AR Container */
.ar-preview-container {
    border: 3px solid var(--surf-teal);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.ar-preview-container:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Wind Direction Arrows */
.wind-arrow {
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    z-index: 10;
}

/* Wind Data Display */
.wind-data-display {
    z-index: 20;
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Start AR Button Hover Effect */
#start-ar-button:hover {
    background-color: #2a3050;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animation */
@keyframes pulse {
    0% {
        transform: scale(1) rotate(var(--wind-deg, 135deg));
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1) rotate(var(--wind-deg, 135deg));
        opacity: 0.9;
    }
    100% {
        transform: scale(1) rotate(var(--wind-deg, 135deg));
        opacity: 0.7;
    }
}