/* Color Schemes for Matchless Adventures */

:root {
    /* Default Theme - User's Brand Colors */
    --primary-color: #89CFF0;
    --secondary-color: #FF7F50;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --info-color: #3498db;
    --white: #ffffff;
    --dark: #89CFF0;
    
    /* Gradient combinations */
    --primary-gradient: linear-gradient(135deg, #89CFF0 0%, #FF7F50 100%);
    --secondary-gradient: linear-gradient(135deg, #FF7F50 0%, #89CFF0 100%);
    --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

/* Alternative Theme 1 - Ocean Blue */
[data-theme="ocean"] {
    --primary-color: #2c5aa0;
    --secondary-color: #f8b500;
    --accent-color: #e74c3c;
    --primary-gradient: linear-gradient(135deg, #2c5aa0 0%, #f8b500 100%);
    --secondary-gradient: linear-gradient(135deg, #f8b500 0%, #2c5aa0 100%);
}

/* Alternative Theme 2 - Forest Green */
[data-theme="forest"] {
    --primary-color: #27ae60;
    --secondary-color: #f39c12;
    --accent-color: #e67e22;
    --primary-gradient: linear-gradient(135deg, #27ae60 0%, #f39c12 100%);
    --secondary-gradient: linear-gradient(135deg, #f39c12 0%, #27ae60 100%);
}

/* Alternative Theme 3 - Purple Elegance */
[data-theme="purple"] {
    --primary-color: #8e44ad;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --primary-gradient: linear-gradient(135deg, #8e44ad 0%, #3498db 100%);
    --secondary-gradient: linear-gradient(135deg, #3498db 0%, #8e44ad 100%);
}

/* Alternative Theme 4 - Sunset */
[data-theme="sunset"] {
    --primary-color: #e67e22;
    --secondary-color: #f1c40f;
    --accent-color: #c0392b;
    --primary-gradient: linear-gradient(135deg, #e67e22 0%, #f1c40f 100%);
    --secondary-gradient: linear-gradient(135deg, #f1c40f 0%, #e67e22 100%);
}

/* Theme Switcher Styles */
.theme-switcher {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    background: white;
    border-radius: 25px;
    padding: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.theme-switcher:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.theme-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 5px 0;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.theme-option:hover {
    transform: scale(1.1);
    border-color: #333;
}

.theme-option.active {
    border-color: #333;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}

.theme-option.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.theme-default {
    background: linear-gradient(135deg, #ED4621 0%, #89CFF0 100%);
}

.theme-ocean {
    background: linear-gradient(135deg, #2c5aa0 0%, #f8b500 100%);
}

.theme-forest {
    background: linear-gradient(135deg, #27ae60 0%, #f39c12 100%);
}

.theme-purple {
    background: linear-gradient(135deg, #8e44ad 0%, #3498db 100%);
}

.theme-sunset {
    background: linear-gradient(135deg, #e67e22 0%, #f1c40f 100%);
}

/* Responsive theme switcher */
@media (max-width: 768px) {
    .theme-switcher {
        position: fixed;
        top: auto;
        bottom: 20px;
        right: 20px;
        transform: none;
        flex-direction: row;
        padding: 8px 15px;
        border-radius: 20px;
    }
    
    .theme-option {
        margin: 0 3px;
        width: 25px;
        height: 25px;
    }
}