/* Burning Man Theme Elements */

/* The Man Symbol */
.the-man {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 60px;
    margin: 0 15px;
}

.the-man:before {
    content: '';
    position: absolute;
    width: 4px;
    height: 40px;
    background-color: var(--primary-color);
    left: 13px;
    top: 10px;
}

.the-man:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 4px;
    background-color: var(--primary-color);
    left: 0;
    top: 25px;
}

.the-man .head {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    left: 10px;
    top: 0;
}

/* Desert sunrise/sunset gradients */
.sunrise-gradient {
    background: linear-gradient(135deg, #ff9800, #ff5722, #e91e63);
    color: white;
}

.sunset-gradient {
    background: linear-gradient(135deg, #ff5722, #e91e63, #9c27b0);
    color: white;
}

/* Playa dust hover effect */
.dust-hover {
    position: relative;
    overflow: hidden;
}

.dust-hover:hover:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.1'/%3E%3C/svg%3E");
    animation: dustRise 1s forwards;
}

@keyframes dustRise {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.2;
    }
}

/* Greeters welcome text */
.greeter-welcome {
    font-family: 'Futura', 'Impact', 'Arial Black', sans-serif;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-align: center;
    margin: 2rem 0;
    color: var(--primary-color);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.greeter-welcome::before,
.greeter-welcome::after {
    content: '✧';
    display: inline-block;
    margin: 0 15px;
    color: var(--accent-color);
}

/* Ten principles badges */
.principle-badge {
    display: inline-block;
    padding: 5px 10px;
    margin: 3px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
}
