/* StripperRates Profile Builder - Main Styles */

.srpb-canvas {
    position: relative;
    min-height: 500px;
    padding: 20px;
}

.srpb-element {
    position: absolute;
    transition: all 0.3s ease;
}

/* Glass Effects */
.glass-effect {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
}

/* Tip Jar */
.srpb-tip-jar {
    max-width: 300px;
    text-align: center;
}

.srpb-tip-amounts {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.srpb-tip-btn {
    flex: 1;
    padding: 10px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.srpb-tip-btn:hover {
    background: #45a049;
    transform: scale(1.05);
}

.srpb-custom-tip {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.srpb-send-tip {
    width: 100%;
    padding: 12px;
    background: #2196F3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

/* Live Badge */
.srpb-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #ff0000;
    color: white;
    border-radius: 20px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.srpb-live-indicator {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Disco Ball */
.srpb-disco-ball {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #silver, #gray);
    border-radius: 50%;
    position: relative;
    animation: rotate 3s linear infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Spotlight */
.srpb-spotlight {
    position: relative;
    width: 200px;
    height: 300px;
}

.srpb-spotlight-beam {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--spotlight-color, #ffffff) 0%, transparent 100%);
    opacity: 0.5;
    animation: sweep 3s ease-in-out infinite;
}

@keyframes sweep {
    0%, 100% { transform: translateX(-20px); }
    50% { transform: translateX(20px); }
}

/* Booking Calendar */
.srpb-booking-calendar {
    max-width: 600px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#srpb-calendar-container {
    margin: 20px 0;
}

.srpb-time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

/* Show Schedule */
.srpb-show-schedule {
    padding: 20px;
}

.srpb-shows-list {
    display: grid;
    gap: 20px;
}

.srpb-show-item {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.srpb-book-show {
    padding: 10px 20px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

/* Profile */
.srpb-profile {
    max-width: 800px;
    margin: 0 auto;
}

.srpb-profile-header {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px 10px 0 0;
}

.srpb-profile-content {
    padding: 30px;
    background: white;
    border-radius: 0 0 10px 10px;
}

/* Review Wall */
.srpb-review-wall {
    padding: 20px;
}

.srpb-reviews-list {
    display: grid;
    gap: 15px;
}

.srpb-review-item {
    padding: 15px;
    background: #f9f9f9;
    border-left: 4px solid #4CAF50;
    border-radius: 5px;
}

.srpb-review-rating {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Hours of Operation */
.srpb-hours-operation ul {
    list-style: none;
    padding: 0;
}

.srpb-hours-operation li {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

/* Signature Box */
.srpb-signature-box {
    text-align: center;
}

#srpb-signature-canvas {
    border: 2px dashed #ddd;
    border-radius: 5px;
    cursor: crosshair;
}

.srpb-clear-signature {
    margin-top: 10px;
    padding: 8px 16px;
    background: #f44336;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Hamburger Navigation */
.srpb-hamburger-nav {
    position: relative;
}

.srpb-hamburger-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.srpb-hamburger-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: #333;
    transition: all 0.3s;
}

.srpb-hamburger-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    display: none;
}

.srpb-hamburger-nav.active .srpb-hamburger-menu {
    display: block;
}

/* Sticky Notes */
.srpb-sticky-note {
    width: 200px;
    min-height: 200px;
    padding: 20px;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.2);
    transform: rotate(-2deg);
    transition: transform 0.3s;
}

.srpb-sticky-note:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
    .srpb-tip-amounts {
        flex-direction: column;
    }
    
    .srpb-shows-list {
        grid-template-columns: 1fr;
    }
}