/**
 * GLTF Explorer - Styles
 * Copyright (c) 2025 3D Geodata Academy - All Rights Reserved
 * Created by: Dr. Florent Poux
 */

:root {
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --accent: #3b82f6;
}

body {
    font-family: var(--font-body);
    overflow: hidden;
    background-color: #030304;
    color: #ffffff;
}

.glass {
    background: rgba(14, 14, 16, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

#canvas-container {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    outline: none;
}

.drop-zone-active {
    border: 2px dashed var(--accent);
    background: rgba(59, 130, 246, 0.1);
}

.btn-futuristic {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.btn-futuristic:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.btn-futuristic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-futuristic:hover::before {
    left: 100%;
}

.btn-purple {
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.1);
}

.btn-purple:hover {
    background: rgba(147, 51, 234, 0.2);
    border-color: rgba(168, 85, 247, 0.8);
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.3);
}

.btn-purple svg {
    color: #c084fc;
}

.btn-gold {
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.1);
}

.btn-gold:hover {
    background: rgba(234, 179, 8, 0.2);
    border-color: rgba(234, 179, 8, 0.8);
    box-shadow: 0 0 30px rgba(234, 179, 8, 0.3);
}

.btn-gold svg {
    color: #fbbf24;
}

.btn-tool {
    padding: 12px;
    border-radius: 10px;
    color: #a1a1aa;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.btn-tool:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}

.btn-tool.active {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.1);
}
