
/* Base styles */
:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --secondary: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --light: #f8fafc;
    --dark: #1e293b;
    --gray: #64748b;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f1f5f9;
    color: var(--dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.step {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 2px solid var(--gray);
    color: var(--gray);
    font-weight: bold;
    transition: all 0.3s ease;
}

.step.active {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.1);
}

.step.completed {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.step-divider {
    flex: 1;
    max-width: 100px;
    height: 2px;
    background-color: var(--gray);
    margin-top: 1.25rem;
    opacity: 0.3;
}

.step-divider.completed {
    background-color: var(--primary);
    opacity: 1;
}

.step-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.step-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Hexagon styles */
.hexagon {
    position: relative;
    width: 100px;
    height: 57.74px;
    background-color: #4fd1c5;
    margin: 28.87px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hexagon:before,
.hexagon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
}

.hexagon:before {
    bottom: 100%;
    border-bottom: 28.87px solid #4fd1c5;
}

.hexagon:after {
    top: 100%;
    border-top: 28.87px solid #4fd1c5;
}

.hexagon:hover {
    transform: scale(1.1);
    z-index: 10;
}
/* Color variants for traits */
.trait-green {
    background-color: #ecfdf5;
    border-left: 4px solid #10b981;
}

.trait-amber {
    background-color: #fffbeb;
    border-left: 4px solid #f59e0b;
}

.trait-red {
    background-color: #fef2f2;
    border-left: 4px solid #ef4444;
}

/* Drop zone highlighting */
#strengths-traits.highlight {
    background-color: #d1fae5;
    border-color: #10b981;
}

#opportunities-traits.highlight {
    background-color: #fef3c7;
    border-color: #f59e0b;
}

#gaps-traits.highlight {
    background-color: #fee2e2;
    border-color: #ef4444;
}
/* Grid layout */
.hexagon-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hexagon-row {
    display: flex;
    margin-bottom: -14.43px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hexagon {
        width: 60px;
        height: 34.64px;
    }
    
    .hexagon:before,
    .hexagon:after {
        border-left-width: 30px;
        border-right-width: 30px;
    }
    
    .hexagon:before {
        border-bottom-width: 17.32px;
    }
    
    .hexagon:after {
        border-top-width: 17.32px;
    }
}